.btn {
    background: #008f86;
    position: relative;
    border-radius: 3px;
    text-transform: uppercase;
    padding: 6px 15px;
    font-weight: 300;
    font-size: 11px;
    white-space: nowrap;
    cursor: pointer;
    line-height: 1 !important;
    color: #fff !important;
    text-decoration: none !important;
    margin: 0;
}
.analogues-picker__input-body {
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.12);
    display: inline-block;
}
.analogues-picker__input-body p {
    font-size: 16px !important;
}
.analogues-picker__input-row {
    display: flex;
    gap: 5px;
    align-items: center;
}
.analogues-picker__input-wrapper {
    position: relative;
}
.analogues-picker__input-clear-btn {
    cursor: pointer;
    background-color: #8d8d8d;
    color: #fff;
    padding: 5px 15px;
}
.analogues-picker__input {
    padding: 5px 15px;
    border: 2px solid;
    width: 300px;
}
.analogues-picker__hints {
    position: absolute;
    z-index: 9999;
    width: 100%;
    max-height: 300px;
    overflow-y: scroll;
    background-color: #fff;
    box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.12);
}
.analogues-picker__hints::-webkit-scrollbar {
    width: 5px;
}
.analogues-picker__hints::-webkit-scrollbar-track {
    background: #fff;
}
.analogues-picker__hints::-webkit-scrollbar-thumb {
    background-color: #008f86;
}
.analogues-picker__hints p {
    padding: 5px 15px;
    cursor: pointer;
    margin: 0;
}
.analogues-picker__hints p:hover {
    background-color: #f9f9f9;
}
.analogues-picker__hints p span {
  padding: 0 !important;
  background-color: #f9f9f9 !important;
  color: #008f86 !important;
  font-weight: 600 !important;
}
.analogues-picker__show-more-btn {
    color: #008f86 !important;
    font-weight: 500 !important;
    position: relative;
}
.analogues-picker__show-more-btn::after {
    content: "";
    position: absolute;
    width: 9px;
    height: 9px;
    border-bottom: 1px solid #008f86;
    border-right: 1px solid #008f86;
    top: 11px;
    left: 130px;
    transform: rotate(45deg);
}
.analogues-picker__result-header {
    font-size: 20px !important;
    font-weight: 600 !important;
    margin: 20px 0;
}
.analogues-picker__result-body {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.analogues-picker__result-item.item {
    flex: 0 0 49%;
    display: flex;
    flex-direction: column;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.12);
    margin: 0 0 15px 0;
}
.item__title {
    font-size: 20px !important;
    font-weight: 600 !important;
    margin: 0 0 15px 0;
}
.item__header {
    border-bottom: 1px solid rgba(0, 0, 0, 0.12);
}
.item__header-row {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0 0 10px 0;
}
.item__price {
    font-weight: 600 !important;
    color: #008f86 !important;
    font-size: 18px !important;
    line-height: 1 !important;
    margin: 0;
}
.item__card-btn {
    background: #008f86;
    position: relative;
    border-radius: 3px;
    text-transform: uppercase;
    padding: 6px 15px;
    font-weight: 600;
    font-size: 11px;
    white-space: nowrap;
    cursor: pointer;
    line-height: 1 !important;
    color: #fff !important;
    text-decoration: none !important;
    margin: 0;
    height: 26px;
}
.item__card-btn:hover {
    background-color: #9f0412;
}
.item__no-price {
    color: #8d8d8d !important;
}
.item__body {
    flex: 1;
    margin: 20px 0 0 0;
}
.item__inf-block {
    display: flex;
    flex-wrap: wrap;
    height: 100%;
}
.item__desc {
    flex: 0 0 50%;
    display: flex;
    flex-direction: column;
}
.item__desc-title {
    font-size: 16px !important;
    font-weight: 600 !important;
}
.item__desc-text {
    flex: 1;
}
.item__desc-text p {
    margin: 0 0 5px 0 !important;
}
.item__link {
    font-size: 15px;
}
.item__desc-btn {
    width: 120px;
}
.item__desc-btn:hover {
    background-color: #9f0412;
}
.item__img {
    flex: 0 0 50%;
}

@media(max-width: 768px) {
    .analogues-picker__input-wrapper {
        flex: 1;
    }
    .analogues-picker__input {
        width: 100%;
    }
    .analogues-picker__input-body {
        padding: 10px;
        width: 100%;
    }
    .analogues-picker__result-item.item {
        flex: 0 0 100%;
    }
}
@media(max-width: 640px) {
    .item__desc {
        flex: 0 0 100%;
        order: 1;
    }
    .item__img {
        flex: 0 0 100%;
        text-align: center;
        order: 0;
    } 
    .item__img img {
        width: 80%;
    }
}