@font-face {
  font-family: "Futura Hv BT";
  src: url(https://alpha.armstrong-mea.com/app/themes/armstrongtire-v2/assets/fonts/futuhv.ttf);
}

@font-face {
  font-weight: 400;
  font-family: "Futura Hv BT";
  src: url(https://alpha.armstrong-mea.com/app/themes/armstrongtire-v2/assets/fonts/Futura-Heavy.ttf);
}

@font-face {
  font-family: "Eurostile Demi";
  src: url(https://alpha.armstrong-mea.com/app/themes/armstrongtire-v2/assets/fonts/Eurostile-Demi.otf);
} 

@font-face {
  font-family: "Eurostile-Medium";
  src: url(https://alpha.armstrong-mea.com/app/themes/armstrongtire-v2/assets/fonts/Eurostile-Medium.ttf);
} 

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

*:focus {
    outline: none;
}

body {
    background: #eee;
}

.filter-overlay--show {
    overflow: hidden;
    height: 100vh;
}

.filter-for-wrapper label, /*.filter-select-steps .filter-select-step.selected .filter-select-label,*/ .filter-select-label, 
.filter-select-search-wrapper button, .filter-icon-wrapper .icon-wrapper .badge-black, .no-result-found-text, .filter-icon-wrapper .icon-wrapper:after {
	font-family: "Eurostile Demi"; 
}

.filter-option-item label, .filter-select-search-wrapper input, .filter-select-search-wrapper input::placeholder, .filter-select-button/*, .filter-select-label */{
	font-family: "Eurostile-Medium";	
}

.filter-selected h4, .filter-select-steps .filter-select-step.selected .filter-select-value, .filter-option-item h4,
.filter-clear-hide-warpper .btn, .c-filter-select-footer .filter-select-steps .filter-select-value, .filter-select-footer .btn-proceed {
	font-family: "Futura Hv BT";
}


.filter-container.overlay {
    max-width: 1022px;
    margin: 0 auto;
}

.filter-container {
    --filter-container-bottom: 30px;
    --filter-container-left: 30px;
    --filter-container-right: 30px;
    position: fixed;
    z-index: 99999;
    bottom: var(--filter-container-bottom);
    right: var(--filter-container-right);
    left: var(--filter-container-left);
    border-radius: 2px;
    width: auto;
}

.filter-icon-wrapper { 
    background: #1C1C1B; 
    padding: 6px; 
    border-radius: 8px; 
    cursor: pointer; 
    width: 68px; 
    height: 68px; 
    margin-left: auto;
    box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.18);
} 

.filter-icon-wrapper .icon-wrapper {
    background: #424647;
    padding: 0.50rem; 
    color: #fff; 
    font-size: 20px; 
    border-radius: 6px;
    width: 56px; 
    height: 56px; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    position: relative;
}

.filter-icon-wrapper .icon-wrapper .badge-black {
    position: absolute;
    top: -15px;
    right: -15px;
    background: #1C1C1B;
    height: 30px;
    width: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    line-height: 19px;
}

.filter-icon-wrapper .icon-wrapper img {
    width: 36px;
    height: 36px;
}


.filter-options {
    width: 0;
    height: 0;
    transition: width 0.5s;
    overflow: hidden;
    background-color: #1C1C1B;
    display: flex;
    gap: 2px;
    max-width: 1022px;
    margin: 0 auto;
    padding: 6px; 
    border-radius: 8px; 
    box-shadow: 0px 4px 10px 1px rgba(0, 0, 0, 0.30);
}

.filter-options.active {
    width: 100%; /* Set the width as per your requirement */
    height: auto;
}

.filter-option-item {
    background: #424647;
    color: #8E9091;
}

.filter-option-item, .c-filter-select-footer .filter-select-steps button {
    width: 100%;
    position: relative;
    cursor: pointer;
    border-radius: 6px;
    padding: 7px 24px 11px;
    outline: none;
}

.filter-option-item:first-child {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}

.filter-option-item:last-child {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}

.filter-option-item:after {
    content: '\f105';
    color: #D3D3D3;
}

.filter-option-item:after, .c-filter-select-footer .filter-select-steps button:after  {
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    top: 50%;
    right: 24px;
    font-size: 0px;
    transform: translateY(-50%);
	width: 24px;
    height: 24px;
	background: url(/app/themes/armstrongtire-v2/assets/images/right-angle-arrow.svg) no-repeat;
}

.filter-option-item img, .c-filter-select-footer .filter-select-step img {
    float: left;
    margin-right: 14px;
    margin-top: 10px;
    width: 28px;
}

.filter-option-item label {
    font-size: 13px;
    line-height: 1.5;
    font-weight: 600;
    color: #8E9091;
}

.filter-option-item h4 {
    font-size: 20px;
    line-height: 1.3;
    color: #fff;
	font-weight: 400;
}

.filter-select-container {
    background: #1C1C1B;
    border: 6px solid #1C1C1B;
    border-radius: 8px;
    max-width: 1022px;
    margin: 0 auto;
    box-shadow: 0px 4px 10px 1px rgba(0, 0, 0, 0.30);
}
.filter-select-body {
    padding: 34px;
    border-radius: 6px;
    background: #222222;
}
.filter-select-search-wrapper {
    display: grid;
    grid-template-columns: 80% auto;
    gap: 4px;
    margin-bottom: 24px;
}

.filter-select-search-wrapper input {
    padding: 12px 14px 11px 38px;
    height: 45px;
    border-radius: 6px;
    background: url(/app/themes/armstrongtire-v2/assets/images/search-bar-icon.svg) no-repeat #424647;
    background-position: 12px;
    border: 0;
    font-size: 16px;
   /* font-weight: 500;*/
}

.filter-select-search-wrapper input, .filter-select-search-wrapper input::placeholder {
    color: #8E9091;
    opacity: 1;
}

.filter-select-search-wrapper input:focus {
    color: #fff;
    background: url(/app/themes/armstrongtire-v2/assets/images/search-bar-white-icon.svg) no-repeat #424647;
    background-position: 12px;
}

.filter-select-search-wrapper button {
    background: #424647;
    border-radius: 6px;
    color: #8E9091;
    outline: none;
    border: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    text-transform: uppercase;
    font-size: 16px;
    font-weight: 600;
    cursor: default;
}
.filter-select-search-wrapper button:focus {
    box-shadow: unset !important;
} 

.filter-select-search-wrapper button.active {
    color: #fff;
    cursor: pointer;
}

.filter-select-search-wrapper button.active svg path {
    fill: #fff
}

.filter-select-search-wrapper button.active img/*, #commercial-filter .filter-select-search-wrapper button img*/ {
	filter: brightness(2);  
}

.filter-select-search-wrapper button img {
    width: 20px;
}

.filter-icon-text img {
    width: 28px;
    height: 28px;
}

.filter-selected img:not(.filter-icon-text img) {
    width: 24px;
}

.filter-for-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #424647;
    padding-bottom: 2px;
    margin-bottom: 30px;
}

.filter-for-wrapper label {
    color: #555559;
    font-size: 12px;
    /*font-weight: 600;*/
    letter-spacing: 1px;
    text-transform: uppercase;
    line-height: 1.3;
}

.filter-scroll-navigation button {
    background: transparent;
    border: 0;
    outline: none;
    color: white;
    margin-left: 10px;
    opacity: 0;
}

.filter-select-buttons {
    display: grid;
    gap: 8px;
    /*grid-template-rows: 2fr 2fr;
    grid-auto-flow: column;
    grid-auto-columns: calc(20% - 7px);
    transform: rotateX(180deg);
    overflow-x: auto;
    padding-bottom: 30px;*/
    grid-template-columns: repeat(3, 1fr);
    max-height: 160px;
    min-height: 160px;
    overflow-y: auto;
    /*overflow-y: scroll;*/
    padding-right: 5px;
    margin-right: -5px;
}

.filter-select-buttons::-webkit-scrollbar-track {
/*	-webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.0);*/
    -webkit-box-shadow: unset;
    box-shadow: unset;
	background-color: #222222;
}

.filter-select-buttons::-webkit-scrollbar {
	width: 3px;
	background-color: #D3D3D3;
}

.filter-select-buttons::-webkit-scrollbar-thumb {
	background-color: #424647;
}

#commercial-filter  .filter-select-buttons::-webkit-scrollbar-track {
    -webkit-box-shadow: unset;
    background-color: #C9C0AB;
}
#commercial-filter .filter-select-buttons::-webkit-scrollbar {
	background-color: #C9C0AB;
}
#commercial-filter .filter-select-buttons::-webkit-scrollbar-thumb {
    background-color: #777060;
}
#commercial-filter .filter-select-search-wrapper {
    gap: 6px;
}


