﻿.spnwait {
    font-size: 24px;
    font-weight: bold;
    color: #395e84;
}

.CoverForBox > img:hover, .ProductTypeBox > img:hover {
    -ms-transform: scale(1.1); /* IE 9 */
    -webkit-transform: scale(1.1); /* Safari 3-8 */
    transform: scale(1.1);
    /*box-shadow: 1px 1px 6px 0px grey;*/
    box-shadow: -2px -2px 9px 5px lightgrey;
    background-color: lightgray;
}
/*CSS for Stripe Payment - Start*/
#stripePaymentModal #btnStripePayment {
    background: #3ea8e5;
    color: #ffffff;
    font-family: Arial, sans-serif;
    border-radius: 4px;
    border: 0;
    padding: 12px 16px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    display: block;
    transition: all 0.2s ease;
    box-shadow: 0px 4px 5.5px 0px rgba(0, 0, 0, 0.07);
    width: 100%;
    margin-top: 22px;
}

#stripePaymentModal #card-error {
    color: #e00b0b;
    text-align: left;
    font-size: 14px;
    line-height: 17px;
    margin-top: 12px;
}

#stripePaymentModal #spinner {
    border: 2px solid #ffffff;
    border-radius: 50%;
    border-top: 2px solid #3ea8e5;
    width: 20px;
    height: 20px;
    margin-left: auto;
    margin-right: auto;
    -webkit-animation: spin 2s linear infinite; /* Safari */
    animation: spin 2s linear infinite;
}

#stripePaymentModal .stripe-logoWrap {
    position: absolute;
    top: -32px;
    right: 0;
    left: 0;
    width: 70px;
    height: 70px;
    margin: 0 auto;
}

#stripePaymentModal .stripe-headerLogo {
    width: 68px;
    height: 68px;
    margin: 3px;
    border-radius: 100%;
    background-color: #fff;
    background-size: 62px;
    background-repeat: no-repeat;
    background-position: center;
    border: 1px solid rgba(0,0,0,.2);
}

#stripePaymentModal {
    margin-top: 10px;
}

    #stripePaymentModal .modal-content {
        margin-top: 30px;
    }

    #stripePaymentModal #stripe-card-number {
        border-radius: 4px 4px 0 0;
        padding: 12px;
        border: 1px solid rgba(50, 50, 93, 0.1);
        height: 44px;
        width: 100%;
        margin-top: 10px;
    }

    #stripePaymentModal #stripe-card-expiry {
        border-radius: 0 0 0 4px;
        padding: 12px;
        border: 1px solid rgba(50, 50, 93, 0.1);
        height: 44px;
        width: 50%;
        float: left;
        margin-bottom: 22px;
        border-top: 0px;
        border-right: 0px;
    }

    #stripePaymentModal #stripe-card-cvc {
        border-radius: 0 0 4px 0;
        padding: 12px;
        border: 1px solid rgba(50, 50, 93, 0.1);
        height: 44px;
        width: 50%;
        float: right;
        margin-bottom: 22px;
        border-top: 0px;
    }

@-webkit-keyframes spin {
    0% {
        -webkit-transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
    }
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}
/*CSS for Stripe Payment - End*/