/* Style for registration form */
.reg-two-column {
    display: flex;
    align-items: flex-start;
    width: 100%;
    gap: 40px;
}

.reg-two-column p:nth-child(2) {
    width: 60% !important;
}

.afreg_extra_fields select {
    text-transform: uppercase;
    padding: 0px 0px 0px 14px;
    font-size: 14px;
    border: 1px solid #e0e0e0;
    height: 44px;
    margin-bottom: 0px;
    background: #FFF url(../png/select_arrow.png) calc(100% - 15px) 20px no-repeat !important;
  }


/* Style the search field */
.find-a-rep-zipcode {
    padding: 10px;
    font-size: 17px;
    border: 1px solid grey;
    width: 100%;
    background: #f1f1f1;
    margin-bottom: 0 !important;
  }

  .register-submit {
    padding: 11px 24px;
    text-transform: uppercase;
    background: #000000;
    color: white;
    font-size: 12px;
    border: 1px solid grey;
    border-left: none; /* Prevent double borders */
    cursor: pointer;
    border-radius: 40px;
    letter-spacing: 3px;
    line-height: normal;
    font-weight: 500;
    font-style: normal;
    box-shadow: 0px 4px 12px 0px rgba(162, 157, 151, 0.25);
  }

/* Style the submit button */
.find-a-rep-submit {
    width: 20%;
    padding: 10px 0px !important;
    background: #000000;
    color: white;
    font-size: 14px !important;
    border: 1px solid grey;
    border-left: none; /* Prevent double borders */
    cursor: pointer;
    border-radius: 40px;
    letter-spacing: 2px !important;
    line-height: normal;
    font-weight: 500;
    font-style: normal;
    box-shadow: 0px 4px 12px 0px rgba(162, 157, 151, 0.25);
  }

  .find-a-rep-submit:hover {
    color: white;
  }

  .find-a-rep-form {
    display: flex;
    align-items: center;
    gap: 20px;
    align-self: stretch;
    margin-bottom: 20px;
  }

  .find-a-rep-wrapper {
    display: flex;
    align-items: flex-start;
    flex: 1 0 0;
  }

  .find-a-rep-wrapper select {
    width: 40%;
    text-transform: uppercase;
    padding: 0px 0px 0px 14px;
    font-size: 14px;
    border: 1px solid #e0e0e0;
    height: 44px;
    margin-bottom: 0px;
    background: #FFF url(../png/select_arrow.png) calc(100% - 15px) 20px no-repeat !important;
  }

  .sales-rep-wrapper {
    display: flex;
    max-width: 630px;
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
    flex: 1 0 0;
  }

  .sales-reps-section {
    display: flex;
    padding-bottom: 24px;
    padding-top: 24px;
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
    align-self: stretch;
    border-bottom: 1px solid #C6C0B7;
  }

  .sales-reps-results {
    display: flex;
    align-items: flex-start;
    align-content: flex-start;
    gap: 40px;
    align-self: stretch;
    flex-wrap: wrap;
  }

  .sales-reps-section-title {
    color: #7C7D7F;
    font-size: 14px;
    font-style: normal;
    font-weight: 300;
    line-height: 16px; /* 114.286% */
    text-transform: uppercase;
  }

  .sales-reps-section ul {
    display: flex;
    align-items: flex-start;
    gap: 40px;
    list-style-type: none;
    margin-left: 0;
    flex-wrap: wrap;
  }

  .sales-rep-name {
    color: #0C121C;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 24px; /* 171.429% */
  }

  .sales-rep-email {
    color: #0C121C;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
    text-decoration-line: underline;
  }

  .sales-rep-phone {
    color: #0C121C;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
  }


/*Frontend*/
#overlay-loading {
    position: fixed;
    top: 0;
    z-index: 100;
    width: 100%;
    height: 100%;
    display: none;
    left: 0;
    background: rgba(0, 0, 0, 0.6);
}