.filter-select-button {
    border: 1px solid #424647;
    color: #fff;
    padding: 20px 5px;
    font-size: 20px;
    text-align: center;
    background: #222;
    border-radius: 6px;
    cursor: pointer;
    user-select: none;
    transition: background 0.3s linear;
	height: 72px;
    max-width: 312px;
    line-height: 1.6;
    /* max-width: 185px; transform: rotateX(180deg);*/
}

.filter-select-buttons:has(.w-auto) {
    grid-template-columns: repeat(auto-fit, minmax(65px, min-content));
}

.filter-select-buttons:has(.w-year-auto) {
    grid-template-columns: repeat(auto-fit, minmax(94px, min-content));
}

.filter-select-button:hover, .filter-select-button.active {
    background: #FD0D1B;
    border-color: #FD0D1B;
}

.filter-select-footer {
    display: grid;
    grid-template-columns: 20% 2fr 6.1%;
    border-top: 6px solid #1C1C1B;
}

.filter-selected {
    color: #1C1C1B;
    background: #fff;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 20px;
    line-height: 26px;
    height: 68px;
    padding: 0 18px;
    cursor: pointer;
	width: 198px;
}

.filters-applied .filter-selected, .filter-select-steps .filter-select-step.selected {
    cursor: default;
}

.filter-selected h4 {
    text-transform: uppercase;
    font-size: 20px;
    margin-left: 5px;
}

.filter-selected h4, .filter-select-container label, .filter-option-item label, .filter-option-item h4 {
   margin-bottom: 0; 
}

.filter-icon-text {
    display: flex;
    align-items: center;
}

