﻿body {
}

input[name=qty].highlighted {
    box-shadow: 0 0 5px #d00
}

.loading-ring {
    padding-top:60px;
    width: 80px;
    height: 80px;
    margin: auto;
}

    .loading-ring div {
        box-sizing: border-box;
        display: block;
        position: absolute;
        width: 64px;
        height: 64px;
        margin: 8px;
        border: 8px solid #ff0101;
        border-radius: 50%;
        animation: loading-ring 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
        border-color: #ff0101 transparent transparent transparent;
    }

        .loading-ring div:nth-child(1) {
            animation-delay: -0.45s;
        }

        .loading-ring div:nth-child(2) {
            animation-delay: -0.3s;
        }

        .loading-ring div:nth-child(3) {
            animation-delay: -0.15s;
        }

@keyframes loading-ring {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.prodotto img{
    border-color: #ff0101!important;
}

.prodotto a{
    text-decoration:none!important;
}

.bottom-line {
    border-bottom: 2px solid #ddd;
    margin-bottom: 1.3em;
    padding-top: 1.3em;
}

.bottom-line-thin {
    border-bottom: 1px solid #ddd;
    margin-bottom: 1.3em;
    padding-top: 1.3em;
}

.media-heading {
    line-height: 26px;
}

.mobile-heading {
    display: none;
}

@media (min-width: 768px) {
    .card-group-row .card {
        min-height: 350px;
    }
}

    @media (max-width: 767px) {
        .desktop-heading {
            display: none;
        }

        .mobile-heading {
            margin-top: 1em;
            display: block;
        }

        .media-heading {
            margin-top: 1em;
        }

        .btn-remove {
        }
    }