.cv-spinner {
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.spinner {
    width: 40px;
    height: 40px;
    border: 4px #ddd solid;
    border-top: 4px #2e93e6 solid;
    border-radius: 50%;
    animation: sp-anime 0.8s infinite linear;
}

@keyframes sp-anime {
    100% {
        transform: rotate(360deg);
    }
}

.is-hide {
    display: none;
}


.product-page-allwrapper {
    max-width: 1390px;
    width: 100%;
    padding: 0 35px;
    margin: 0 auto;
}

.change-view {
    border: 1px solid #231F20;
    padding: 16px 15px;
    cursor: pointer;
    color: #231F20;
    white-space: nowrap;
}

.button-select-wrapper.mobile {
    display: none;
}

.button-select-wrapper.bottom-button {
    display: flex;
    justify-content: end;
    width: 100%;
}

@media (max-width: 1067px) {
    .button-select-wrapper.mobile {
        display: flex;
        margin-left: auto;
        margin-bottom: 30px;
        min-width: 284px;
        gap: 10px;
    }

    .button-select-wrapper.pc {
        display: none;
    }

    .sort-selector {
        margin-bottom: 0;
        font-size: 16px;
        background-position: bottom 21px right 10px !important;
        padding: 4px 8px;
    }
}

@media (max-width: 768px) {
    .product-page-allwrapper {
        padding: 0 15px;
    }
}

.search-page {
    max-width: 1390px;
    margin: 0 auto;
    width: 100%;
}

.search-results main {
    max-width: 1320px;
    margin: 0 auto;
    width: 100%;
}

.sort-by-name-date__wrapper {
    display: flex;
    justify-content: space-between;
}

.catalog-header {
    border-bottom: 1px solid #eee;
    font-size: 30px;
    margin-bottom: 15px;
    padding-bottom: 25px;
    padding-top: 10px;
}

.pagination.catalog {
    width: 100%;
}

.pagination-wrapper, .pagination.first-load {
    width: 73%;
    margin-left: auto;
}

.pagination-wrapper .pagination {
    width: 100%;
    display: flex;
    justify-content: center;
    list-style-type: none;
}

@media (max-width: 1067px) {
    .pagination-wrapper {
        width: 100%;
    }
}

.pagination-wrapper.search {
    width: 100%;
}

.pagination-wrapper .pagination li {
    padding: 0 4px;
}

.pagination-wrapper .pagination li.active {
    text-decoration: underline;
}

.pagination.first-load .next.page-numbers {
    display: none;
}


.sort-by-name-date__wrapper.category {
    margin-bottom: 0;
}

.sort-by-name-date__wrapper select {
    padding: 5px 88px 5px 15px;
    background: #f7f7f7;
    border: none;
    outline: none;
    font-size: 16px;
    height: fit-content;
    width: auto;
}

.url-buttons {
    display: flex;
    align-items: end;
    gap: 20px;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.wrapper-for-reset-filter {
    width: 73%;
    margin-left: 27%;
    margin-bottom: 35px;
    display: flex;
    flex-wrap: wrap;
    gap: 2%;
}

.wrapper-for-reset-filter button {
    background: none;
    padding: 13px 60px 13px 13px;
    border: 1px solid black;
    cursor: pointer;
    text-transform: uppercase;
    font-weight: bold;
    position: relative;
    margin-bottom: 15px;
}

.wrapper-for-reset-filter button:after {
    position: absolute;
    right: 10px;
    top: 47%;
    transform: translateY(-50%);
    content: '✖';
}


.product-page-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.product-item__filter {
    width: 22%;
}

@media (max-width: 1067px) {
    .product-item__filter {
        width: 100%;
    }
}

.product-item__wrapper {
    display: flex;
    flex-wrap: wrap;
    width: 73%;
    gap: 3.5%;
    height: fit-content;
}

@media (max-width: 1067px) {
    .product-item__wrapper {
        width: 100%;
    }
}

.product-item {
    display: flex;
    flex-direction: column;
    max-width: 31%;
    width: 100%;
    margin-bottom: 40px;
    height: min-content;
}

.product-item.fast_track a:first-child, .product-coordinated-style-card.fast_track .product-coordinated-style-image:first-child {
    position: relative;
}

.product-item.fast_track a:first-child:after, .product-coordinated-style-card.fast_track .product-coordinated-style-image:first-child:after {
    background-color: #B5D325;
    content: 'FAST TRACK';
    color: white;
    font-weight: 900;
    letter-spacing: 3px;
    width: 100%;
    position: absolute;
    bottom: 0px;
    height: auto;
    display: inline-block;
    text-align: center;
    padding: 5px;
    left: 0;
    z-index: 39;
}

.color-btn.fast_track .attr-img:first-child {
    position: relative;
}

.color-btn.fast_track .attr-img:first-child:after {
    background-color: #B5D325;
    content: 'FAST TRACK';
    color: white;
    font-weight: 900;
    font-size: 9px;
    letter-spacing: 2px;
    width: 100%;
    position: absolute;
    bottom: 0px;
    height: auto;
    display: inline-block;
    text-align: center;
    padding: 5px;
    left: 0;
}

.product-item.dropped a:first-child {
    position: relative;
}

.product-item.dropped a:first-child:after {
    background-color: #8f1402;
    content: 'DROPPED';
    color: white;
    font-weight: 900;
    letter-spacing: 3px;
    width: 100%;
    position: absolute;
    bottom: 0px;
    height: auto;
    display: inline-block;
    text-align: center;
    padding: 5px;
    left: 0;
    z-index: 39;
}

.product-item.non-standard a:first-child {
    position: relative;
}

.product-item.non-standard a:first-child:after {
    background-color: #8f1402;
    content: 'NON STANDARD';
    color: white;
    font-weight: 900;
    letter-spacing: 3px;
    width: 100%;
    position: absolute;
    bottom: 0px;
    height: auto;
    display: inline-block;
    text-align: center;
    padding: 5px;
    left: 0;
    z-index: 39;
}

@media (max-width: 1400px) {
    .product-item {
        max-width: 48%;
    }
}

.product-item img {
    width: 100%;
    margin: 0 auto;
    min-height: 314px;
    object-fit: cover;
}

@media (max-width: 1067px) {
    .product-item img {
        max-width: 100%;
        min-height: auto;
    }
}

.product-item .second-image {
    display: none;
}

.product-item:hover .first-image {
    display: none;
}

.product-item:hover .second-image {
    display: block;
}

.product-item__link {
    text-decoration: none;
}

.product-item__heading {
    margin-top: 18px;
    margin-bottom: 10px;
    font-size: 24px;
    word-wrap: break-word;
    font-weight: 400;
}

.product-item__link.hidden {
    font-size: 14px;
    transform: translateY(100%);
    transition: all 0.3s;
    text-decoration: underline;
    opacity: 0;
}

.product-item__filter .filter-wrapper {
    border-bottom: 1px solid #eee;
    padding-bottom: 45px;
    margin-bottom: 20px;
}

@media (max-width: 1067px) {
    .product-item__filter .filter-wrapper {
        padding-bottom: 20px;
        margin-bottom: 10px;
    }
}

.product-item__filter .filter-wrapper select {
    width: 100%;
    height: 55px;
    padding: 0 9px;
    font-size: 16px;
    border: none;
    outline: none;
    background: #f7f7f7;
}

.product-item__filter .filter-wrapper .color-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 1%;
}

@media (max-width: 1067px) {
    .product-item__filter .filter-wrapper .color-wrapper {
        justify-content: start;
        gap: 3%;
    }
}

.product-item__filter .filter-wrapper .color {
    width: 24%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    cursor: pointer;
    margin-bottom: 10px;
}

@media (max-width: 1067px) {
    .product-item__filter .filter-wrapper .color {
        max-width: 40px;
        width: 100%;
    }
}

.product-item__filter .filter-wrapper .color:hover .color-name {
    text-decoration: underline;
}

.product-item__filter .filter-wrapper .color-box {
    max-width: 40px;
    width: 100%;
    height: 40px;
    border: 1px solid #d8d8d8;
    display: inline-block;
}

.product-item__filter .filter-wrapper .color.active .color-box {
    border: 2px solid black;
}

.product-item__filter .filter-wrapper .color-name {
    font-size: 14px;
    text-align: center;
}

.product-item__filter .filter-wrapper .filter-title {
    font-size: 14px;
    font-weight: 500;
    margin: 0;
    margin-bottom: 20px;
    text-transform: capitalize;
}

.product-item__filter .filter-wrapper ul {
    margin: 0;
    padding-left: 0;
}

.product-item__filter .filter-wrapper li {
    list-style-type: none;
}

.product-item__filter .filter-wrapper li a {
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    color: #4f4f4f;
}

.product-item__filter .filter-wrapper li a.active {
    text-decoration: underline;
}


#reset-filters {
    background: none;
    padding: 8px 35px;
    border: 1px solid black;
    cursor: pointer;
    height: 54px;
}

/*Category Page*/
.thb-breadcrumb-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    font-size: 12px;
    min-height: 25px;
    color: #8e8b8a;
    border-bottom: 1px solid #eee;
}

.thb-breadcrumb-bar a {
    text-decoration: none;
}

.category-name {
    border-bottom: 1px solid #eee;
    padding: 21px 0;
    margin: 0;
    margin-bottom: 21px;
}

/*Search Page*/
.search-heading {
    padding-left: 40px;
    margin-bottom: 20px;
}

@media (max-width: 520px) {
    .search-heading {
        padding-left: 15px;
    }
}

.sidebar-content-wrapper {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 40px;
}

.search-page__sidebar {
    max-width: 20%;
    width: 100%;
    padding: 40px 0;
}

@media (max-width: 991px) {
    .search-page__sidebar {
        max-width: 100%;
        padding: 15px 0;
    }
}

.products-item .product-item__image .image {
    max-height: 300px;
    width: 100%;
    object-fit: cover;
}

@media (max-width: 1190px) {
    .products-item .product-item__image .image {
        max-height: 100%;
        height: 100%;
    }
}

.search-page__content {
    max-width: 76%;
    width: 100%;
    position: relative;
}

