.cart {
    background: #3e3d3d;
    border-radius: 50%;
	box-shadow: 2px 3px 5px rgba(0,0,0,.4);
    transition: background-color 0.3s ease;
    color: #fff;
	position: fixed;
	z-index: 10;
    bottom: 40px;
    left: 40px;
    font-size: 48px;
    width: 93px;
    height: 93px;
    display: flex;
    justify-content: center;
    align-items: center;
    user-select: none;
}
.cart:hover {
    color: #fff;
    background-color: #BB6E60;
}
.cart:active, .cart:focus {
    color: #fff;
}
#cart-count{
    display: flex;
    justify-content: center;
    align-items: center;
	position: absolute;
	top: -5px;
	right: -5px;
	border-radius: 50%;
	background: red;
	color: #fff;
	padding: 4px 0;
	font-size: 18px;
	font-weight: 600;
	text-align: center;
    width: 30px;
    height: 30px;
	box-shadow: 1px 1px 3px rgba(0,0,0,.4);
}
@media (max-width: 767px) {
    .cart {
        width: 56px;
        height: 56px;
        font-size: 26px;
        bottom: 20px;
        left: 20px;
    }
    #cart-count {
        width: 26px;
        height: 26px;
        font-size: 12px;
    }
}
.cart_message{
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    padding: 20px 50px;
    text-align: center;
    box-shadow: 0 3px 7px rgba(0,0,0,.5);
    display: none;
    z-index: 99999999;
}
.cart_message{
    left: 50%;
    transform: translateX(-50%);
    background: #E1A827;
    border-radius: 80px;
}
.cart_message p{
    color: #fff;
    text-align: center;
}