div.cart-header {
    display: flex;
    margin-bottom: 18px;   
    align-items: center;
}

div.cart-header > p {
    cursor: pointer;

    font-style: normal;
    font-weight: bold;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0.3px;
}

div.cart-header > p > a {
    text-decoration: none;
    color: var(--disabled);
    display: flex;
}

div.cart-header > p:first-child{
    color: var(--primary);
}

div.cart-header > p.active a {
    color: var(--primary);
}

div.cart-header > img {
    margin-left: 6px;
    margin-right: 6px;
}

@media only screen and (max-width: 1024px) {
    div.cart-header{
        margin-bottom: 2px;
    }
}