.detail-brand.has-logo {
    z-index: 2;
    display: flex;
    min-width: 145px;
    min-height: 52px;
    padding: 10px 14px;
    align-items: center;
    justify-content: center;
    border: 1px solid #e1e6ea;
    border-radius: 8px;
    background: rgba(255, 255, 255, .96);
    box-shadow: 0 8px 24px rgba(8, 30, 49, .1);
}

.detail-brand.has-logo img {
    display: block;
    width: auto;
    max-width: 165px;
    height: auto;
    max-height: 34px;
}

.detail-perks {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.detail-perks .cash-on-delivery-perk {
    border-color: #cfe7d9;
    background: #f4fbf7;
}

.cash-on-delivery-icon {
    display: inline-flex;
    width: 28px;
    height: 28px;
    flex: 0 0 28px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #138a56;
    color: #fff;
    font-size: 16px;
    font-weight: 900;
    box-shadow: 0 0 0 5px rgba(19, 138, 86, .09);
}

@media (max-width: 760px) {
    .detail-perks {
        grid-template-columns: 1fr;
    }

    .detail-brand.has-logo {
        left: 16px;
        top: 16px;
        min-width: 120px;
        min-height: 44px;
        padding: 8px 12px;
    }

    .detail-brand.has-logo img {
        max-width: 135px;
        max-height: 28px;
    }
}
