.search-page {
    min-height: 54.9vh;
}

.breadcrumb-part {
    width: 100%;
}

.breadcrumb-part .breadcrumb {
    padding: 0 !important;
}

.no-result-search {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.no-result-search h3,
.no-result-search .call-h3 span,
.get-a-quote {
    color: #101828;
    text-align: center;
    font-family: 'Inter', sans-serif;
    font-size: 24px;
    font-style: normal;
    font-weight: 600;
    line-height: 32px;
    margin: 0;
    margin-bottom: 32px;
}

.no-result-search img {
    max-width: 128px;
    max-height: 128px;
    width: 100%;
    height: 100%;
}

.call-h3 {
    text-align: center;
    margin-bottom: 0;
}

.call-h3 p {
    margin: 0;
}

.no-result-search .call-h3 span,
.no-result-search .call-h3 span a {
    color: #ED1C24;
    font-size: 16px;
    line-height: 24px;
}

.search-results-filter {
    display: flex;
    align-items: flex-start;
    gap: 24px;
    align-self: stretch;
}

.filter-desktop {
    display: flex;
    width: 300px;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
}

@media screen and (min-width: 901px) {
    .filter-desktop {
        position: sticky;
        top: 175px;
        max-height: calc(100% - 51px);
        overflow-y: auto;
        padding-right: 6px;
    }
}

.filter-desktop form {
    width: 100%;
}

.filter-title-part {
    width: 100%;
    display: flex;
    padding: 8px 12px;
    justify-content: space-between;
    align-items: center;
    align-self: stretch;
    border-top: 0.5px solid #D2D5DB;
    border-right: 0.5px solid #D2D5DB;
    border-left: 0.5px solid #D2D5DB;
    background: #E5E7EA;
}

.filter-title-part.border-bottom {
    border-bottom: 0.5px solid #D2D5DB;
}

.filter-title-part h2 {
    color: #414651;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 20px;
    margin: 0;
}

.close-filter-bar {
    transition: transform 0.3s ease;
}

.close-filter-bar.rotated {
    transform: rotate(180deg);
}

.filter-results-section {
    display: flex;
    padding: 12px 8px;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 16px;
    align-self: stretch;
    border-right: 0.5px solid #D2D5DB;
    border-bottom: 0.5px solid #D2D5DB;
    border-left: 0.5px solid #D2D5DB;
}

.filter-results {
    width: 100%;
}

.filter-select {
    position: relative;
    width: 100%;
    max-width: 100%;
}

.filter-selected-item {
    position: relative;
    min-height: 32px;
    padding: 6px 36px 6px 16px;
    border: 1px solid #9EA2AE;
    background-color: white;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    letter-spacing: 0;
    color: #667085;
    background-repeat: no-repeat;
}

.filter-selected-item::after {
    content: "";
    position: absolute;
    right: 10px;
    top: 50%;
    width: 16px;
    height: 16px;
    background-image: url(../../images/frontend_images/subcategory-icons/chevron-down.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 16px;
    transform: translateY(-50%);
    transition: transform 0.2s ease;
}

.filter-selected-item.is-open::after {
    transform: translateY(-50%) rotate(180deg);
}

.filter-options {
    display: none;
    border: 1px solid #D2D5DB;
    border-top: 0;
    background: #FFFFFF;
    max-height: 260px;
    overflow-y: auto;
    padding: 8px 0;
}

.filter-options.is-open {
    display: block;
}

.filter-options::-webkit-scrollbar {
    width: 8px;
}

.filter-options::-webkit-scrollbar-track,
.filter-options::-webkit-scrollbar-corner {
    background: transparent;
}

.filter-options::-webkit-scrollbar-thumb {
    background: #E5E7EA;
    border-radius: 8px;
    min-height: 130px;
}

.filter-options::-webkit-scrollbar-button,
.filter-options::-webkit-scrollbar-button:single-button {
    display: none;
    width: 0;
    height: 0;
}

.filter-options p {
    padding: 10px 14px;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    letter-spacing: 0;
    color: #101828;
    cursor: pointer;
}

.filter-options p:hover {
    text-decoration: none !important;
    background: #F3F4F6;
}

.filter-button-bar {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    align-self: stretch;
}

.clear-filter-form,
.go-filter-form {
    text-transform: capitalize;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    flex: 1 0 0;
    height: 32px;
    padding: 8px 14px;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: 20px;
    border: 1px solid #D92D20;
    box-shadow: 0 1px 2px 0 rgba(10, 13, 18, 0.05);
}

.clear-filter-form {
    background: #FFF;
    color: #ED1C24;
}

.clear-filter-form:hover,
.clear-filter-form:active,
.clear-filter-form:visited,
.clear-filter-form:focus {
    text-decoration: none;
    color: #ED1C24;
}

.go-filter-form {
    background: #D92D20;
    color: #FFF;
}

.count-items p,
.count-items span,
.items-per-page-title,
.item-product-title-section .product-list-title,
.not-result {
    color: #101828;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
    margin: 0;
}

.not-result {
    color: #535B62 !important;
    font-size: 18px !important;
    line-height: 28px;
}

.not-result b,.not-result b a {
    color: #ED1C24;
    font-size: 20px;
    font-weight: 500;
    line-height: 30px;
}

.search-chip-part {
    width: 100%;
    display: flex;
    align-items: flex-start;
    align-content: flex-start;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 32px;
}

.search-chip-part.is-fixed {
    position: fixed;
    top: 126px;
    left: 50%;
    padding: 12px 0;
    transform: translateX(-49%);
    width: calc(100% - 51px);
    max-width: 1170px;
    z-index: 9;
    background: #fff;
    margin-bottom: 0;
}

.search-chip-part.is-swipeable {
    flex-wrap: nowrap;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

.search-chip-part.is-swipeable .search-chip {
    flex: 0 0 auto;
    white-space: nowrap;
}

.search-chip {
    display: flex;
    padding: 2px 12px;
    justify-content: center;
    align-items: center;
    border-radius: 16px;
    border: 0;
    background: #F8F9FC;
    color: #535B62;
    text-align: center;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 20px;
}

.search-chip.active-chip {
    background: #FFF2F2;
    color: #D12226;
}

.search-count-list {
    display: flex;
    width: 100%;
    height: 36px;
    justify-content: space-between;
    align-items: baseline;
}

.items-page-count,
.count-items {
    display: flex;
    width: 50%;
}

.count-items {
    gap: 8px;
}

.count-items p {
    color: #ED1C24;
    font-weight: 600;
}

.items-page-count {
    justify-content: end;
}

.per-page-part {
    display: flex;
    gap: 8px;
    align-items: baseline;
}

.btn-per-page {
    display: flex;
    height: 36px;
    padding: 0 16px;
    align-items: center;
    gap: 8px;
    color: #101828;
    border: 1px solid #ED1C24;
    background-color: #fff;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
}

.btn-per-page img {
    transform: rotate(180deg);
}

.open>.dropdown-menu {
    width: 100% !important;
    border-radius: 0;
}

.product-show-properties {
    width: 75%;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.product-no-result.product-no-result {
    width: 99%;
}

.items-section {
    margin-top: 16px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.item-product {
    display: flex;
    padding: 8px 0 8px 24px;
    align-items: flex-start;
    gap: 24px;
    align-self: stretch;
    border: 1px solid #E5E7EA;
    background: #FFF;
}

.item-product-image {
    display: flex;
    width: 176px;
    height: 150px;
    padding: 8px;
    justify-content: center;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}

.item-product-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.item-properties-section {
    display: flex;
    align-items: center;
    gap: 8px;
    flex: 1 0 0;
}

.border-product {
    width: 0.5px;
    height: -webkit-fill-available;
    background-color: #D2D5DB;
    border: none;
    margin: 0;
}

.item-product-title-section {
    width: 65%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    align-self: stretch;
}

.item-product-title-section .product-list-title {
    font-weight: 600;
    line-height: 24px;
}

.description-brand-part,
.brand-mpn-section {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.search-product-brand {
    display: flex;
    align-items: center;
    gap: 16px;
}

.search-product-brand span,
.search-product-brand p,
.search-product-brand a {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
    color: #101828;
}

.search-product-brand span {
    display: inline-block;
    width: 64px;
    color: #535B62;
}

.search-product-brand a {
    color: #1570EF;
    font-weight: 500;
    text-decoration: none;
}

.search-product-brand a:hover,
.search-product-brand a:visited,
.search-product-brand a:active {
    text-decoration: none;
    color: #1570EF;
}

.desctop-product-view-details a,
.mobile-view-details-search a {
    text-decoration: none;
    color: #D92D20;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 14px;
    line-height: 20px;
    letter-spacing: 0%;
}

.desctop-product-view-details a:hover,
.desctop-product-view-details a:focus,
.desctop-product-view-details a:visited,
.desctop-product-view-details a:active,
.mobile-view-details-search a:hover,
.mobile-view-details-search a:focus,
.mobile-view-details-search a:visited,
.mobile-view-details-search a:active {
    text-decoration: none;
    color: #D92D20;
}

.availibilty-part {
    width: 35%;
    display: flex;
    padding: 0 16px 16px 0;
    flex-direction: column;
    align-items: flex-end;
    justify-content: space-between;
    gap: 16px;
    align-self: stretch;
}

.availibilty-part .price-part {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
}

.hidden-product-brand {
    display: flex;
    justify-content: space-between;
    align-items: center;
    align-self: stretch;
}

.hidden-product-brand span,
.hidden-product-brand .t-black,
.hidden-product-brand .price-list,
.hidden-product-brand .t-green {
    color: #101828;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 20px;
}

.hidden-product-brand span {
    color: #535B62;
    font-weight: 400;
}

.hidden-product-brand .price-list {
    font-size: 18px;
    font-weight: 600;
    line-height: 28px;
}

.hidden-product-brand .t-green {
    color: #027A48;
}

.search-buttons-bar {
    display: flex;
    flex-direction: column;
    width: 100%;
    justify-content: flex-end;
    align-items: end;
    gap: 8px;
}

.search-buttons-bar .quantity-wrapper {
    display: flex;
    align-items: center;
}

.search-buttons-bar .quantity-wrapper button,
.add-btn-search {
    width: 28px;
    height: 28px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

.search-buttons-bar .quantity-wrapper button {
    gap: 9.333px;
    aspect-ratio: 1/1;
    background: #F7F7F7;
    border: 0;
}

.add-btn-search {
    display: flex;

    width: 106px;
    padding: 8px 14px;
    gap: 8px;
    border: 1px solid #D92D20;
    background: #ED1C24;
    box-shadow: 0 1px 2px 0 rgba(10, 13, 18, 0.05);
}

.search-buttons-bar .quantity-wrapper input {
    height: 28px !important;
    width: 37px;
    color: #0C1221;
    padding: 0;
    text-align: center;
    border: none;
    outline: none;
    border-radius: 0;
    box-shadow: none;
    background: transparent;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 14px;
    line-height: 20px;
    letter-spacing: 0;
    vertical-align: middle;
    color: #0C1221;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: textfield;
}

.search-buttons-bar .quantity-wrapper input::-webkit-outer-spin-button,
.search-buttons-bar .quantity-wrapper input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.add-btn-search:hover,
.add-btn-search:active,
.add-btn-search:focus,
.search-part-pagination .pagination-block .previous-button:hover,
.search-part-pagination .pagination-block .next-button:hover,
.search-part-pagination .pagination-block .previous-button:active,
.search-part-pagination .pagination-block .next-button:active,
.search-part-pagination .pagination-block .previous-button:focus,
.search-part-pagination .pagination-block .next-button:focus,
.pagination-numbers:hover,
.pagination-numbers:active,
.pagination-numbers:focus {
    text-decoration: none;
}

.add-btn-search span {
    color: #FFF;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: 20px;
}

.search-part-pagination {
    width: 100%;
    display: flex;
    padding-top: 20px;
    justify-content: space-between;
    align-items: center;
    align-self: stretch;
}

.pagination-block-section {
    width: 100%;
}

.search-part-pagination .pagination-block {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.search-part-pagination .pagination-block .previous-button {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    cursor: pointer;
}

.search-part-pagination .pagination-block .previous-button span,
.search-part-pagination .pagination-block .next-button span {
    color: #9EA2AE;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: 20px;
}

.search-part-pagination .pagination-block .previous-button.active span,
.search-part-pagination .pagination-block .next-button.active span {
    color: #535B62;
}

.pagination-number-block {
    display: flex;
    align-items: center;
    gap: 4px;
}

.pagination-numbers {
    display: flex;
    width: 40px;
    height: 40px;
    justify-content: center;
    align-items: center;
    border-radius: 8px;
}

.pagination-numbers span,
.brand-heading .brand-title,
.brand-heading .brand-description span,
.brand-heading h1 span {
    color: #717B80;
    font-family: 'Inter', sans-serif;
    font-size: 14px !important;
    font-style: normal;
    font-weight: 500;
    line-height: 20px;
}

.brand-heading .brand-title,
.brand-heading .brand-description span,
.brand-heading h1 span {
    color: #101828 !important;
    font-weight: 400;
    margin: 0;
}

.pagination-numbers.active {
    background: #FFF2F2;
}

.pagination-numbers.active span {
    color: #ED1C24;
}

.item-product-title-section.brand-part {
    width: 100%;
}

.brand-heading {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.brand-heading .brand-title,
.brand-heading .brand-description,
.brand-heading h1 span {
    color: #101828;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
    margin: 0;
}

.brand-heading h1 {
    margin: 0;
    display: inline-block;
    width: 65%;
}

.brand-heading h1 span,
.brand-heading h1 strong,
.brand-heading .brand-title {
    color: #535B62 !important;
    font-size: 16px;
    font-weight: 600;
    line-height: 24px;
    text-decoration: none;
    white-space: wrap;
}

.brand-heading .brand-title {
    width: 65%;
    text-align: left;
}

.brand-description-excerpt-spans {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 4;
    overflow: hidden;
    text-overflow: ellipsis;
    width: 100%;
    text-align: left;
}

.brand-section {
    position: relative;
}

.section-image {
    position: absolute;
    top: 0;
    right: 0;
}

.filter-results-section.is-collapsed,
.search-chip-part.is-swipeable::-webkit-scrollbar,
.pagination-number-block-mobile,
.mobile-view-details-search,
.mobile-text-previous {
    display: none;
}

.phone-image-svg {
    width: 32px !important;
    height: 32px !important;
    padding: 7px !important;
    border-width: 2px !important;
}

.search-page .phone-image-svg img {
    width: 100% !important;
}

.view-details-download-file-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    align-self: stretch;
}

.view-details-download-file-section .download-step-file-title-part {
    width: auto;
    display: flex;
    height: 36px;
    padding: 8px;
    justify-content: center;
    align-items: center;
    gap: 4px;
}

.download-step-file-title-part {
    width: 217px;
    background-color: #FEF3F2;
    border: 1px solid #FEF3F2;
    display: flex;
    gap: 16px;
    padding: 8px 14px;
    box-shadow: 0px 1px 2px 0px #0A0D120D;

}

.download-step-file-title-part a {
    text-decoration: none;
}

.download-step-file-title-part a:visited,
.download-step-file-title-part a:hover,
.download-step-file-title-part a:active,
.download-step-file-title-part a:focus {
    text-decoration: none;

}

.download-step-file-title {
    display: flex;
    gap: 4px;
}

.choose-item-part {
    display: flex;
    align-items: center;
    cursor: pointer;
}

.download-step-file-title span,
.download-step-file-title-part a span {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 14px;
    line-height: 20px;
    letter-spacing: 0;
    text-align: center;
    vertical-align: middle;
    color: #D92D20;
}

.dropdown-menu-files {
    background: #fff;
    border: 1px solid #E5E7EA;
    box-shadow: 0px 32px 64px -12px #0A0D1224;
    width: 100%;
    position: absolute;
    top: 91%;
    left: 0;
    margin-top: 5px;
    list-style: none;
    border-radius: 0;
    padding: 0;
    z-index: 55;
}

.dropdown-menu-files li {
    padding: 10px 16px;
}

.dropdown-menu-files li:not(:last-child) {
    border-bottom: 0.5px solid #9EA2AE;
}

.dropdown-menu-files li a {
    text-decoration: none;
    color: #000000;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 14px;
    line-height: 20px;
    letter-spacing: 0;
}

.dropdown-menu li a:hover {
    color: #007bff;
}

.mobile-old-view.download-step-file-title-part {
    display: none;
}

.request-form-title {
    margin: 0 0 24px !important;
}

.form-group-textarea,
.file-bar-quantity,
.form-group-recaptcha-send {
    width: 98% !important;
}

.file-bar-quantity {
    margin-bottom: 16px;
}

@media screen and (min-width: 768px) and (max-width:1200px) {

    .search-product-description,
    .brand-description {
        display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 2;
        overflow: hidden;
        text-overflow: ellipsis;
        max-height: none;
        white-space: normal;
    }

    .brand-description {
        -webkit-line-clamp: 3;
    }
}

@media screen and (min-width: 768px) and (max-width:900px) {
    .item-product-image {
        width: 90px;
        height: 140px;
    }

    .filter-desktop {
        display: none;
    }

    .product-show-properties {
        width: 100%;
    }
}

@media screen and (max-width: 768px) {
    .search-chip-part.is-fixed {
        top: 160px;
        padding: 12px 8px;
        width: 100%;
    }

    .breadcrumb-part {
        margin-bottom: 18px;
    }

    .search-chip {
        padding: 8px 12px;
    }

    .dropdown-backdrop,
    .border-product,
    .desctop-product-view-details.product-details,
    .pagination-number-block-desktop,
    .desctop-text-previous {
        display: none;
    }

    .product-show-properties {
        width: 100%;
    }

    .search-count-list {
        height: auto;
    }

    .count-items {
        flex-direction: column-reverse;
    }

    .items-page-count .per-page-part {
        flex-direction: column;
        align-items: end;
    }

    .brand-mpn-section {
        height: auto;
        flex-direction: column-reverse;
    }

    .view-details-download-file-section {
        display: none;
    }

    .brand-heading h1 {
        width: 100%;
        text-align: left !important;
    }

    .btn-per-page {
        height: 28px;
    }

    .item-product {
        flex-direction: column;
        padding: 8px 12px;
        align-items: center;
        gap: 8px;
    }

    .item-product-image {
        width: 150px;
        height: auto;
        padding: 6px;
    }

    .brand-section .item-product-image {
        height: 90px;
    }

    .item-properties-section {
        width: 100%;
        flex-direction: column;
    }

    .item-product-title-section {
        width: 100%;
        gap: 16px;
    }

    .availibilty-part {
        width: 100%;
        padding: 0;
    }

    .description-brand-part {
        width: 100%;
        flex-direction: column-reverse;
        gap: 16px;
    }

    .desctop-product-view-details {
        width: 100%;
        display: flex;
        justify-content: end;
    }

    .availibilty-part .price-part {
        flex-direction: column-reverse;
    }

    .search-product-brand {
        justify-content: space-between;
    }

    .mobile-view-details-search,
    .mobile-text-previous {
        display: block;
    }

    .pagination-number-block-mobile {
        display: flex;
    }

    .search-part-pagination .pagination-block {
        gap: 8px;
    }

    .search-buttons-bar {
        flex-direction: row;
    }

    #search-mobile {
        padding-top: 32px !important;
    }

    #search-mobile .filter-title-part {
        justify-content: space-between;
        margin-bottom: 8px;
    }

    #search-mobile .filter-mobile-section {
        display: flex;
        flex-direction: column;
        gap: 8px;
    }

    .search-page .form-group-recaptcha-send .g-recaptcha {
        transform: scale(1.12) !important;
        margin-left: 18px !important;
    }

    .view-details-download-file-section .download-step-file-title-part {
        display: none;
    }

    .mobile-old-view.download-step-file-title-part {
        display: flex;
        margin-bottom: 0;
    }

    .not-result {
        text-align: left !important;
        padding: 0 !important;
    }

    .no-result-search h3{
        margin-bottom: 24px;
    }
}