@media (max-width: 1290px) {
    .search-page__content {
        max-width: 75%;
    }
}

@media (max-width: 1135px) {
    .search-page__content {
        max-width: 73%;
    }
}

@media (max-width: 1051px) {
    .search-page__content {
        max-width: 67%;
    }
}

@media (max-width: 991px) {
    .search-page__content {
        max-width: 100%;
        padding: 0 40px;
    }
}

@media (max-width: 520px) {
    .search-page__content {
        max-width: 100%;
        padding: 0 15px;
    }
}

.search-page__content .products {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.search-page__content .products .products-item {
    max-width: 49%;
    width: 100%;
    border: 1px solid #C6C0B7;
    margin-bottom: 12px;
}

@media (max-width: 1190px) {
    .search-page__content .products .products-item {
        max-width: 100%;
    }
}

#slider {
    position: relative;
    overflow: hidden;
}

#slider ul {
    position: relative;
    margin: 0;
    padding: 0;
    list-style: none;
    overflow: hidden;
}

#slider ul li {
    position: relative;
    display: block;
    float: left;
    margin: 0;
    padding: 0;
    width: 740px;
    height: 740px;
    text-align: center;
    line-height: 300px;
}

#slider ul li img {
    width: 100%;
    height: 100%;
    max-width: 100%;
    object-fit: cover;
}

@media (max-width: 720px) {
    #slider ul li {
        max-width: calc(100vw - 30px);
        max-height: 500px;
    }
}

@media (max-width: 640px) {
    #slider ul li {
        max-width: calc(100vw - 30px);
        max-height: 400px;
    }
}

@media (max-width: 480px) {
    #slider ul li {
        max-width: calc(100vw - 30px);
        max-height: 345px;
    }
}

a.control_prev, a.control_next {
    position: absolute;
    top: 52%;
    z-index: 999;
    display: block;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    font-size: 42px;
    cursor: pointer;
    transform: translateY(-50%);
}

a.control_prev {
    left: 15px;
}

a.control_next {
    right: 15px;
}


.products-item .product-item__image {
    width: 55%;
    height: 100%;
    position: relative;
}

.products-item.fast_track .product-item__image:after {
    background-color: #B5D325;
    content: 'FAST TRACK';
    color: white;
    font-weight: 900;
    letter-spacing: 3px;
    width: 100%;
    position: absolute;
    bottom: 0px;
    height: auto;
    display: inline-block;
    text-align: center;
    padding: 5px;
    left: 0;
    z-index: 38;
}


@media (max-width: 1190px) {
    .products-item .product-item__image {
        max-height: 330px;
    }
}

@media (max-width: 768px) {
    .products-item .product-item__image {
        max-width: 48%;
        max-height: 250px;
    }
}

@media (max-width: 500px) {
    .products-item .product-item__image {
        max-width: 100%;
        width: 100%;
        max-height: 250px;
    }
}

.products-item {
    display: flex;
}

@media (max-width: 500px) {
    .products-item {
        flex-direction: column;
    }
}

.products-item h2 {
    font-size: 24px;
    font-weight: 700;
    margin: 0;
    color: #231F20;
    line-height: 1;
    display: inline-block;
}

.product-item-content {
    padding: 24px;
    width: 44%;
    position: relative;
}

@media (max-width: 1290px) {
    .product-item-content {
        padding: 10px 10px 0 10px;
    }
}

@media (max-width: 500px) {
    .product-item-content {
        width: 50%;
    }
}

@media (max-width: 500px) {
    .product-item-content {
        width: 100%;
    }
}

.products-item .button-wrapper {
    display: flex;
    gap: 8px;
    margin-top: 16px;
}

@media (max-width: 500px) {
    .products-item .button-wrapper {
        flex-direction: column;
        gap: 8px;
    }
}

.products-item .button-wrapper button {
    font-size: 12px;
    font-weight: 300;
    background: transparent;
    border: 1px solid #000000;
    color: #000000;
    max-width: 48%;
    width: 100%;
    padding: 12px 2px;
    cursor: pointer;
}

@media (max-width: 768px) {
    .products-item .button-wrapper button {
        padding: 11px 2px;
    }
}

@media (max-width: 500px) {
    .products-item .button-wrapper button {
        max-width: 100%;
    }
}

.link-product {
    padding: 11px 24px;
    background: #000000;
    color: white;
    font-size: 12px;
    text-decoration: none;
    position: absolute;
    bottom: 24px;
    text-align: center;
    border-radius: 25px;
}
.link-product:hover {
    color: white !important;
    background: rgba(0,0,0,0.8);
}

@media (max-width: 1400px) {
    .link-product {
        padding: 11px 16px;
        margin-top: 8px;
        display: inline-block;
        margin-bottom: 8px;
        max-width: 150px;
        width: 100%;
    }
}

@media (max-width: 500px) {
    .link-product {
        position: unset;
        width: 99%;
        max-width: 100%;
        margin-bottom: 8px;
    }
}


.search-page__content .buttons-wrapper {
    border-bottom: 1px solid #eee;
    margin-bottom: 30px;
}

.search-page__content .buttons-wrapper button {
    padding: 16px;
    font-size: 12px;
    font-weight: bold;
    background: white;
    text-align: center;
    color: #7C7D7F;
    border: 1px solid #C6C0B7;
    cursor: pointer;
    margin-right: -6px !important;
}

.search-page__content .buttons-wrapper button.active {
    position: relative;
    background: #7C7D7F;
    color: white;
}


.search-page__sidebar .filter-title {
    text-transform: uppercase;
    color: #000000;
    font-weight: 400;
    margin-top: 8px;
    margin-bottom: 16px;
}

@media (max-width: 768px) {
    .search-page__sidebar .filter-title {
        position: relative;
        transition: all 0.3s;
    }

    .search-page__sidebar .filter-title:after {
        position: absolute;
        right: 0;
        top: 0;
        content: '>';
        transform: rotate(90deg);
        transition: all 0.3s;
    }

    .search-page__sidebar .filter-title.show:after {
        transform: rotate(270deg);
    }
}

.search-page__sidebar .select-filter {
    display: flex;
    flex-direction: column;
    border-bottom: 1px solid #C2D1D9;
    padding-bottom: 16px;
}
.search-page__sidebar .select-filter.size .check-box {
    margin-bottom: 10px;
}

@media (max-width: 991px) {
    .search-page__sidebar .select-filter {
        border: none;
    }
}

@media (max-width: 768px) {
    .search-page__sidebar .select-filter {
        display: none;
    }
}

.search-page__sidebar .filter-wrapper {
    padding: 0 20px 0 40px;
}

@media (max-width: 991px) {
    .search-page__sidebar .filter-wrapper {
        padding: 0;
        width: 30%;
    }
}

@media (max-width: 991px) {
    .scroller-sidebar {
        display: flex;
        flex-wrap: wrap;
        padding: 0 40px;
        justify-content: space-between;
    }
}

@media (max-width: 520px) {
    .scroller-sidebar {
        padding: 0 15px;
    }
}

@media (max-width: 768px) {
    .scroller-sidebar .filter-wrapper {
        width: 100%;
    }
}

