.header__basket a {
    display: inline;
    font-size: inherit;
}
.header__basket-checkout {
    display: block;
    background: #0055ee;
    border: 0;
    border-radius: 4px;
    text-align: center !important;
    width: 100%;
    height: auto;
    color: #fff !important;
    font-size: 15px;
    padding: 10px 0;
    box-shadow: 0px 2px 6px 0px rgba(0, 0, 0, 0.75);
    line-height: 1.1;
}

.header__basket-content-row {
    display: grid;
    grid-template-columns: 90px 1fr;
    grid-gap: 10px;
    width: 100%;
   
}
.header-basket-content {
    border-top: 1px solid #f5f5f5;
    padding: 10px 0;
}
.header__basket-item-price,
.header__basket-content-total {
    font-size: 20px;
    line-height: 1.1;
}

.header__basket-checkout.disabled {
    background-color: #ccc;
}

.header__basket-content-col-r {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
}
.header__basket-content-total,
.header__basket-item-code,
.header__basket-item-name {
    grid-column: 1 / span 3;
    line-height: 1.1;
}
.header__basket-item-name {
    padding-bottom: 20px;
}
.header__basket-item-count {
    justify-self: start;
}
.input-group {
    display: inline-flex;
    justify-self: center;
}
.input-group button {
    width: 25px;
    height: 25px;
    background-color: #ccc;
    padding: 0;
    line-height: 25px;
}
.input-group input {
    height: 25px;
    width: 35px;
    border: 1px solid #ccc;
    font-size: .9em;
    text-align: center;
}
.fa-rub {
    content: '₽';
}
.basket-header {
    margin-bottom: 10px;
}
.header__basket-item-close {
    background: url(/theme/images/icons/close.svg) no-repeat 50% 50%;
    width: 20px;
    height: 20px;
    justify-self: end;
    cursor: pointer;
}