.filter-select-steps {
    display: flex;
    gap: 2px;
    border-left: 2px solid #1C1C1B;
    border-right: 6px solid #1C1C1B;
}

.filter-select-steps button {
    background: #222;
    outline: 0;
    border: 0;
    color: #fff;
    width: 100%;
    cursor: pointer;
    font-size: 18px;
    font-weight: 500;
    padding: 5px 14px;
    height: 68px;
}

.filter-select-steps button[disabled] {
    color: #8E9091;
    background: #424647;
    cursor: default;
}

.btn-proceed {
    background: white;
    color: #222;
    border: 1px solid #222;
    cursor: pointer;
    border: 0;
    border-radius: 6px;
    font-size: 22px;
	display: flex;
    align-items: center;
    justify-content: center;
}

.btn-proceed img {
	width: 24px;
	filter: brightness(0);
}

.btn-proceed[disabled] {
    background: #424647;
    color: #8E9091;
}

.btn-proceed[disabled] img {
    filter: brightness(0.5);
}

.filter-select-steps .filter-select-step.selected {
    border-top: 2px solid #F6C648;
    background: #424647;
    text-align: left;
}

.filter-select-steps .filter-select-step.selected .filter-select-label {
    font-size: 13px;
    color: #8E9091;
}

.filter-select-steps .filter-select-step.selected .filter-select-value {
    font-size: 20px;
    /*font-weight: 400;*/
    line-height: 26px;
    margin-top: -2px;
}

.filters-applied .filter-select-footer {
    grid-template-columns: 20% 80%;
    /*gap: 18px;*/ 
}

.filters-applied .filter-select-footer, .filters-applied .c-filter-select-footer {
     border-top: 0;
}

.filters-applied .filter-select-footer .filter-select-steps {
/*	border-left: 0;*/
	border-right: 0
}
/*
.filters-applied .filter-selected {
   background: #F6C648;
}
.filters-applied .filter-selected .filter-icon-text img {
    filter: brightness(0);
}*/

#commercial-filter .filter-icon-wrapper {
    background: #F9F3E3;
    box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.18);
}

#commercial-filter .filter-icon-wrapper .icon-wrapper {
    background: #C9C0AB;
    box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.18);
}

#commercial-filter .filter-options {
    background-color: #F9F3E3;
    box-shadow: 0px 4px 10px 1px rgba(0, 0, 0, 0.30);
}

#commercial-filter .filter-option-item {
    background: #C9C0AB;
}

#commercial-filter .filter-option-item, #commercial-filter .filter-option-item label,
#commercial-filter .filter-option-item:after, .c-filter-select-footer .filter-select-steps button:after {
    color: #777060;
}

#commercial-filter .filter-option-item h4 {
    color: #222222;
}

#commercial-filter .filter-option-item:after, .c-filter-select-footer .filter-select-steps button:after  {
    content: '\f107';
    background: url(/app/themes/armstrongtire-v2/assets/images/down-angle-arrow.svg) no-repeat;
}

.c-filter-select-footer button.active:after, 
#commercial-filter .filter-select-container > .filter-select-body + .c-filter-select-footer .filter-select-step.active.selected:after
  {
    filter: brightness(2.5);
    transform: rotate(180deg);
    top: 20px;
}
#commercial-filter .filter-select-container .c-filter-select-footer .filter-select-step.active:after {
    transform: rotate(0deg);
}
#commercial-filter .filter-select-container > .filter-select-body + .c-filter-select-footer .filter-select-step.active:after {
   transform: rotate(180deg);
}

.c-filter-select-footer button.active.selected:after  {
    filter: brightness(1);
    transform: rotate(0deg);
}

#commercial-filter .filter-select-container {
    background: #F9F3E3;
    border: 6px solid #F9F3E3;
    box-shadow: 0px 4px 10px 1px rgba(0, 0, 0, 0.30);
}

 #commercial-filter .filter-select-body {
    margin-bottom: 6px;
}
/*.c-filter-select-footer {
    border-top: 6px solid #F9F3E3;
}*/

.c-filter-select-footer .filter-select-steps {
    border-left: 0;
    border-right: 0;
    border-radius: 6px;
    overflow: hidden;
}

.c-filter-select-footer .filter-select-steps button, #commercial-filter .filter-select-body, #commercial-filter .filter-select-steps .filter-select-step.selected {
    background: #C9C0AB;
}
#commercial-filter .filter-select-steps .filter-select-step.selected {
    border-top: 2px solid #222;
}
#commercial-filter .filter-select-steps .filter-select-step.selected .filter-select-value {
    color: #222;
}

#commercial-filter .filter-select-button {
    border: 1px solid #F9F3E3;
    background: #F9F3E3;
    color: #222222;
}

.c-filter-select-footer .filter-select-steps .filter-select-label {
    color: #777060;
}

.c-filter-select-footer .filter-select-steps .filter-select-value {
    color: #222222;
    font-size: 20px;
    line-height: 1.3;
}

.filter-select-steps .filter-select-step.selected .filter-select-value, 
.c-filter-select-footer button.active .filter-select-value, 
#commercial-filter .filter-select-container > .filter-select-body + .c-filter-select-footer .filter-select-step.active.selected .filter-select-value {
    color: #fff;
}