.check-box {
    display: flex;
    align-items: center;
}

.switch {
    position: relative;
    appearance: none;
    width: 36px !important;
    height: 20px !important;
    background: #C6C0B7;
    border-radius: 50px;
    cursor: pointer;
    transition: 0.4s;
}

input[type="checkbox"] {
    width: 17px;
    height: 17px;
}

.checkbox-wrapper {
    display: flex;
    align-items: start;
    gap: 5px;
    margin-bottom: 4px;
}

.checkbox-wrapper label {
    margin-bottom: 0;
    font-size: 14px;
    line-height: 1;
}

.wrap-for-articles {
    position: absolute;
    top: 0;
    display: none;
}
.size-items {
    width: 17px !important;
}
.select-filter.category {
    position: relative;
    border-bottom: none;
}

.switch[type="checkbox"]::after {
    position: absolute;
    content: "";
    width: 14px;
    height: 14px;
    top: 3px;
    left: 3px;
    background: #7C7D7F;
    border-radius: 50%;
    transform: scale(1.1);
    transition: 0.4s;
}

.switch:checked[type="checkbox"]::after {
    left: 50%;
}

.checkbox-wrapper {
    position: relative;
}

.select-filter.size .checkbox-wrapper label.size_cm {
    position: absolute;
    left: 29px;
    line-height: 1;
}

.color-title {
    font-size: 12px;
    line-height: 1;
    font-weight: 400;
    margin: 0;
    margin-top: 16px;
}

.color-info {
    display: flex;
    gap: 2%;
}

.color-info p {
    font-size: 14px;
    font-weight: 400;
    margin: 0;
    /*margin-bottom: 16px;*/
}
.color-info p:first-child {
    color: #000000;
    font-weight: bold;
}

/* Specification Modal */
.specification-modal {
    display: flex;
    flex-direction: column;
    position: fixed;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 50;
    background: white;
    max-height: 90%;
    /*min-height: 968px;*/
    overflow-y: scroll;
    max-width: 440px;
    width: 100%;
}


.specification-modal::-webkit-scrollbar {
    display: none;
}

@media (max-width: 768px) {
    .specification-modal {
        left: 0;
        right: 0;
        top: 0;
        bottom: 0;
        max-width: 100%;
        transform: unset;
        justify-content: flex-start;
        height: 100%;
        padding-top: 20px;
    }
}

.specification-modal h6 {
    margin: 0;
}

.specification-model-overlay, .quick-model-overlay {
    position: fixed;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.2);
    z-index: 1000;
}

.specification-modal .info-wrapper {
    border-bottom: 1px solid #CAC4BC;
    margin-left: 40px;
    margin-right: 40px;
    text-align: left;
}

.specification-modal .info-wrapper > span {
    padding-top: 12px;
    font-size: 12px;
    font-weight: 400;
    color: #505D68;
    text-transform: capitalize;
}

.specification-modal .info-wrapper p {
    margin: 0;
    font-size: 12px;
    font-weight: bold;
    color: #000000;
    padding-bottom: 12px;
}

.specification-modal .info-wrapper h2 {
    text-align: left;
}

.info-wrapper.title {
    padding-top: 15px;
    border-bottom: none;
}

.info-wrapper.title p {
    font-size: 12px;
    font-weight: 400;
    margin-top: 0;
    text-transform: uppercase;
    padding-bottom: 0;
}

.info-wrapper.title h2 {
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 12px;
}

.close-button {
    position: sticky;
    text-align: right;
    top: 15px;
    cursor: pointer;
    width: 98%;
}

.spec-button-wrapper {
    margin-left: 40px;
    margin-right: 40px;
    display: flex;
    justify-content: space-between;
    margin-top: 32px;
    margin-bottom: 40px;
}

.spec-button-wrapper a {
    background: white;
    box-shadow: 3px 4px 12px -3px rgba(161, 174, 183, 0.3);
    border: none;
    outline: none;
    padding: 16px 16px;
    font-size: 12px;
    font-weight: 400;
    max-width: 31%;
    width: 100%;
    text-align: center;
    cursor: pointer;
    text-decoration: none;
    margin: 0 4px;
    transition: all 0.3s ease-in-out;
}

.spec-button-wrapper a:hover {
    box-shadow: 3px 4px 12px 2px rgba(161, 174, 183, 0.3);
}

/* Quick Modal */
.quick-modal {
    display: flex;
    flex-direction: row;
    position: fixed;
    left: 50%;
    top: 52%;
    transform: translate(-50%, -50%);
    z-index: 50;
    background: white;
    max-height: 100%;
    overflow-y: scroll;
    max-width: 1380px;
    width: 100%;
    flex-wrap: wrap;
    justify-content: space-evenly;
}

.quick-modal.color {
    max-width: fit-content;
    padding: 0 20px;
}

@media (max-width: 1255px) {
    .quick-modal {
        left: 0;
        right: 0;
        top: 0;
        bottom: 0;
        max-width: 100%;
        transform: unset;
        justify-content: flex-start;
        height: 100%;
        padding-top: 20px;
        max-height: 100%;
        min-height: 100%;
    }
}

.quick-modal::-webkit-scrollbar {
    display: none;
}

.product-gallery {
    padding-top: 20px;
    max-width: 740px;
}


@media (max-width: 1255px) {
    .product-gallery {
        max-width: 100%;
        width: 100%;
        display: flex;
        justify-content: center;
    }
}

.product-color-wrapper {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 16px;
}


.product-color-wrapper .color-item {
    display: flex;
    flex-direction: column;
    justify-content: end;
    position: relative;
    max-width: 90px;
    width: 100%;
    text-align: center;
    cursor: pointer;
}


.product-color-wrapper .color-item.active {
    border-bottom: 4px solid #7C7D7F;
    box-shadow: 0px 0px 10px 5px rgba(162, 157, 151, 0.25);
}

.product-color-wrapper .color-item .name {
    font-size: 13px;
    font-weight: 400;
    color: #505D68;
    margin: 0;
    z-index: 10;
    position: relative;
}

.product-color-wrapper .color-item .code {
    font-size: 13px;
    font-weight: 400;
    color: #A1AEB7;
    margin: 0;
    z-index: 10;
    position: relative;
}

.product-size {
    display: flex;
    flex-wrap: wrap;
}

.product-size .size-button, .product-method-wrapper a {
    padding: 12px 16px;
    font-size: 12px;
    font-weight: 300;
    border: 1px solid #C6C0B7;
    text-decoration: none;
    position: relative;
    min-width: 125px;
    height: 40px;
    cursor: pointer;
}

.product-size .size-button.active, .product-method-wrapper a.active {
    border: 1px solid #C6C0B7;
    background: #7C7D7F;
    color: white;
}

.product-size .size-button span {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    text-align: center;
}

.size-input-wrapper {
    display: flex;
    justify-content: space-between;
    padding-right: 57px;
}

@media (max-width: 1255px) {
    .size-input-wrapper {
        padding-top: 15px;
        padding-right: 40px;
        padding-left: 40px;
    }
}

