.smartSearch {
    position: relative;
    width: 100%;
}

.smartSearch .smartSearch-form {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    width: 100%;
}

.smartSearch .js-smartSearch-input {
    display: block;
    position: relative;
    flex: 1 1 auto;
    width: 1%;
    min-width: 0;
    height: 38px;
    margin: 0;
    padding: .375rem .75rem;
    font-family: inherit;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #414141;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #ced4da;
    border-right: 0;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border-top-left-radius: .25rem;
    border-top-right-radius: 0;
    border-bottom-left-radius: .25rem;
    border-bottom-right-radius: 0;
    transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}

.smartSearch .js-smartSearch-input:focus {
    outline: 0;
}


.smartSearch .js-smartSearch-clear,
/*.smartSearch .js-smartSearch-submit,*/
.smartSearch .smartSearch-more {
    display: block;
    height: 38px;
    margin-left: -1px;
    font-weight: 400;
    line-height: 1.5;
    color: #007933;
    text-align: center;
    text-decoration: none;
    vertical-align: middle;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
    border: 1px solid #ced4da;
    padding: .375rem .75rem;
    font-size: 1rem;
    border-radius: .25rem;
    cursor: pointer;
    transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}


.smartSearch .js-smartSearch-clear {
    display: none;
    width: 38px;
    background-color: #fff;
    background-image: url('img/clear.svg');
    background-position: center;
    background-repeat: no-repeat;
    background-size: 28px;
    border-left: 0;
    border-right: 0;
    border-radius: 0;
}

.smartSearch .js-smartSearch-clear.visible {
    display: block;
}

.smartSearch .js-smartSearch-clear:hover {
    color: #fff;
/*
    background-color: #6c757d;
    border-color: #6c757d;
*/
}

.smartSearch .js-smartSearch-submit {
    color: #fff;
    background-color: #007933;
    border-color: #007933;
    border-left: 0;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}

.smartSearch .js-smartSearch-submit:hover {
    background-color: #007933;
    border-color: #0a58ca;
}

.smartSearch .js-smartSearch-result {
    visibility: hidden;
    opacity: 0;
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    z-index: 1000;
    margin-top: 10px;
    padding: 10px;
    background-color: white;
    border-radius: .25rem;
    border: 1px solid #ced4da;
}

.smartSearch .js-smartSearch-result.open {
    visibility: visible;
    opacity: 1;
}

.smartSearch .js-smartSearch-result.loading {
    visibility: visible;
    opacity: 1;
    background-position: center;
    background-repeat: no-repeat;
    background-color: #fff;
    background-image: url("img/loading.svg");
}

.smartSearch .js-smartSearch-result-item {
    display: none;
    padding: 10px 0;
    border-top: 1px solid #ced4da;
}

.smartSearch .js-smartSearch-result-item:first-child {
    border-top: 0;
}

.smartSearch .js-smartSearch-result-item.visible,
.smartSearch .js-smartSearch-result-item[data-page="0"] {
    display: block;
}

.smartSearch .smartSearch-result-item-center {
    display: flex;
}

.smartSearch .smartSearch-result-item-picture {
    flex-shrink: 0;
    display: block;
    width: 100px;
    height: 100px;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    background-image: url("img/img-not.jpg");
}

.smartSearch .smartSearch-result-item-data {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
    flex-grow: 1;
}

.smartSearch .smartSearch-result-item-data1 {
    width: max-content;
    flex-shrink: 0;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.smartSearch .smartSearch-result-item-data1 .smartSearch-result-item-price1 + .smartSearch-result-item-status1 {
    margin-left: 15px;
    width: 112px;
}

.smartSearch .smartSearch-result-item-picture + .smartSearch-result-item-data {
    /*width: calc(100% - 100px);*/
    padding-left: 15px;
    padding-right: 15px;
}

.smartSearch .smartSearch-result-item-breadcrumb {
    display: none;
}

.smartSearch .smartSearch-breadcrumb {
    display: flex;
    flex-wrap: wrap;
    padding: 0 0;
    margin-bottom: 1rem;
    list-style: none;
}

.smartSearch .smartSearch-breadcrumb span {
    color: #797d84;
    font-size: 14px;
    text-decoration: underline;
}

.smartSearch .smartSearch-breadcrumb span:hover {
    color: #797d84;
    text-decoration: none;
}

.smartSearch-result-item-description {
    margin: 13px 0 0 0;
    font-size: 14px;
    line-height: 1.428;
    color: #212121;
}

.smartSearch .smartSearch-breadcrumb span + span {
    padding-left: .5rem;
}

.smartSearch .smartSearch-breadcrumb span + span::before {
    float: left;
    padding-right: .5rem;
    color: #6c757d;
    content: "/";
}

.smartSearch .smartSearch-result-item-name {
    color: #414141;
    font-weight: 600;
    text-decoration: underline;
}

.smartSearch .smartSearch-result-item-name:hover {
    color: #414141;
    font-weight: 600;
    text-decoration: none;
}

.smartSearch .smartSearch-result-item-price span {
    color: #007933;
    font-weight: 700;
}

.smartSearch .smartSearch-result-item-price .new {
    color: #007933;
    font-weight: 700;
}

.smartSearch .smartSearch-result-item-price .old {
    text-decoration: line-through;
    color: #797d84;
    font-weight: 600;
}

.smartSearch .smartSearch-more {
    margin-top: 10px;
    color: #fff;
/*
    background-color: #007933;
    border-color: #007933;
*/
	background-color: var(--theme-color-accent);
	border: none;
}

.smartSearch .smartSearch-more:hover {
/*
    background-color: #007933;
    border-color: #0a58ca;
*/
	background-color: var(--theme-color-accent-light);
}

@media (max-width: 575px) {
    .smartSearch .smartSearch-result-item-center {
        flex-wrap: wrap;
    }

    .smartSearch .smartSearch-result-item-data {
        width: calc(100% - 100px);
    }

    .smartSearch .smartSearch-result-item-data1 {
        margin-left: 115px;
    }
}