.basket-notificaton {
    position: fixed;
    bottom: 16px;
    padding: 11px 16px 11px 11px;
    background: #004DAC;
    border-radius: 12px;
    color: #fff;
    z-index: 100;
    margin: 0 auto;
    transform: translate(-50%, calc(100% + 16px));
    left: 50%;
    transition: all .5s;
    opacity: 0;
    visibility: hidden;
}

.basket-notificaton__row {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 16px;
    font-weight: 500;
}

.basket-notificaton__icon {
    width: 48px;
    height: 48px;
}

.basket-notificaton.show {
    transform: translate(-50%, 0);
    opacity: 1;
    visibility: visible;
}

@media screen and (max-width: 650px) {
    .basket-notificaton {
        left: 16px;
        right: 16px;
        bottom: unset;
        top: 16px;
        transform: translateY(calc(-100% - 16px));
    }

    .basket-notificaton.show {
        transform: translateY(0);
    }
}

.basket-notificaton__text a {
    color: #fff;
}