@media (max-width: 768px) {
    .size-input-wrapper {
        padding-right: 15px;
        padding-left: 15px;
    }
}

.product-variation h5 {
    font-size: 20px;
    font-weight: 700;
    text-transform: capitalize;
    margin-bottom: 16px;
    margin-top: 0;
    color: #505D68;
}

.product-variation h5:not(:first-child) {
    margin-top: 32px;
}


.product-color-wrapper .color-item img {
    object-fit: cover;
    width: 100%;
    max-height: 90px;
    height: 100%;
}

.product-variation {
    width: 100%;
    padding-top: 20px;
    max-width: 514px;
}

@media (max-width: 1255px) {
    .product-variation {
        width: 100%;
        max-width: 100%;
        padding: 0 40px;
    }
}

@media (max-width: 768px) {
    .product-variation {
        padding: 0 15px;
    }
}


.quick-link-product-wrapper {
    display: flex;
    justify-content: center;
    width: 100%;
    margin-top: 25px;
    margin-bottom: 25px;
}
.quick-link-product:hover {
    color: white !important;
}

@media (max-width: 1255px) {
    .quick-link-product-wrapper {
        padding-top: 35px;
        padding-bottom: 30px;
    }
}

.quick-link-product {
    padding: 16px;
    background: #424B5A;
    text-decoration: none;
    color: white;
    font-size: 12px;
    font-weight: 300;
    height: fit-content;
    display: inline-block;
}

.product-variation .product-backing {
    display: flex;
    flex-wrap: wrap;
}


.product-variation .product-backing a {
    padding: 10px 16px;
    border: 1px solid #C6C0B7;
    font-size: 12px;
    font-weight: 300;
    text-decoration: none;
    cursor: pointer;
}

.product-variation .product-backing a:hover {
    color: white !important;
    background: rgba(124, 125, 127, 0.7);
}
.size-button:hover {
    color: white !important;
    background: rgba(124, 125, 127, 0.7);
}

.product-variation .product-backing a.active {
    border: 1px solid #C6C0B7;
    background: #7C7D7F;
    color: white !important;
}

#loader {
    display: block;
    position: absolute;
    left: 50%;
    top: 20%;
    width: 80px;
    height: 80px;
    transform: translateX(-50%);
    border-radius: 50%;
    border: 3px solid transparent;
    border-top-color: #9370DB;
    -webkit-animation: spin 2s linear infinite;
    animation: spin 2s linear infinite;
}

#loader:before {
    content: "";
    position: absolute;
    top: 5px;
    left: 5px;
    right: 5px;
    bottom: 5px;
    border-radius: 50%;
    border: 3px solid transparent;
    border-top-color: #BA55D3;
    -webkit-animation: spin 3s linear infinite;
    animation: spin 3s linear infinite;
}

#loader:after {
    content: "";
    position: absolute;
    top: 15px;
    left: 15px;
    right: 15px;
    bottom: 15px;
    border-radius: 50%;
    border: 3px solid transparent;
    border-top-color: #FF00FF;
    -webkit-animation: spin 1.5s linear infinite;
    animation: spin 1.5s linear infinite;
}

