.sell-info {
    display: flex;
    flex-direction: row;
    gap: 12px;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
    text-align: start;
    list-style: none;
}

.sell-info__icon-wrap {
    display: flex;
    flex-shrink: 0;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
}

.sell-info__icon {
    width: 24px;
    height: 24px;
    object-fit: contain;
}

.sell-info__text {
    flex: 1 1 auto;
    min-width: 0;
    margin: 0;
}

.sell-info__arrow {
    flex-shrink: 0;
    width: 16px;
    height: 16px;
}

.sell-info--has-popup .sell-info__trigger {
    display: flex;
    gap: 12px;
    align-items: center;
    width: 100%;
    padding: 0;
    margin: 0;
    color: inherit;
    text-align: start;
    cursor: pointer;
    list-style: none;
    background: transparent;
    border: none;
}

.sell-info--has-popup .sell-info__trigger::-webkit-details-marker {
    display: none;
}

.sell-info-popup>summary+.modal__content .popup__content {
    width: 100%;
    height: 100%;
    padding: 20px;
    overflow: auto;
}

@media (min-width: 960px) {
    .sell-info-popup>summary+.modal__content .popup__content {
        padding: 40px;
    }
}

.sell-info-popup .popup__title {
    margin-block-end: 20px;
}

.product-detail__sell-info--horizontal .sell-info {
    flex-direction: row;
    gap: 12px;
    align-items: center;
    justify-content: flex-start;
    text-align: start;
}