.basket-line {
    padding: 24px 32px;
    box-shadow: 0 4px 48px 0 rgba(95, 23, 97, .2);
    border-radius: 16px;
    background-color: white;

    position: fixed;
    left: 50%;
    bottom: 0;
    transform: translate(-50%, 120%);
    transition: transform 0.4s ease;
    z-index: 101;
}
.basket-line.is-visible {
    transform: translate(-50%, -24px);
}
.basket-line-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.basket-line-inner > *:not(:last-child) {
    margin-right: 24px;
}
#basket-counter {
    display: inline-block;
    min-width: 20px;
    height: 20px;
    text-align: center;
    line-height: 20px;
    transition: transform 0.3s ease;
    transform: scale(1);
}
#basket-counter.add {
    transform: scale(1.5);
}
#basket-total-sum {
    display: inline-block;
    min-width: 20px;
    height: 20px;
    text-align: center;
    line-height: 20px;
    transition: transform 0.3s ease;
    transform: scale(1);
}
#basket-total-sum.add {
    transform: scale(1.5);
}
.button.button--basket {
    background-color: var(--color-primary-60);
    color: white;
    position: relative;
}
.button--basket path {
    transition: fill .3s;
}
.button--basket svg {
    stroke: transparent !important;
}
.button--basket:hover path {
    fill: #200E32;
}
.button.button--basket.disabled {
    opacity: .6;
    color: #767F8F;
    pointer-events: none;
}
.button.button--basket .counter {
    position: absolute;
    top: 0;
    right: 0;
    transform: translate(40%, -40%);
    width: 24px;
    height: 24px;
    border-radius: 50%;
    color: white;
    background-color: var(--color-akcent);
    font-size: 13px;
    line-height: 24px;
    text-align: center;
}
.basket-line__count {
    font-size: 17px;
    line-height: 28px;
}
.basket-line__sum {
    font-size: 21px;
    line-height: 28px;
    font-weight: 600;
}
.basket-line__link {
    font-size: 17px;
    line-height: 28px;
    color: var(--color-akcent);
    position: relative;
    padding-right: 20px;
    cursor: pointer;
}
.basket-line__link::after {
    content: "";
    width: 16px;
    height: 16px;
    background-image: url("images/icon-arrow-right.svg");
    background-repeat: no-repeat;
    background-size: contain;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
}
.button--basket.disabled #basket-line-counter {
    display: none;
}