@-webkit-keyframes spin {
    0% {
        -webkit-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@keyframes spin {
    0% {
        -webkit-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

.article-link {
    text-decoration: none;
}

.article-post {
    display: flex;
    gap: 24px;
    border: 1px solid #C2D1D9;
    margin-bottom: 12px;
}

.article-post .article-post__content {
    padding-right: 15px;
}

@media (max-width: 500px) {
    .article-post {
        flex-wrap: wrap;
    }
}

.article-post h5 {
    margin-top: 24px;
    margin-bottom: 16px;
    font-size: 16px;
    font-weight: 400;
}

.article-post h3 {
    margin-top: 0;
    margin-bottom: 16px;
    font-size: 24px;
    font-weight: 700;
}

.article-post__image {
    max-width: 300px;
    height: 300px;
}

@media (max-width: 500px) {
    .article-post__image {
        max-width: 100%;
        width: 100%;
    }
}

.article-post__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.article-post__content .author-and-date {
    font-size: 16px;
    font-weight: 400;
    color: #505D68;
}

.article-post__content p {
    max-width: 428px;
    font-size: 16px;
    font-weight: 400;
    padding-right: 52px;
}

@media (max-width: 500px) {
    .article-post__content {
        padding-left: 15px;
        padding-right: 15px;
    }
}


/* CSS below is for product detail page */
.thb-breadcrumb-bar {
    margin-bottom: 10px !important;
}

.thb-breadcrumb-bar.search {
    padding-left: 40px;
}

.disabled-product {
    pointer-events: none;
    opacity: 0.5;
    /* Optional: Add additional styles to convey disabled state */
    background-color: #f2f2f2;
    color: #999;
    cursor: not-allowed;
}

.splash-product {
    position: fixed;
    top: 38%;
    left: 22%;
    height: 125px;
    width: 420px;
    font-weight: 400;
    background-color: #fff;
    padding: 15px;
    border-radius: 5px;
}

.splash-product .splash-header-text {
    font-weight: 700;
    letter-spacing: 0.14px;
}

.splash-product p {
    font-size: 14px;
    line-height: 22px;
    letter-spacing: 1px;
}

.splash-product a {
    font-weight: 900;
}

#product-detail-view {
    position: sticky;
    top: 75px;
    z-index: 10;
    background: #FFF;
    padding-bottom: 16px;
}

@media (max-width: 1067px) {
    #product-detail-view {
        top: 70px;
    }

    .splash-product {
        left: 1px;
    }
}

#product-detail-view .thb-breadcrumb-bar {
    border: none;
    margin-bottom: 0 !important;
    padding-bottom: 0;
}


.product-detail-nav {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
    gap: 30px;
    align-self: stretch;
    justify-content: space-between;
    margin-right: 50px;
}

.product-detail-nav h2 {
    color: #000;
    text-align: center;
    leading-trim: both;
    text-edge: cap;
    font-family: Berthold Akzidenz Grotesk;
    font-size: 30px;
    font-style: normal;
    font-weight: 300;
    line-height: 1.4;
    letter-spacing: 1px;
    margin-bottom: 0;
}

@media (max-width: 1067px) {
    .product-detail-nav {
        gap: 10px;
        margin-right: 0;
    }
}

.product-frame-1 {
    display: flex;
    align-items: flex-end;
    gap: 24px;
}

.product-buttons {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 24px;
}

.product-share {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
}

.product-share h5, .product-downloads h5 {
    color: #7C7D7F;
    text-align: center;
    font-family: Berthold Akzidenz Grotesk;
    font-size: 10px;
    font-style: normal;
    font-weight: 300;
    line-height: normal;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.product-downloads {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
}

.product-group-buttons {
    display: inline-flex;
    align-items: flex-start;
    gap: 8px;
}

.product-detail-button {
    display: flex;
    padding: 2px 16px 0px 2px;
    align-items: center;
    gap: 4px;
}

.product-detail-button-icon {
    display: flex;
    height: 12px;
    padding: 6px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #7c7d7f;
}

.product-detail-button-text {
    color: #000;
    text-align: center;
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: 1px;
}

@media (max-width: 768px) {
    .product-group-buttons {
        gap: 15px;
    }

    .product-detail-button {
        padding: 0;
        gap: 5px;
    }

    .product-buttons {
        gap: 10px;
    }
}

.product-gallery-wrapper span {
    color: black;
    text-align: center;
    font-size: 24px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}

.product-gallery-title {
    display: flex;
    align-items: center;
    align-self: stretch;
    padding-left: 15px;
    padding-bottom: 16px;
}

.product-coordinated-styles {
    padding: 40px 0px 40px;
    background: white;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 16px;
    display: flex;
    flex-wrap: wrap;
}

.product-coordinated-styles-header {
    align-self: stretch;
    justify-content: flex-start;
    align-items: center;
    display: inline-flex;
    flex: 1 1 100%;
    display: block;
}

.product-coordinated-styles-title {
    text-align: left;
    color: black;
    font-size: 24px;
    font-weight: 600;
    font-style: normal;
    word-wrap: break-word;
    line-height: normal;
}

.product-coordinated-style-items {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    align-content: flex-start;
    row-gap: 32px;
    align-self: stretch;
    flex-wrap: wrap;
}

.product-coordinated-style {
    align-self: stretch;
    justify-content: space-between;
    align-items: flex-start;
    display: inline-flex;
    border-style: solid;
    border-color: #C6C0B7;
    border-width: thin;
}

.product-coordinated-style-card {
    min-width: 243px;
    width: 100%;
}

.product-coordinated-style-info {
    padding: 20px;
}


.product-coordinated-style-image {
    padding-bottom: 75%;
    overflow: hidden;
    position: relative;
}

.product-coordinated-style-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    transform: scale(2);
}


.product-coordinated-style-name {
    color: black;
    font-size: 16px;
    font-weight: 700;
    line-height: 24px;
    word-wrap: break-word;
    margin-bottom: 10px;
}

.product-coordinated-style-color {
    align-self: stretch;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    display: flex;
}

.product-coordinated-style-color-title {
    color: #7C7D7F;
    font-size: 12px;
    font-weight: 300;
    word-wrap: break-word;
}

.product-coordinated-style-color-info {
    color: #7C7D7F;
    font-size: 12px;
    font-weight: 600;
    word-wrap: break-word;
}

@media (max-width: 1067px) {
    .product-coordinated-styles {
        padding: 20px 0;
    }
}

.slider-image-download {
    background-color: rgba(255, 255, 255, 0.6) !important;
    border-radius: 25px !important;
    border: 1px solid rgba(255, 255, 255, 0);
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 50;
    padding: 10px;
}

.slider-image-download span {
    display: block;
    position: relative;
    width: 15px;
    height: 15px;
}

.slider-image-download span:before {
    content: '';
    display: block;
    width: 1px;
    height: 100%;
    background: #5a5958;
    position: absolute;
    top: 0;
    left: 7px;
}

.slider-image-download span:after {
    content: '';
    display: block;
    width: 100%;
    height: 1px;
    background: #5a5958;
    position: absolute;
    top: 7px;
    left: 0;
}

.popup-slider-download-overlay {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: rgba(255, 255, 255, 0.95);
    width: 100%;
    height: 100%;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    align-content: center;
    justify-content: center;
    align-items: center;
}

.popup-slider-download {
    display: flex;
    flex-direction: column;
    align-content: center;
    align-items: center;
    max-height: 85%;
    max-width: 100%;
    margin: 50px;
    height: auto;
    width: 100%;
}

.popup-slider-download img {
    height: 100%;
}

.popup-slider-download-overlay .close-popup {
    position: relative;
    top: 0;
    left: 0;
    right: 0;
    cursor: pointer;
    font-size: 20px;
    color: #333;
    width: 100%;
    height: 35px;
    background-color: #fff;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.close-btn {
    position: relative;
    width: 30px;
    height: 30px;
    cursor: pointer;
    padding: 50px;
}

.close-btn::before,
.close-btn::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 2px;
    background-color: #333;
    transform-origin: center;
}

.close-btn::before {
    transform: translate(-50%, -50%) rotate(45deg);
}

.close-btn::after {
    transform: translate(-50%, -50%) rotate(-45deg);
}

.popup-slider-download .image-info {
    text-align: center;
    margin-top: 20px;
}

.popup-slider-download .download-link {
    display: inline-flex;
    gap: 10px;
    text-align: center;
    font-size: 18px;
    padding: 15px;
    line-height: 20px;
    color: #272525;
    border: 1px solid #272525;
    margin: 10px 30px;
    width: 100%;
    align-items: center;
    justify-content: center;
    max-width: 900px;
}

.popup-slider-download .download-link:after {
    content: '\f56d';
    font-family: 'Font Awesome 6 Free';
    font-weight: 700;
    font-size: 25px;
    color: #6d6d6d;
}

.product-slider-image {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    position: relative;
}

.product-slider-image .product-slider-image-wrapper {
    position: sticky;
    top: 180px;
    left: 0;
}

.product-slider-image .image {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    flex: 0 0 auto;
    box-shadow: var(--selected);
}

.product-slider-image .product-gallery {
    padding-top: 0;
    position: sticky;
    top: 0;
}

.product-slider-image .product-slider-thumbnails {
    display: flex;
    flex-wrap: wrap;
    max-width: 740px;
    align-items: flex-start;
    gap: 40px;
    padding: 16px;
    position: relative;
    flex: 0 0 auto;
    background-color: #ffffff;
    justify-content: space-between;
    width: 100%;
}

.product-slider-image .thumbnails {
    display: inline-flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
    position: relative;
    flex: 0 0 auto;
    list-style-type: none;
    margin-left: 0;
    margin-bottom: 0;
}

.product-slider-thumbnails .thumbnails li:hover {
    cursor: pointer;
}

.product-slider-image .image-wrapper {
    border-color: #c6c0b7;
    position: relative;
    width: 74px;
    height: 74px;
    margin-top: -2px;
    margin-bottom: -2px;
    border: 2px solid;
}

.product-slider-image .thumbnails-wrapper {
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    gap: 16px;
    position: relative;
    flex: 1;
    align-self: stretch;
    flex-grow: 1;
}

.product-slider-image .view-options {
    display: inline-flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 8px;
    position: relative;
    flex: 0 0 auto;
}

.product-slider-image .text-wrapper {
    position: relative;
    width: fit-content;
    margin-top: -1px;
    font-weight: 300;
    color: #000;
    font-size: 10px;
    text-align: center;
    letter-spacing: 1px;
    line-height: normal;
    white-space: nowrap;
}

.product-slider-image .buttons-wrapper {
    display: inline-flex;
    align-items: center;
    justify-content: flex-end;
    gap: 8px;
    position: relative;
    flex: 0 0 auto;
}

