﻿body {
}

input[name=qty].highlighted {
    box-shadow: 0 0 5px #d00
}

.loading-ring {
    padding-top:60px;
    width: 80px;
    height: 120px;
    margin: auto;
    text-align:center;
}

    .loading-ring div {
        box-sizing: border-box;
        display: block;
        position: absolute;
        width: 64px;
        height: 64px;
        margin: 8px;
        border: 8px solid #eeeeee;
        border-radius: 50%;
        animation: loading-ring 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
        border-color: #eeeeee 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;
        }

.payment-summary {
    width: 100%;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    padding: 40px;
    border: 1px solid #ccc;
    background-color: #f2f2f2;
    margin-bottom: 40px;
    margin-top: 180px;
}

    .payment-summary #stripe {
        padding: 20px;
        margin-bottom: 20px;
        margin-top: 20px;
    }

    .payment-summary #stripecard {
        font-size: 18px;
        height: 50px;
        line-height: 50px;
        background-color: white;
        border: 1px solid #333;
        padding: 15px;
    }

    .payment-summary table {
        width: 100%;
    }

    .payment-summary hr {
        border-color: #aaa;
        margin-top: 15px;
        margin-bottom: 15px;
    }

@keyframes loading-ring {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}


.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 (max-width: 767px) {
    .desktop-heading {
        display: none;
    }

    .mobile-heading {
        margin-top: 1em;
        display: block;
    }

    .media-heading {
        margin-top: 1em;
    }

    .btn-remove {
    }
}
