.swd-inline-qty {
    display: inline-flex;
    align-items: stretch;
    justify-content: center;
    width: 144px;
    height: 46px;
    min-height: 46px;
    border: 1px solid #cfd4dc;
    border-radius: 8px;
    overflow: hidden;
    background: #ffffff;
    vertical-align: middle;
    box-sizing: border-box;
}

.swd-inline-qty-btn {
    flex: 0 0 46px;
    width: 46px;
    height: 44px;
    padding: 0;
    margin: 0;
    border: 0;
    background: #f1f3f5;
    color: #18212f;
    cursor: pointer;
    font-size: 22px;
    font-weight: 500;
    line-height: 44px;
    text-align: center;
    box-shadow: none;
    outline: none;
}

.swd-inline-qty-minus {
    border-right: 1px solid #d9dde3;
}

.swd-inline-qty-plus {
    border-left: 1px solid #d9dde3;
}

.swd-inline-qty-btn:hover:not(:disabled) {
    background: #e5e9ee;
    color: #0b5ed7;
}

.swd-inline-qty-btn:focus-visible {
    outline: 2px solid #0b5ed7;
    outline-offset: -2px;
}

.swd-inline-qty-btn:disabled {
    background: #f8f9fa;
    color: #b9bec7;
    cursor: not-allowed;
}

.swd-inline-qty-value {
    flex: 1 1 auto;
    min-width: 50px;
    padding: 0;
    text-align: center;
    color: #18212f;
    background: #ffffff;
    font-size: 16px;
    font-weight: 600;
    line-height: 44px;
}

.swd-inline-qty-loading {
    opacity: .55;
    pointer-events: none;
}

@media (max-width: 480px) {
    .swd-inline-qty {
        width: 132px;
        height: 44px;
        min-height: 44px;
    }

    .swd-inline-qty-btn {
        flex-basis: 42px;
        width: 42px;
        height: 42px;
        line-height: 42px;
    }

    .swd-inline-qty-value {
        line-height: 42px;
        min-width: 48px;
    }
}
