.lsc-search-container {
    position: relative;
    line-height: 100%;
    display: block;
    color: #444;
    width: 100%;
    text-align: left;
    margin: 0 auto;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

.lsc-searchbar-wrapper {
    position: relative;
    width: 100%;
}

.lsc-searchbar-wrapper * {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

.lsc-search-desktop-form {
    margin: 0;
    padding: 0;
    width: 100%;
}

.lsc-sf-wrapp {
    position: relative;
    width: 100%;
    margin: 0;
    max-width: 100vw;
}

.lsc-sf-wrapp:before,
.lsc-sf-wrapp:after {
    content: "";
    display: table;
}

.lsc-sf-wrapp:after {
    clear: both;
}

.lsc-search-desktop-input {
    -webkit-transition: none;
    -moz-transition: none;
    -ms-transition: none;
    -o-transition: none;
    transition: none;
    -webkit-box-shadow: none;
    box-shadow: none;
    margin: 0;
    appearance: textfield;
    -webkit-appearance: textfield;
    text-align: left;
    width: 100%;
    max-width: 230px;
    height: 40px;
    font-size: 14px;
    line-height: 100%;
    padding: 10px 15px;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 20px;
    -webkit-border-radius: 20px;
}

.lsc-search-desktop-input:focus {
    outline: 0;
    background: #fff;
    box-shadow: 0 0 9px 1px rgba(0, 0, 0, 0.06);
    -webkit-transition: 150ms ease-in;
    -moz-transition: 150ms ease-in;
    -ms-transition: 150ms ease-in;
    -o-transition: 150ms ease-in;
    transition: 150ms ease-in;
}

.lsc-search-desktop-input::placeholder {
    color: #999;
    font-weight: 400;
    font-style: italic;
    line-height: normal;
}

.lsc-search-desktop-input::-webkit-input-placeholder {
    color: #999;
    font-weight: 400;
    font-style: italic;
    line-height: normal;
}

.lsc-search-desktop-input:-moz-placeholder {
    color: #999;
    font-weight: 400;
    font-style: italic;
    line-height: normal;
}

.lsc-search-desktop-input::-moz-placeholder {
    color: #999;
    font-weight: 400;
    font-style: italic;
    line-height: normal;
}

.lsc-search-desktop-input:-ms-input-placeholder {
    color: #999;
    font-weight: 400;
    font-style: italic;
    line-height: normal;
}

/* Remove default clear button */
[type=search].lsc-search-desktop-input::-ms-clear {
    display: none;
}

[type=search].lsc-search-desktop-input::-webkit-search-decoration {
    -webkit-appearance: none;
}

[type=search].lsc-search-desktop-input::-webkit-search-cancel-button {
    display: none;
}

.lsc-search-submit {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0px 20px 20px 0px !important;
    background-color: #0A678C !important;
    overflow: visible;
    position: absolute;
    border: 0;
    padding: 0 15px;
    margin: 0;
    cursor: pointer;
    height: 40px;
    min-width: 50px;
    width: auto;
    line-height: 100%;
    min-height: 100%;
    right: 0;
    left: auto;
    top: 0;
    bottom: auto;
    color: #fff;
    -webkit-transition: 250ms ease-in-out;
    -moz-transition: 250ms ease-in-out;
    -ms-transition: 250ms ease-in-out;
    -o-transition: 250ms ease-in-out;
    transition: 250ms ease-in-out;
    text-transform: uppercase;
    background-color: #333;
    border-radius: 0 2px 2px 0;
    -webkit-border-radius: 0 2px 2px 0;
    text-shadow: 0 -1px 0 rgba(0,0,0,.3);
    -webkit-box-shadow: none;
    box-shadow: none;
    appearance: none;
    -webkit-appearance: none;
}

.lsc-search-submit:hover {
    opacity: 0.7;
}

.lsc-search-submit:active,
.lsc-search-submit:focus {
    opacity: 0.7;
    outline: 0;
}

.lsc-ico-magnifier {
    display: block;
    width: auto;
    margin: auto;
    max-width: 20px;
    bottom: 0;
    left: 0;
    margin: auto;
    position: absolute;
    right: 0;
    top: 0;
    height: 65%;
}

.lsc-ico-magnifier path {
    fill: #fff;
}

.lsc-preloader {
    height: 100%;
    position: absolute;
    right: 50px;
    top: 0;
    width: 40px;
    z-index: 10;
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: auto 44%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lsc-preloader.lsc-loading {
    display: flex;
    align-items: center;
    justify-content: center;
}

.lsc-preloader-spinner {
    width: 20px;
    height: 20px;
    border: 2px solid #ddd;
    border-top: 2px solid #0a678ca3;
    border-radius: 50%;
    animation: lsc-spin 1s linear infinite;
}

@keyframes lsc-spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.lsc-loader-circular {
    height: 24px;
    width: 24px;
    -webkit-animation: 2s linear infinite rotate;
    -moz-animation: 2s linear infinite rotate;
    animation: 2s linear infinite rotate;
}

.lsc-loader-circular-path {
    fill: transparent;
    stroke-linecap: round;
    stroke-width: 4px;
    stroke-dasharray: 1,200;
    stroke-dashoffset: 0;
    -webkit-transform-origin: 50% 50%;
    -moz-transform-origin: 50% 50%;
    -ms-transform-origin: 50% 50%;
    transform-origin: 50% 50%;
    -webkit-animation: 1s ease-in-out infinite dash;
    -moz-animation: 1s ease-in-out infinite dash;
    animation: 1s ease-in-out infinite dash;
    stroke: #ddd;
}

.lsc-dropdown-container {
    position: absolute;
    top: 100%;
    right: 0;
    display: flex;
    flex-direction: row;
    width: 530px;
    min-height: 500px;
    height: auto;
    z-index: 999999998;
    margin-top: -1px;
}

/*
.lsc-dropdown-container.lsc-open {
    display: flex;
}*/

.lsc-suggestions-desktop-wrapp {
    background: #fff;
    position: relative;
    padding: 0;
    margin: 0;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    overflow-y: auto;
    flex: 0 0 230px;
    width: 230px;
    border-left: 1px solid #ddd;
    border-radius: 8px 3px 3px 0;
    border: 1px solid #eee;
    box-shadow: 6px 5px 10px -4px rgba(0, 0, 0, 0.1);
}

.lsc-suggestions-desktop-wrapp > h4 {
    margin: 12px 8px 4px;
    border-bottom: solid 1px #eee;
    padding-bottom: 6px;
    text-transform: uppercase;
    font-size: 14px;
    color: #444;
}

.lsc-suggestions-desktop-wrapp::-webkit-scrollbar {
    width: 6px;
}

.lsc-suggestions-desktop-wrapp::-webkit-scrollbar-track {
    background: #f1f1f1;
}

.lsc-suggestions-desktop-wrapp::-webkit-scrollbar-thumb {
    background: #ddd;
    border-radius: 3px;
}

.lsc-suggestions-desktop-wrapp::-webkit-scrollbar-thumb:hover {
    background: #ccc;
}

.lsc-suggestion {
    cursor: pointer;
    font-size: 12px;
    line-height: 110%;
    text-align: left;
    padding: 8px 10px;
    position: relative;
    border-bottom: 1px solid #dfdfdf;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    transition: background-color 150ms ease-in-out;
    text-decoration: none;
    color: #333;
}

.lsc-suggestion:hover {
    background-color: #f5f5f5;
    color: #333;
}

.lsc-suggestion-selected {
    background-color: #eee;
}

.lsc-suggestion:last-child {
    border-bottom: none;
}

.lsc-suggestion-empty {
    padding: 15px;
    text-align: center;
    color: #999;
    font-size: 13px;
}

/* Product Suggestion */

.lsc-suggestion-product {
    border: none;
    min-height: 40px;
    padding-top: 8px;
    padding-bottom: 8px;
}

.lsc-suggestion-image {
    width: 30px;
    height: 30px;
    flex-shrink: 0;
    margin-right: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f9f9f9;
    border: 1px solid #e8e8e8;
    border-radius: 3px;
    overflow: hidden;
}

.lsc-product-thumb {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    display: block;
}

.lsc-suggestion-content {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-width: 0;
}

.lsc-suggestion-title {
    font-weight: 500;
    display: block;
    color: #444;
    font-size: 15px;
    width: 100%;
    line-height: 110%;
    margin-bottom: 0;
}

.lsc-sku {
    font-size: 10px;
    color: #999;
    line-height: 100%;
    margin: 0 0 4px 0;
}

.lsc-desc {
    font-size: 11px;
    color: #777;
    line-height: 130%;
    margin: 0;
    display: -webkit-box;
    line-clamp: 2;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.lsc-price {
    font-size: 11px;
    color: #000;
    font-weight: 600;
    margin-top: 4px;
}

/* More Results */

.lsc-suggestion-more {
    justify-content: center;
    min-height: 35px;
    padding: 10px;
    color: #6d6d6d;
    font-weight: 500;
    text-transform: uppercase;
    position: relative;
    bottom: 0;
}

.lsc-more-text {
    font-size: 12px;
    text-align: center;
    width: 100%;
}

.lsc-details-wrapp {
    background: #fff;
    padding: 0;
    width: 300px;
    flex: 0 0 300px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    overflow-y: auto;
    border-radius: 3px 8px 0 3px;
    margin: 0;
    border: solid 1px #eee;
    border-right: none;
    border-left: none;
    box-shadow: -6px 5px 10px -4px rgba(0, 0, 0, 0.1);
}

.lsc-details-wrapp > div.post {
    height: auto;
    max-width: 100%;
    padding: 0;
    margin-bottom: 0;
}

.lsc-details-wrapp > .post a:hover .post--blurb-wrap {
    box-shadow: none!important;
}

.lsc-details-wrapp .post--blurb-wrap {
    background: unset;
    padding: 12px 16px;
}

.lsc-details-wrapp .post--blurb-wrap h3 {
    color: #333;
    display: block;
    line-height: 120%;
    margin: 10px 0 0;
    margin-bottom: 0px;
    font-size: 21px;
    font-weight: 400;
    text-decoration: none;
    text-transform: none;
}

.lsc-details-wrapp .post--blurb-wrap .categories {
    display: none;
}

.lsc-details-wrapp .lsc-detail-description {
    margin: 0 16px;
    font-size: 13px;
    line-height: 157%;
    color: #000;
    font-weight: 300;
    padding-top: 16px;
    padding-bottom: 16px;
    border-bottom: solid 1px #eee;
    text-align: left;
}

.lsc-details-wrapp .lsc-detail-continue {
    display: block;
    text-align: right;
    margin: 15px 16px;
    color: #6d6d6d;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 400;
    font-size: 12px;
}

.lsc-details-wrapp > li {
    padding: 0 16px;
    box-shadow: none!important;
    border-radius: 0!important;
}

.lsc-details-wrapp > li > a {
    cursor: unset;
}

.lsc-details-wrapp > li > a > img {
    border-bottom: solid 1px #eee;
}

.lsc-details-wrapp > li > a > h2 {
    display: block;
    line-height: 120%;
    margin: 10px 0 0;
    font-size: 21px;
    font-weight: 400;
    text-decoration: none;
    text-transform: none;
    color: #0a678c !important;
    text-align: left;
    cursor: pointer;
}

.lsc-details-wrapp .lsc-sign-in-for-price {
    display: block;
    max-width: 174px;
    text-align: center;
    width: auto;
    color: #fff;
    border-radius: 24px;
    background-color: #0a678c;
    margin: 12px auto;
    padding: 10px 20px;
    line-height: 1.5em;
    font-weight: 400;
    font-size: 16px;
    font-family: "Source Sans Pro", sans-serif;
    cursor: pointer;
}

.lsc-details-wrapp a.button.product_type_simple {
    display: block;
    width: auto;
    color: #fff;
    border-radius: 24px;
    background-color: #0a678c;
    margin: 12px auto;
    padding: 10px 20px;
    line-height: 1.5em;
    font-weight: 400;
    font-size: 16px;
    font-family: "Source Sans Pro", sans-serif;
    max-width: 127px;
    text-align: center;
}

.lsc-not-logged-in .lsc-details-wrapp .add_to_cart_button,
.lsc-details-wrapp .hide-prices-message_a {
    display: none;
}

.lsc-details-wrapp .product-sku {
    display: none;
}

.lsc-loop-sku {
    display: block;
    font-size: 12px;
    line-height: 110%;
    color: #000;
    font-weight: 300;
    text-align: left;
    margin: 4px 0 12px 0;
}

.lsc-loop-price {
    display: block;
    margin: 12px 0 0 0;
}

.lsc-loop-cart-row {
    margin: 20px 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lsc-qty-wrap {
    margin-right: 10px;
}

.lsc-qty-minus,
.lsc-qty-plus {
    cursor: pointer;
    line-height: 1em;
    height: 25px;
    width: 25px;
    padding: 4px 4px !important;
    border-radius: 50%;
    background-color: #0a678c !important;
    color: #fff;
    border: 1px solid #0a678c !important;
}

.lsc-qty-input {
    width: 3.631em;
    text-align: center;
    height: 30px;
}

.lsc-add-to-cart {
    cursor: pointer;
    width: auto;
    color: #fff;
    margin-top: 10px;
    margin-bottom: 10px;
    font-weight: 200;
    padding: 9px 32px;
    border-radius: 24px;
    font-weight: 300;
    line-height: 1.5em;
    background-color: #0a678c;
    transition: all .3s cubic-bezier(0, 0, .5, 1);
    border: unset;
}

.lsc-details-wrapp > li .lsc-detail-description {
    margin: 0;
}

@media (max-width: 992px) {
    .lsc-details-wrapp {
        display: none !important;
    }

    .lsc-dropdown-container {
        width: 230px;
    }

    .lsc-suggestions-desktop-wrapp {
        width: 230px;
        flex-basis: 230px;
        border-left: none;
        border-radius: 0 0 3px 3px;
    }
}

.lsc-details-inner {
    padding: 15px;
    display: flex;
    flex-direction: column;
}

.lsc-details-image {
    width: 100%;
    height: auto;
    margin-bottom: 15px;
    border: 1px solid #e8e8e8;
    border-radius: 3px;
    overflow: hidden;
    background: #f9f9f9;
}

.lsc-details-image img {
    width: 100%;
    height: auto;
    display: block;
}

.lsc-details-content {
    display: flex;
    flex-direction: column;
}

.lsc-details-title {
    font-size: 14px;
    font-weight: 600;
    margin: 0 0 8px 0;
    line-height: 120%;
    color: #202020;
}

.lsc-details-sku {
    font-size: 11px;
    color: #999;
    margin-bottom: 8px;
    line-height: 110%;
}

.lsc-details-desc {
    font-size: 12px;
    color: #666;
    line-height: 150%;
    margin-bottom: 10px;
    max-height: 60px;
    overflow: hidden;
}

.lsc-details-price {
    font-size: 16px;
    font-weight: 700;
    color: #000;
    margin: 10px 0;
}

.lsc-details-actions {
    margin-top: 15px;
    display: flex;
    gap: 10px;
}

.lsc-btn {
    flex: 1;
    padding: 10px 15px;
    text-align: center;
    text-decoration: none;
    border-radius: 3px;
    border: 1px solid #ddd;
    font-size: 12px;
    font-weight: 500;
    transition: all 150ms ease-in-out;
    cursor: pointer;
}

.lsc-btn-view {
    background: #333;
    color: #fff;
    border-color: #333;
}

.lsc-btn-view:hover {
    background: #555;
    border-color: #555;
}

.lsc-mobile-controls {
    display: flex;
    align-items: center;
    gap: 10px;
}

.lsc-open-search-trigger {
    cursor: pointer;
}

.lsc-search-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    color: #333;
    text-decoration: none;
}

.lsc-search-icon svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

.lsc-search-icon:hover {
    opacity: 0.7;
}

.lsc-mobile-search-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #fff;
    z-index: 999999999;
    display: none;
    flex-direction: column;
    overflow: hidden;
}

.lsc-mobile-search-modal.lsc-open {
    display: flex;
}

.lsc-mobile-search-wrapper {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
}

.lsc-mobile-search-modal .lsc-search-desktop-form {
    padding: 15px;
    flex-shrink: 0;
    border-bottom: 1px solid #eee;
}

.lsc-mobile-search-modal .lsc-search-desktop-input {
    width: 100%;
    max-width: 100%;
    height: 44px;
    font-size: 16px;
}

.lsc-mobile-search-modal .lsc-suggestions-desktop-wrapp {
    position: static;
    max-height: none;
    flex: none;
    width: 100%;
    flex-grow: 1;
    overflow-y: auto;
    border: none;
    box-shadow: none;
    border-radius: 0;
    border-left: none;
}

.lsc-close-search-trigger {
    position: fixed;
    top: 15px;
    right: 15px;
    z-index: 1000000000;
    cursor: pointer;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.lsc-close-search-trigger a {
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #333;
}

.lsc-close-search-trigger svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

.lsc-close-search-trigger:hover {
    background: #f0f0f0;
}

@media (max-width: 768px) {
    .lsc-search-desktop-input {
        max-width: 100%;
        height: 44px;
        font-size: 16px;
        padding: 10px 12px;
    }

    .lsc-search-submit {
        height: 44px;
    }

    .lsc-suggestions-desktop-wrapp {
        max-height: 300px;
    }

    .lsc-dropdown-container {
        display: none !important;
    }
}

.screen-reader-text {
    clip: rect(1px, 1px, 1px, 1px);
    height: 1px;
    overflow: hidden;
    position: absolute !important;
    width: 1px;
}

@supports (-webkit-appearance: none) {
    input[type="search"].lsc-search-desktop-input {
        appearance: none;
        -webkit-appearance: none;
    }
}

/* Prevent body scroll when mobile modal open */
body.lsc-modal-open {
    overflow: hidden;
}

/* Print styles */
@media print {

    .lsc-search-container,
    .lsc-dropdown-container,
    .lsc-suggestions-desktop-wrapp,
    .lsc-details-wrapp,
    .lsc-mobile-search-modal {
        display: none !important;
    }
}