.product-slider-image .button-view-option {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 2px 16px 2px 2px;
    position: relative;
    flex: 0 0 auto;
    background-color: #ffffff;
    border: 1px solid;
    border-color: #000;
}

.product-slider-image .button-icon {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 6px;
    position: relative;
    flex: 0 0 auto;
    background-color: #ffffffb2;
    border-radius: 1px;
    color: #7c7d7f;
}

.product-slider-image .text-wrapper-2 {
    position: relative;
    width: fit-content;
    font-weight: 400;
    color: #000;
    font-size: 14px;
    text-align: center;
    letter-spacing: 1px;
    line-height: normal;
    white-space: nowrap;
}

.product-slider-image .product-substainability {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    padding: 16px 16px;
    position: relative;
    align-self: stretch;
    max-width: 740px;
    flex: 0 0 auto;
}

.product-slider-image .sub-header-wrapper {
    display: flex;
    align-items: center;
    position: relative;
    align-self: stretch;
    width: 100%;
    flex: 0 0 auto;
}

.product-slider-image .sub-header {
    position: relative;
    width: fit-content;
    margin-top: -1px;
    font-family: "Berthold Akzidenz Grotesk-Medium", Helvetica;
    font-weight: 500;
    color: #000000;
    font-size: 16px;
    text-align: center;
    letter-spacing: -0.32px;
    line-height: normal;
    white-space: nowrap;
}

.product-slider-image .for-current-GWP {
    position: relative;
    align-self: stretch;
    font-family: "Berthold Akzidenz Grotesk-Regular", Helvetica;
    font-weight: 400;
    color: #0c121c;
    font-size: 12px;
    letter-spacing: 0;
    line-height: 16px;
}

.product-slider-image .for-current-GWP .span {
    color: #000000;
}

.bms-product-row {
    padding-top: 26px !important;
}

.thb-product-main-row.bms-product-row {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
}

.thb-product-main-row .product-variation {
    max-width: 100%;
    width: 45%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 40px;
    flex: 1 0 35%;
}

.thb-product-main-row .product-size {
    gap: 0px;
}

.thb-product-main-row .product-size .size-button {
    min-width: 125px;
}

.thb-product-main-row .product-variation .product-color-wrapper .color-image-wrapper {
    height: 80px;
}

.thb-product-main-row .product-variation .product-size {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
}

.thb-product-main-row .product-variation .size-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: row;
    width: 100%;
    gap: 10px
}

@media (max-width: 1255px) {
    .thb-product-main-row.bms-product-row {
        justify-content: center;
    }

    .thb-product-main-row .product-variation {
        gap: 25px;
        flex: 1 0 100%;
        padding: 0;
    }

    .thb-product-main-row.bms-product-row {
        margin-bottom: 20px !important;
    }

    .product-slider-image .product-slider-thumbnails {
        gap: 20px;
    }
}

@media (max-width: 768px) {

    .thb-product-main-row.bms-product-row {
        margin-bottom: 20px !important;
    }

    .product-variation .size-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        align-self: stretch;
    }

    .product-variation .size-header .check-box {
        display: flex;
        align-items: center;
        gap: 4px;
        margin-bottom: 0;
    }

    .prod-gallery .brick img {
        padding: 0 !important;
    }

    .product-slider-image .thumbnails-wrapper {
        justify-content: flex-start;
    }
}

.product-variation .size-wrapper, .product-variation .backing-wrapper {
    display: flex;
    align-items: flex-start;
    flex-wrap: wrap;
    width: 100%;
}

.product-variation .attr-section {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    position: relative;
    align-self: stretch;
    width: 100%;
    flex: 0 0 auto;
    gap: 8px;
}

.product-variation .attr-header {
    display: flex;
    align-items: center;
    position: relative;
    align-self: stretch;
    width: 100%;
    color: #000;
}

.product-variation .attr-wrapper {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px 8px;
    align-self: stretch;
    width: 100%;
    position: relative;
    flex: 0 0 auto;
}

.product-variation .attr-btn {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 0px 0px 8px;
    background-color: #ffffff;
    position: relative;
    flex: 0 0 auto;
    box-sizing: border-box;
    cursor: pointer;
    border-bottom: 4px solid transparent;
}

.product-variation .attr-img {
    position: relative;
    height: 93px;
    max-width: 93px;
}

.product-variation .attr-name {
    color: #7c7d7f;
    line-height: normal;
    position: relative;
    width: fit-content;
    font-weight: 500;
    font-size: 12px;
    letter-spacing: 0;
    white-space: nowrap;
}

.product-variation .attr-name.name {
    font-weight: bold !important;
}

.product-variation .attr-img img {
    object-fit: cover;
    width: 100%;
    height: 100%;
}

.product-variation .inactive-installation {
    opacity: .4;
}

.product-variation .active-selection {
    background-color: #7c7d7f;
    color: #FFFFFF;
}

.product-variation .active-color {
    border-bottom-width: 4px;
    border-bottom-style: solid;
    border-color: #7c7d7f;
    box-shadow: var(--selected);
}

.product-variation .active-color .attr-name, .product-variation .active-installation .attr-name {
    color: #000;
}

.product-variation .active-installation {
    opacity: inherit;
    border-bottom-width: 4px;
    border-bottom-style: solid;
    border-color: #7c7d7f;
    box-shadow: var(--selected);
}

.product-variation button:hover {
    opacity: inherit;
    border-bottom-width: 4px;
    border-bottom-style: solid;
    border-color: #7c7d7f;
    box-shadow: var(--selected);
}

.product-variation .swatch-color-button {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 0px 0px 8px;
    background-color: #ffffff;
    position: relative;
    flex: 0 0 auto;
    box-sizing: border-box;
    cursor: pointer;
}

.swatch-color-button.color {
    display: flex;
    flex-direction: column;
    justify-content: end;
    position: relative;
    max-width: 90px;
    width: 100%;
    text-align: center;
    cursor: pointer;
}

.product-variation .swatch-color-button .eye {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 6px 7px;
    position: relative;
    flex: 0 0 auto;
    border-radius: 1px;
}

.product-variation .swatch-color-button .icon {
    position: relative;
    width: fit-content;
    margin-top: -2px;
    font-family: "Font Awesome 6 Free-Solid", Helvetica;
    font-weight: 400;
    color: #7c7d7f;
    font-size: 40px;
    text-align: center;
    letter-spacing: 0;
    line-height: normal;
    white-space: nowrap;
}

.thb-product-main-row .quick-modal {
    max-width: 562px;
    max-height: 80vh;
    overflow-y: scroll;
    top: 50%;
    left: 50%;
    bottom: unset;
    right: unset;
    transform: translate(-50%, -50%);
    padding-top: 0;
    min-height: unset;
}

.thb-product-main-row .quick-modal .close-button {
    top: 0;
    background-color: #fff;
    width: 100%;
    z-index: 9;
    padding: 25px 15px 5px;
}

.thb-product-main-row .quick-modal .product-variation {
    width: inherit;
    padding: 0px 16px 16px 16px;
    gap: 0;
}

