    .header-cart {
        position: absolute;
        top: -15px;
        right: -10px;
        width: 20px; height: 20px;
        background-color: #FE0606;
		border: 1px solid white;
        border-radius: 50%;
        /*display: flex;*/
        align-items: center;
        justify-content: center;
        color: white;
        transition: 0.8s;
    }

    .cart-remove button {
        display: inline-block; 
		border-radius: 50%; 
		width: 25px; height: 25px; 
		padding: 0; 
		border: 1px solid red; 
		text-align: center; 
		font-size: 17px; 
		color: red; 
		background: transparent; 
		transition: 0.9s;
    }

    .cart-remove button:hover {
        background-color: red; color: white;
    }

