.mk-topbar {
    width: 100%;
    background-color: #009901;
    color: #fff;
    text-align: center;
    font-size: 13px;
    line-height: 18px;
    padding: 7px 15px;
    box-sizing: border-box;
    order: -999;
}

.mk-topbar__inner {
    display: inline-block;
    color: #fff;
}

.mk-topbar strong {
    font-weight: 700;
}

@media (max-width: 767px) {
    .mk-topbar {
        font-size: 12px;
        line-height: 16px;
        padding: 6px 10px;
    }
}

.mk-upsell {
    margin: 12px 0 24px;
    padding: 0;
}

.mk-upsell__heading {
    margin: 0 0 8px;
    font-size: 15px;
    font-weight: 600;
    line-height: 1.35;
}

.mk-upsell__row {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 4px;
    border-top: 1px solid rgba(0, 0, 0, .08);
}

.mk-upsell__row:last-child {
    border-bottom: 1px solid rgba(0, 0, 0, .08);
}

.mk-upsell__thumb {
    flex: 0 0 auto;
    display: block;
    line-height: 0;
}

.mk-upsell__img {
    width: 40px;
    height: 40px;
    object-fit: contain;
    display: block;
}

.mk-upsell__label {
    flex: 1 1 auto;
    margin: 0;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.45;
}

.mk-upsell__link {
    color: inherit;
    text-decoration: none;
}

.mk-upsell__link:hover,
.mk-upsell__link:focus {
    color: inherit;
    text-decoration: underline;
}

.mk-upsell__price {
    white-space: nowrap;
    font-weight: 600;
}

.mk-upsell__btn {
    flex: 0 0 auto;
    white-space: nowrap;
}

.mk-upsell__checkbox {
    flex: 0 0 auto;
    width: 17px;
    height: 17px;
    margin: 0;
    cursor: pointer;
    accent-color: currentColor;
}

.mk-upsell__checkbox + .mk-upsell__label {
    cursor: pointer;
}

.mk-upsell__row.is-loading {
    opacity: .5;
    pointer-events: none;
}

.mk-upsell__row.is-loading .mk-upsell__label::after {
    content: "";
    display: inline-block;
    width: 12px;
    height: 12px;
    margin-left: 8px;
    vertical-align: -1px;
    border: 2px solid currentColor;
    border-right-color: transparent;
    border-radius: 50%;
    animation: mk-upsell-spin .7s linear infinite;
}

@keyframes mk-upsell-spin {
    to {
        transform: rotate(360deg);
    }
}

.mk-upsell__error {
    margin: 8px 0 0;
    font-size: 13px;
    color: #c0392b;
}

@media (max-width: 480px) {
    .mk-upsell__row {
        flex-wrap: wrap;
    }

    .mk-upsell__label {
        flex: 1 1 100%;
        font-size: 13px;
    }
}
