.cart__informer {
    position: fixed;
    z-index: 9999999999;
    top: 66px;
    right: 0;
    left: 0;
    display: none;
    width: 100%;
    max-width: 350px;
    margin: auto;
    border-radius: 10px;
    box-shadow: 0 20px 20px rgba(0, 0, 0, 0.2);
    border: 1px solid var(--main-color);
}

.cart__informer_content {
    font-size: 16px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 16px;
    color: #000;
    background: #fff;
    -webkit-box-align: baseline;
    -ms-flex-align: baseline;
    align-items: baseline;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    border-radius: 10px;
}

.cart__informer_content svg {
    width: 20px;
    height: 20px;
    fill: rgb(77, 165, 115);
    margin-right: 20px;
}

.cart__informer .icon {
    margin-right: 6px;
}

@media (max-width: 340px) {
    .cart__informer {
        max-width: 300px;
    }
}