#commercial-filter .filter-select-button:hover, #commercial-filter .filter-select-button.active {
    background: #222222;
    border: 1px solid #555;
    color: #F9F3E3;
}

#commercial-filter .filter-select-steps .filter-select-step.active,
#commercial-filter .filter-select-container > .filter-select-body + .c-filter-select-footer .filter-select-step.active.selected {
    border-top: 2px solid #777060;
    background: #777060;    
}

#commercial-filter .filter-select-step label {
    font-size: 13px;
    line-height: 1.5;
    /*font-weight: 600;*/
}


#commercial-filter .filter-select-steps .filter-select-step.active .filter-select-label,
#commercial-filter .filter-select-container > .filter-select-body + .c-filter-select-footer .filter-select-step.active.selected .filter-select-label {
    color: #AAA393;
}

#commercial-filter .filter-select-steps .filter-select-step.active.selected .filter-select-label {
   /*color: #777060;*/
}
#commercial-filter .filter-select-steps .filter-select-step.selected .filter-select-label  {
    color: #777060;
}
#commercial-filter .filter-select-steps .filter-select-step {
    text-align: left;
    padding: 5px 14px 12px;
    border-radius: 0;
    border-top: 2px solid transparent;
}

#commercial-filter .filter-select-steps .filter-select-step img {
    margin-top: 12px
}

#commercial-filter .filter-select-steps .filter-select-step.active img,
#commercial-filter .filter-select-container > .filter-select-body + .c-filter-select-footer .filter-select-step.selected img {
    filter: brightness(1.6);
}
#commercial-filter .filter-select-steps .filter-select-step.active.selected img {
    filter: brightness(1);
}
#commercial-filter .filter-select-steps .filter-select-step.selected {
    background: #c9c0ab;
    border-top: 2px solid #222;
}

.c-filter-select-footer button.selected:after {
    content: '\f106';
}

#commercial-filter .filter-select-search-wrapper input {
    background: url(/app/themes/armstrongtire-v2/assets/images/search-bar-golden-icon.svg) no-repeat #AAA393;
    background-position: 12px;
    
}
#commercial-filter .filter-select-search-wrapper input, #commercial-filter .filter-select-search-wrapper input::placeholder {
    color: #777060;
}

#commercial-filter .filter-select-search-wrapper button {
    background: #777060;
    color: #AAA393;
}

#commercial-filter .filter-select-search-wrapper button svg path {
    fill: #AAA393;
}

#commercial-filter .filter-select-search-wrapper button.active svg path {
    fill: #fff
}
#commercial-filter .filter-select-search-wrapper button.active {
   /* color: #F9F3E3;*/
}


#commercial-filter .filter-select-search-wrapper button.active, #commercial-filter .filter-select-search-wrapper input:focus {
    color: #fff;
}

#commercial-filter .filter-select-search-wrapper input:focus {
    background: url(/app/themes/armstrongtire-v2/assets/images/search-bar-white-icon.svg) no-repeat #AAA393;
    background-position: 12px;
}

#commercial-filter .filter-select-search-wrapper button img {
    filter: brightness(1.18);
}

#commercial-filter .filter-select-search-wrapper button.active img {
     filter: brightness(2);
}

.filter-clear-hide-warpper {
    position: absolute;
    /*right: 220px;*/
    right: 0;
    top: -40px;
    background: transparent;
    border-bottom: 20px solid transparent;
    display: none;
}

.filter-clear-hide-warpper .btn {
    background: #1C1C1B;
    color: white;
    border-radius: 5px;
    margin-left: 10px;
    height: 30px;
    padding: 0px 11px;
    font-size: 13px;
    line-height: 16px;
	text-transform: uppercase;
}

#commercial-filter .filter-clear-hide-warpper .btn {
    color: #222;
    background: #F9F3E3;
}

#commercial-filter .filter-for-wrapper label {
    color: #777060;
}

#commercial-filter .filter-for-wrapper {
    border-bottom: 1px solid #AAA393;
}

.filter-select-container {
    position: relative;
}

.filter-container:has(.filter-select-container.filters-applied):hover .filter-clear-hide-warpper,
.filter-container:has(.filter-options.active):hover .filter-clear-hide-warpper {
    display: block;

}

.filter-container:has(.filter-clear-hide-warpper) {
    max-width: 1022px;
    margin: 0 auto;
}

.filter-container:has(.filter-icon-wrapper) {
    max-width: 100%;
}

.btn-mobile-close {
    margin-left: auto;
    color: #fff;
    background: #222;
    width: 40px;
    height: 40px;
    border-radius: 6px;
    margin-bottom: 10px;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: -50px;
    right: 0;
}

.btn-mobile-close img {
    width: 20px;
    height: 20px;
}

.filter-container:has(.filters-applied) .btn-mobile-close {
    display: none;
}