.thb-product-main-row .quick-modal .product-variation h5 {
    color: #000;
    text-align: center;
    font-family: Berthold Akzidenz Grotesk;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 1.2;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 0;
}

.thb-product-main-row .quick-modal .product-variation h3 {
    color: #000;
    font-family: Berthold Akzidenz Grotesk;
    font-size: 30px;
    font-style: normal;
    font-weight: 300;
    line-height: 1.4;
    letter-spacing: 1px;
    margin-bottom: 24px;
}

.thb-product-main-row .quick-modal .quick-modal-search-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    position: relative;
    margin: 0 auto;
}

.thb-product-main-row .quick-modal .product-color-wrapper {
    justify-content: center;
}

.thb-product-main-row .quick-modal .color-search {
    width: 302px;
    padding: 16px 24px;
    position: relative;
    background-color: #5a5958;
    border: none;
    font-family: "Berthold Akzidenz Grotesk-Regular", Helvetica;
    font-weight: 400;
    color: #dbd7d5;
    font-size: 16px;
    letter-spacing: 0;
    line-height: 18px;
    white-space: nowrap;
}

.thb-product-main-row .quick-modal .color-search::placeholder {
    font-family: "Berthold Akzidenz Grotesk-Regular", Helvetica;
    font-weight: 400;
    color: #dbd7d5;
    font-size: 16px;
    letter-spacing: 0;
    line-height: 18px;
    white-space: nowrap;
}

.product-availability {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    width: 100%;
}

.product-availability table, .product-availability tbody, .product-availability tr, .product-availability td, .product-availability th {
    border: none;
    text-align: left;
}

.product-availability table th {
    color: #000;
    leading-trim: both;
    text-edge: cap;
    font-size: 12px;
    font-style: normal;
    font-weight: 300;
    line-height: 16px; /* 133.333% */
    border-right: 1px solid #C6C0B7;
    padding-bottom: 0;;
}

.product-availability table td {
    color: #000;
    leading-trim: both;
    text-edge: cap;
    font-size: 12px;
    font-style: normal;
    font-weight: bold;
    line-height: 16px;
    border-right: 1px solid #C6C0B7;
    padding-top: 5px;
}

.product-availability table th:last-child,
.product-availability table td:last-child {
    border-right: none;
}

.link-cart {
    padding: 11px 24px;
    background: #000000;
    color: white;
    font-size: 12px;
    text-decoration: none;
    bottom: 24px;
    text-align: center;
    border-radius: 40px;
    letter-spacing: 2px;
}

.link-cart:hover {
    cursor: pointer;
}

@media (max-width: 1400px) {
    .link-cart {
        padding: 16px 16px;
        margin-top: 8px;
        display: inline-block;
        position: unset;
        margin-bottom: 8px;
    }
}

@media (max-width: 500px) {
    .link-cart {
        width: 100%;
        margin-bottom: 8px;
    }
}

/* Product Gallery Brick Flexbox */
.prod-gallery {
    display: flex;
    flex-wrap: wrap;
}

.prod-gallery .brick .brick-modal-open {
    background-color: rgba(255, 255, 255, 0.6) !important;
    border-radius: 25px !important;
    position: absolute;
    top: 20px;
    right: 30px;
    z-index: 50;
    padding: 10px;
    transition: all 0.3s;
    border: 1px solid rgba(255, 255, 255, 0);
}

.prod-gallery .brick .brick-modal-open span {
    display: block;
    position: relative;
    width: 15px;
    height: 15px;
}

.prod-gallery .brick .brick-modal-open span:before {
    content: '';
    display: block;
    width: 1px;
    height: 100%;
    background: #5a5958;
    position: absolute;
    top: 0;
    left: 7px;
}

.prod-gallery .brick .brick-modal-open span:after {
    content: '';
    display: block;
    width: 100%;
    height: 1px;
    background: #5a5958;
    position: absolute;
    top: 7px;
    left: 0;
}

.prod-gallery .brick {
    margin-bottom: 30px;
    text-align: center;
    flex: 1 0 auto;
    position: relative;
}

.prod-gallery .brick:hover .brick-modal-open {
    border: 1px solid white;
}

.prod-gallery .brick img {
    padding: 0 15px;
    max-height: 475px;
    max-width: 855px;
    width: 100%;
    object-fit: cover;
}

@media screen and (max-width: 991px) {
    .brick {
        width: 100%;
    }
}

:root {
    --gravyfa6-md-gravy: rgba(137, 145, 166, 1);
    --btn-label-font-family: "BertholdAkzidenz Grotesk-Medium", Helvetica;
    --btn-label-font-weight: 500;
    --btn-label-font-size: 12px;
    --btn-label-letter-spacing: 0px;
    --btn-label-line-height: 24px;
    --btn-label-font-style: normal;
    --selected: 0px 4px 12px 0px rgba(162, 157, 151, 0.25);
}


/* Account */
.woocommerce-account.logged-in,
.woocommerce-container {
    max-width: 1390px;
    width: 100%;
    padding: 0 50px;
    margin: 40px auto 0;
}

.woocommerce-ResetPassword .input-text {
    min-width: 100% !important;
}

.password-input {
    position: relative;
    margin-bottom: 20px;
    display: block;
}

.password-input input {
    margin-bottom: 0 !important;
}

.show-password-input {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
}

.show-password-input:before {
    content: '\f070';
    font-family: 'Font Awesome 6 Free';
    display: block;
}

.woocommerce-message {
    list-style: none;
}

.woocommerce-EditAccountForm .password-allert,
.thb-register-form .password-allert,
.create-account .password-allert,
.lost_reset_password .password-allert {
    display: none;
}

.woocommerce-EditAccountForm .woocommerce-password-strength,
.create-account .woocommerce-password-strength,
.lost_reset_password .woocommerce-password-strength {
    display: flex;
    margin: 4px 0 0;
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    line-height: 1;
    padding: 12px 16px;
    background: #ffdada;
    color: #e43737;
}

.woocommerce-EditAccountForm .woocommerce-password-hint,
.create-account .woocommerce-password-hint,
.lost_reset_password .woocommerce-password-hint {
    margin: 10px 0;
    display: block;
    font-size: 12px;
    font-weight: 500;
}

.woocommerce-EditAccountForm .woocommerce-password-strength.medium, .woocommerce-EditAccountForm .woocommerce-password-strength.good,
.create-account .woocommerce-password-strength.medium, .create-account .woocommerce-password-strength.good,
.lost_reset_password .woocommerce-password-strength.medium, .lost_reset_password .woocommerce-password-strength.good {
    background: #d8fcda;
    color: #15a93b;
}

/* Checkout */
.woocommerce-form-login-checkout .form-row-first input,
.woocommerce-form-login-checkout .form-row-last input,
.woocommerce-form-login-checkout .form-row-last .password-input {
    display: block;
    width: 100%;
}

.woocommerce-form-login-checkout .form-row-last .password-input {
    margin-bottom: 0;
}

.woocommerce-form-login-checkout input[type="checkbox"] {
    width: 13px;
    height: 13px;
}

.woocommerce-form-login-checkout {
    display: none;
}