﻿body {
}
button.delete-item.btn.btn-danger {
    background-color: dimgrey;
}
button.delete-item.btn.btn-danger:hover {
    background-color: red;
}


@media (max-width: 470px) {
    .modal.fade {
        display:contents;
    }
       
}
@media (max-width: 200px) {
    .cart-count-item{
        display: flex;
    }
}
.zoom {
    transition: transform .4s ; /* Animation */
    
}

.hover-zoom:hover {
    transform: scale(1.05); /* (150% zoom - Note: if the zoom is too large, it will go outside of the viewport) */
}
.hover-zoom {
    transition: transform .4s; /* Animation */
}

.spinner {
    border: 4px solid #f3f3f3; /* Light grey */
    border-top: 4px solid #3498db; /* Blue */
    border-radius: 50%;
    width: 30px;
    height: 30px;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}