.filter-select-buttons:has(.filter-img-select-button) {
    grid-template-columns: repeat(4, 1fr);
}
.filter-img-select-button {
    max-width: 232px;
    height: 151px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.filter-img-select-button img {
    height: 53px;
    object-fit: contain;
    margin-bottom: 16px;
}
.filter-img-select-button h4 {
    font-size: 20px;
    line-height: 26px;
    margin-bottom: 0;
}

#commercial-filter .filter-select-button:hover img, #commercial-filter .filter-select-button.active img {
    filter: invert(1) brightness(1.5);
    mix-blend-mode: luminosity;
}

 .filter-container:has(.c-filter-select-footer):not(:has(.filter-select-body)):hover .filter-clear-hide-warpper {
    display: block;
}

/*
body:has(.filter-container):not(:has(.filter-icon-wrapper)):before {
    content: '';
    background: #00000040;
    position: fixed;
    width: 100vw;
    height: 100vh;
    z-index: 999;
}

body:has(.filter-container):has(.filter-container .filters-applied):not(:has(.filter-icon-wrapper)):before {
    content: unset;
}
*/

/*body:has(.filter-container):not(:has(.filter-icon-wrapper)):not(:has(.filter-options.active)):before {
     content: '';
    background: #00000040;
    position: fixed;
    width: 100vw;
    height: 100vh;
    z-index: 999;
}

body:has(.filter-container):has(.filter-container .filters-applied):not(:has(.filter-icon-wrapper)):before {
    content: unset;
}
*/

.filter-overlay--show:before {
    content: '';
    background: #00000040;
    position: fixed;
    width: 100vw;
    height: 100vh;
    z-index: 9999;
    left: 0;
    top: 0;
}



.filter-select-search-wrapper input[type="search"]::-webkit-search-cancel-button {

  -webkit-appearance: none;
   height: 14px;
   width: 14px;
   display: block;
   background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAB4AAAAeCAYAAAA7MK6iAAAAn0lEQVR42u3UMQrDMBBEUZ9WfQqDmm22EaTyjRMHAlM5K+Y7lb0wnUZPIKHlnutOa+25Z4D++MRBX98MD1V/trSppLKHqj9TTBWKcoUqffbUcbBBEhTjBOV4ja4l4OIAZThEOV6jHO8ARXD+gPPvKMABinGOrnu6gTNUawrcQKNCAQ7QeTxORzle3+sDfjJpPCqhJh7GixZq4rHcc9l5A9qZ+WeBhgEuAAAAAElFTkSuQmCC);
  background-repeat: no-repeat;
  background-size: 14px;
      filter: brightness(5);
}


.filter-select-buttons:has(.no-result-found-text) {
    grid-template-columns: 2fr;
}

.no-result-found-text {
    color: #8E9091;
    font-size: 16px;
    text-align: center;
}

#commercial-filter .no-result-found-text {
    color: #777060;
}


#commercial-filter .filter-select-step + .filter-select-step.selected .filter-select-label,
#commercial-filter .filter-select-step.active + .filter-select-step.selected .filter-select-label {
        color: #777060;
}
#commercial-filter .filter-select-steps .filter-select-step + .filter-select-step.selected img:not(.filter-select-steps .filter-select-step.active.selected img),
#commercial-filter .filter-select-steps .filter-select-step.active + .filter-select-step.selected img:not(.filter-select-steps .filter-select-step.active.selected img),
#commercial-filter .filter-select-container > .filter-select-body + .c-filter-select-footer .filter-select-step.selected:first-child img:not(.c-filter-select-footer .filter-select-step.active.selected:first-child img){
        filter: brightness(1);
}



@media only screen and (min-width: 1024px) {
.btn-mobile-close, .btn-proceed span {
        display: none;
}
/*
#commercial-filter .filter-select-step + .filter-select-step.selected .filter-select-label,
#commercial-filter .filter-select-step.active + .filter-select-step.selected .filter-select-label {
        color: #777060;
}
#commercial-filter .filter-select-steps .filter-select-step + .filter-select-step.selected img:not(.filter-select-steps .filter-select-step.active.selected img),
#commercial-filter .filter-select-steps .filter-select-step.active + .filter-select-step.selected img:not(.filter-select-steps .filter-select-step.active.selected img),
#commercial-filter .filter-select-container > .filter-select-body + .c-filter-select-footer .filter-select-step.selected:first-child img:not(.c-filter-select-footer .filter-select-step.active.selected:first-child img){
        filter: brightness(1);
}
 */
 .filter-select-steps .filter-select-step.selected {
    padding-bottom: 6px
 }
 
 .c-filter-select-footer .filter-select-steps .filter-select-value {
     margin-top: -2px;
 }
}


