.seba-product-search__button,
.seba-product-search__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    width: 22px;
    height: auto;
}

i.seba-product-search__icon--loading {
    display: none;
}

i.seba-product-search__icon--loading,
i.seba-product-search__icon--close,
i.seba-product-search__icon--search {
    font-size: 22px;
    color: #000;
}
i.seba-product-search__icon--loading:before,
i.seba-product-search__icon--close:before,
i.seba-product-search__icon--search:before {
    font-family: "Font Awesome 5 Pro";
    font-size: 21px;
    color: #000;
    font-weight: 600;
    display: inline-block;
}
i.seba-product-search__icon--search {
    padding-top: 2px;
}

.seba-product-search__icon.is-active .seba-product-search__icon--close {
    display: block;
}

.seba-product-search__icon.is-active .seba-product-search__icon--search {
    display: none;
}

.seba-product-search__icon .seba-product-search__icon--close {
    display: none;
}

.seba-product-search__form {
    position: absolute;
    top: 100%;
    right: 0;
    width: 375px;
    opacity: 0;
    transform: translateY(30px);
    transition: 0.3s all ease-in-out;
    z-index: 130;
    display: none;
}

.seba-product-search__form.is-active {
    display: block;
    opacity: 1;
    transform: translateY(10px);
}


.seba-product-search__content {
    box-shadow: 0 3px 10px rgba(0, 0, 0, .2);
}

.seba-product-search__input {
    background: #fff;
    transition: all .3s;

    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: space-between;
    padding: 5px 20px;
}

.seba-product-search__input input {
    border: 0;
    height: 40px;
    line-height: 40px;
    outline: 0;
    font-size: 16px;
    width: 100%;
}

.seba-product-search__button {
    cursor: pointer;
}

.seba-product-search__results {
    background: #fff;
    max-height: 65vh;
    overflow: auto;
    border-top: 1px solid #d5d4cf;
    display: none;
}

.seba-product-search__results-label {
    padding: 5px 15px;
    background: #f5f5f5;
    color: #999;
    font-size: 12px;
}

.seba-product-search__results-label span {
    font-weight: 500;
}

.seba-product-search__results-items {
    padding: 5px 0;
    display: flex;
    flex-direction: column;
}

.seba-product-search__results-item {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 6px;
    padding-left: 4px;
}

.seba-product-search__results-item--image {
    width: 75px;
    height: auto;
    border-radius: 0 !important;
}

.seba-product-search__results-item-details {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 3px;
    padding: 5px 3px 5px 0;
}

.seba-product-search__results-item--price {
    font-size: 13px;
    line-height: 15px;
    font-weight: 500;
    text-align: end;
    display: flex;
    gap: 5px;
}

.seba-product-search__results-item--short-name {
    font-size: 13px;
    line-height: 15px;
    font-weight: 500;
    max-width: 170px;
}

.seba-product-search__results-item--name {
    font-size: 11px;
    width: 100%;
    line-height: 14px;
}

.seba-product-search__results-items .seba-product-search__results-item:not(:last-child) {
    border-bottom: 1px solid #eceaea !important;
}

.seba-product-search__results-item-not-found {
    padding: 5px 10px;
    font-size: 14px;
}

.seba-product-search__results-item-flag {
    visibility: hidden;
    width: 15px;
    background: #d6803a;
    color: #fff;
    font-size: 10px;
    writing-mode: vertical-rl;
    font-weight: 700;
    display: flex;
    justify-content: center;
    align-items: center;
    align-self: stretch;
    letter-spacing: 2px;
}

.seba-product-search__results-item-flag--bestseller {
    visibility: visible !important;
}

.seba-product-search__results-item--bestseller {
    background: #fcf7f2;
}

.seba-product-search__results-item--price-regular {
    display: none;
}

.seba-product-search__results-item--price-discount .seba-product-search__results-item--price-regular {
    text-decoration: line-through;
    display: block;
}

.seba-product-search__results-item--price-discount .seba-product-search__results-item--price-displayed {
    color: #B24646;
    font-weight: 700;
}

@media (max-width: 475px) {
    .col-info .seba-product-search {
        position: unset !important;
    }
    .seba-product-search__form {
        width: 100vw !important;
        right: 0px !important;
    }
}