@media only screen and (max-width: 1023px) {
    
    .filter-icon-wrapper {
        margin: 16px auto 0;
    }
    
    .filter-icon-wrapper .icon-wrapper img {
        width: 18px;
        height: 18px;
        opacity: 0.5;
    }
    
    .filter-icon-wrapper {
        padding: 2px;
        width: 128px;
        height: 44px;
        box-shadow: 0px 4px 10px 1px rgba(0, 0, 0, 0.30);
    }
    .filter-icon-wrapper .icon-wrapper {
        background: #222;
    }
    
    .filter-icon-wrapper .icon-wrapper {
        width: 124px;
        height: 40px;
        gap: 8px
    }
    
    .filter-icon-wrapper .icon-wrapper:after {
        content: "Search by";
    }
    .no-result-found-text, .filter-icon-wrapper .icon-wrapper:after {
        font-size: 14px;
    }
    .filter-options, .c-filter-select-footer .filter-select-steps {
        flex-direction: column;
        gap: 6px;
    }
     .filter-select-footer .filter-selected img {
        display: block;
    }
    .filter-option-item label, .filter-scroll-navigation, .filter-selected .filter-icon-text img  {
        display: none;
    }
    .filter-option-item img, #commercial-filter .filter-select-steps .filter-select-step img {
        margin-top: 0;
    }
    #commercial-filter .filter-select-steps .filter-select-step img {
        margin-right: 10px;
    }
    .filter-option-item h4, .filter-select-button, .btn-proceed, .c-filter-select-footer .filter-select-steps .filter-select-value {
        font-size: 18px;
    }
    .filter-selected h4,  .filter-select-footer .btn-proceed {
        font-size: 13px;
    }
    .filter-select-button {
        padding: 9px;
		width: 100%;
	    height: 45px;
	    max-width: 100%;
	    line-height: 1.55;
    }
    .filter-option-item img, .c-filter-select-footer .filter-select-step img {
        width: 24px;
    }
    .filter-select-body {
        padding: 12px;
    }
    .filter-select-buttons, .filter-select-buttons:has(.w-auto), .filter-select-buttons:has(.w-year-auto) {
        grid-template-columns: 2fr;
        overflow-y: auto;
        min-height: 320px;
        max-height: 320px;
        place-content: start;
        /* overflow-y: scroll; min-height: 320px;*/
    }
    .filter-for-wrapper label {
        margin-bottom: 8px;
    }
    .filter-select-search-wrapper {
        grid-template-columns: 64% auto;
    }
    .filter-select-footer, .filters-applied .filter-select-footer {
        grid-template-columns: 2fr 2fr 2fr;
        gap: 6px;
    }
    .filter-select-footer .filter-select-steps {
        grid-column-start: 1;
        grid-column-end: 4;
    }
    .filter-select-footer .filter-select-steps {
        grid-column-start: 1;
        grid-column-end: 4;
        grid-row-start: 1;
        border-left: 0;
        border-right: 0;
    }
    .filter-select-footer .filter-selected {
        grid-column-start: 1;
        grid-column-end: 3;
        grid-row-start: 2;
        width: 62%;
    }
    .filter-select-footer .btn-proceed {
        grid-column-start: 2;
        grid-column-end: 4;
        grid-row-start: 2;
        width: 87%;
        margin-left: auto;
        text-transform: uppercase;
        gap: 8px;
    }
    .filter-select-steps button {
        font-size: 12px;
        padding: 5px 10px;
        height: 45px;
        line-height: 16px;
    }
    .filter-selected h4 {
        margin-left: 0;
    }
    .filter-selected {
        justify-content: center;
        gap: 10px;
        height: 46px;
    }
   
    .filter-selected img:not(.filter-icon-text img) {
        width: 20px;
    }   
    .filter-select-search-wrapper button, .filter-select-steps .filter-select-step.selected .filter-select-label {
        font-size: 12px;
    }
    .filter-select-search-wrapper button img {
        width: 16px;
    }
    .filter-select-search-wrapper input, .filter-select-search-wrapper input::placeholder {
        font-size: 14px;
    }
    .filter-select-steps .filter-select-step.selected .filter-select-value {
        font-size: 13px;
        line-height: 17px;
    }
     .filters-applied .filter-select-footer .filter-selected {
        width: 100%;
        grid-column-end: 4;
        display: none;
    }
    .filter-select-steps .filter-select-step:first-child .filter-select-label,
    .filter-select-steps .filter-select-step:last-child .filter-select-label {
        font-size: 0;
    }
    .filter-select-steps .filter-select-step:first-child .filter-select-label:after {
        content: "Name";
    }
    .filter-select-steps .filter-select-step:last-child .filter-select-label:after {
        content: "Year";
    }
    
     .filter-select-steps .filter-select-step:first-child .filter-select-label:after, 
     .filter-select-steps .filter-select-step:last-child .filter-select-label:after {
         font-size: 12px;
     }
    .filter-clear-hide-warpper {
        right: 0;
        display: none !important;
        /*display: block;*/
    }
    .filter-option-item:first-child {
        border-top-right-radius: 6px;
        border-bottom-right-radius: 6px;
    }
    .filter-option-item:last-child {
        border-top-left-radius: 6px;
        border-bottom-left-radius: 6px;
    }
    .filter-option-item, .c-filter-select-footer .filter-select-steps button {
        padding: 11px 16px;
        height: 45px;
    }
    .filter-option-item:after, .c-filter-select-footer .filter-select-steps button:after {
        right: 12px;
    }
    .filter-for-wrapper {
        margin-bottom: 22px;
    }
    .btn-proceed img {
        width: 20px;
    }
    
    .filter-select-steps .filter-select-step.selected .filter-select-label {
        line-height: 1.3;
    }
    #commercial-filter .filter-icon-wrapper .icon-wrapper:after {
        color: #222;
    }
    #commercial-filter .filter-icon-wrapper .icon-wrapper {
        border-radius: 8px;
        background: var(--Cream, #F9F3E3);
        box-shadow: 0px 4px 10px 1px rgba(0, 0, 0, 0.30);
    }
    #commercial-filter .filter-select-step label {
        display: none;
    }
    #commercial-filter .filter-select-steps .filter-select-step {
        border-radius: 6px;
    }
    .c-filter-select-footer .filter-select-steps button:after {
        transform: rotate(-90deg);
        top: 14px;
        width: 18px;
        height: 18px;
        background-size: contain;
    }
    .filter-select-buttons:has(.filter-img-select-button) {
        grid-template-columns: repeat(2, 2fr);
        min-height: 230px;
        max-height: 230px;
    }
    .filter-img-select-button {
        height: 111px;
    }
    .filter-img-select-button img {
        height: 35px;
        margin-bottom: 10px;
    }
    .filter-img-select-button h4 {
        font-size: 18px;
        line-height: 24px;
    }
    /* #commercial-filter .filter-select-steps .filter-select-step.active img, #commercial-filter .filter-select-steps .filter-select-step.active:after  {
        display: none;
    }
    #commercial-filter .filter-select-steps .filter-select-step.active {
        text-align: center;
    }
    #commercial-filter .filter-select-steps .filter-select-step.active .filter-select-value {
        display: inline-block;
    }
    #commercial-filter .filter-select-steps .filter-select-step.active .filter-select-value:before {
        content: "";
        width: 14px;
        background: url(/app/themes/armstrongtire-v2/assets/images/arrow-right-mobile.svg) no-repeat;
    }*/
    
    .filter-select-search-wrapper input {
        padding: 2px 10px 0px 38px;
    }
    
    
    #commercial-filter .filter-select-step.selected .filter-select-label {
        display: block;
        font-size: 0;
    }
    #commercial-filter .filter-select-step.selected .filter-desc {
        display: flex;
        align-items: center;
    }
    #commercial-filter .filter-select-step.selected .filter-select-label:after, #commercial-filter .filter-select-step.selected .filter-select-value {
        font-size: 18px;
        line-height: normal;
    }
    #commercial-filter .filter-select-step.selected .filter-select-value:before {
        content: "(";
    }
    #commercial-filter .filter-select-step.selected .filter-select-value:after {
        content: ")";
    }
    #commercial-filter .filter-select-step.selected .filter-select-label:after {
        color: #222;
        margin-right: 8px;
        font-family: "Futura Hv BT";
    }
    #commercial-filter .filter-select-steps .filter-select-step {
        padding-top: 10px;
    }
    #commercial-filter .filter-select-step:first-child .filter-select-label:after {
        content: "Tire size";
    }
     #commercial-filter .filter-select-step:nth-child(2) .filter-select-label:after {
        content: "Position";
    }
    #commercial-filter .filter-select-step:nth-child(3) .filter-select-label:after {
        content: "Application";
    }
    #commercial-filter .back .filter-select-steps .filter-select-step.selected,
    #commercial-filter .back .filter-select-steps .filter-select-step {
        /*display: none;*/
    }
    #commercial-filter .back .filter-select-steps .filter-select-step.active {
        /*display: block;*/
    }
    
    #commercial-filter .filters-applied.back .filter-select-step {
        display: block !important;
    }
    
    /*#commercial-filter:has(.overlay) .filter-select-step:not(.filter-select-step.active),*/
    #commercial-filter .filters-applied .filter-select-step:not(.filter-select-step.selected),
    /*#commercial-filter .filter-select-step.selected~.filter-select-step,*/
    #commercial-filter .filter-select-step.active~.filter-select-step,
    #commercial-filter .filter-select-body + .c-filter-select-footer .filter-select-step:not(.filter-select-step.active) {
        display: none;
    }
    /*
    #commercial-filter .filter-select-body + .c-filter-select-footer .filter-select-step:not(.filter-select-step.active) {
        display: none;
    }
    */
    
    
    #commercial-filter .filter-select-container > .filter-select-body + .c-filter-select-footer .filter-select-step.selected .filter-desc,
    #commercial-filter .filter-select-container > .filter-select-body + .c-filter-select-footer .filter-select-step.active .filter-desc {
        justify-content: center;
    }
    
    #commercial-filter .filter-select-container > .filter-select-body + .c-filter-select-footer .filter-select-step.selected img,
    #commercial-filter .filter-select-container > .filter-select-body + .c-filter-select-footer .filter-select-step.active img {
        display: none !important;
    }
    
    #commercial-filter .filter-select-container > .filter-select-body + .c-filter-select-footer .filter-select-step.selected:after,
    #commercial-filter .filter-select-container > .filter-select-body + .c-filter-select-footer .filter-select-step.active:after {
        content: unset;
    }
    
    #commercial-filter .filter-select-container > .filter-select-body + .c-filter-select-footer .filter-select-step.selected .filter-select-value {
        display: none;
    }
    
    #commercial-filter .filter-select-container > .filter-select-body + .c-filter-select-footer .filter-select-step.selected .filter-desc:before,
    #commercial-filter .filter-select-container > .filter-select-body + .c-filter-select-footer .filter-select-step.active .filter-desc:before {
        
    }
    #commercial-filter .filter-select-container > .filter-select-body + .c-filter-select-footer .filter-select-step.selected .filter-desc .filter-select-label,
    #commercial-filter .filter-select-container > .filter-select-body + .c-filter-select-footer .filter-select-step.active .filter-desc .filter-select-label,
    #commercial-filter .filter-select-container > .filter-select-body + .c-filter-select-footer .filter-select-step.selected .filter-desc .filter-select-value,
    #commercial-filter .filter-select-container > .filter-select-body + .c-filter-select-footer .filter-select-step.active .filter-desc .filter-select-value{
        position: relative;
    }
    #commercial-filter .filter-select-container > .filter-select-body + .c-filter-select-footer .filter-select-step.selected .filter-desc .filter-select-value:before,
    #commercial-filter .filter-select-container > .filter-select-body + .c-filter-select-footer .filter-select-step.active .filter-desc .filter-select-value:before,
    #commercial-filter .filter-select-container > .filter-select-body + .c-filter-select-footer .filter-select-step.active .filter-select-label:before {
        content: "";
        background: url(/app/themes/armstrongtire-v2/assets/images/arrow-right-mobile.svg) no-repeat;
        position: absolute;
        width: 20px;
        height: 20px;
        left: -26px;
        top: 7px;
    }
    #commercial-filter .filter-select-container > .filter-select-body + .c-filter-select-footer .filter-select-step.selected .filter-desc,
    #commercial-filter .filter-select-container > .filter-select-body + .c-filter-select-footer .filter-select-step.active .filter-desc {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
    }
    #commercial-filter .filter-select-container > .filter-select-body + .c-filter-select-footer .filter-select-step.active .filter-select-label:after {
        margin-right: 0;
        line-height: 1.3;
    }
    #commercial-filter .filter-select-container > .filter-select-body + .c-filter-select-footer .filter-select-step.active .filter-desc .filter-select-value,
    #commercial-filter .filter-select-container > .filter-select-body + .c-filter-select-footer .filter-select-step.active .filter-select-label:after {
        color: #F9F3E3;
    }
    
    #commercial-filter .filter-select-search-wrapper button:not(.filter-select-search-wrapper button.active) {
        /*background: #AAA393;
        color: #777060;
        pointer-events: none;*/
    } 
    #commercial-filter .filter-select-search-wrapper button img:not(.filter-select-search-wrapper button.active img) {
        filter: brightness(0.7);
    }
    #commercial-filter .filter-select-container > .filter-select-body + .c-filter-select-footer .filter-select-step,
    #commercial-filter .filter-select-container > .filter-select-body + .c-filter-select-footer .filter-select-step.active .filter-select-label:after {
        text-transform: uppercase;
    }
    #commercial-filter .filter-select-steps .filter-select-step.selected .filter-select-value {
        text-transform: none;
    }
   /* #commercial-filter .overlay .filter-icon-wrapper {
       display: none;
    }*/
    
    #commercial-filter .filter-container:has(.filter-select-body) .filter-icon-wrapper {
        display: none;
    }
    #commercial-filter .filter-icon-wrapper .icon-wrapper {
        box-shadow: unset;
    }
    #commercial-filter .filter-icon-wrapper {
        box-shadow: 0px 4px 10px 1px rgba(0, 0, 0, 0.30);
    }
    #commercial-filter .filter-select-steps .filter-select-step.selected .filter-select-value, #commercial-filter .filter-select-step.selected .filter-select-label:after {
        font-weight: 400;
    }
    #commercial-filter .filter-select-container .c-filter-select-footer .filter-select-step.active:after {
        transform: rotate(-90deg);
    }
    .filter-select-button:hover {
        border: 1px solid #424647;
        background: #222;
    }
    
    .filter-select-button.active {
        background: #FD0D1B;
        border-color: #FD0D1B;
    }
    
    #commercial-filter .filter-select-button:hover {
        border: 1px solid #F9F3E3;
        background: #F9F3E3;
        color: #222222;
    }
    #commercial-filter .filter-select-button:hover img {
        filter: unset;
        mix-blend-mode: unset;
    }
    
    .filter-select-buttons::-webkit-scrollbar {
        width: 5px;
    }
    
    .filter-select-buttons::-webkit-scrollbar-thumb {
        border-radius: 20px;
    }
    
    .filter-select-buttons {
        padding-right: 12px;
        margin-right: -12px;
    }
    
    .filter-select-steps .filter-select-step.selected .filter-select-value {
        margin-top: 0;
    }
}


@media not all and (min-resolution: .001dpcm) { 
    @supports (-webkit-appearance:none) {
        #commercial-filter .filter-select-buttons {
            scrollbar-width: thin; /* Width of the scrollbar */
            scrollbar-color: #777060 #C9C0AB; /* Thumb and track color */
        }
    
        #commercial-filter .filter-select-buttons::-webkit-scrollbar {
            width: 5px; /* Width of the scrollbar */
        }
    
        #commercial-filter .filter-select-buttons::-webkit-scrollbar-track {
            background-color: #C9C0AB; /* Color of the scrollbar track */
        }
    
        #commercial-filter .filter-select-buttons::-webkit-scrollbar-thumb {
            background-color: #777060; /* Color of the scrollbar thumb */
            border-radius: 10px; /* Roundness of the thumb */
        }
    }
}



