﻿/* 
    Card Styles
    Got From http://jquerycreditcardvalidator.com
 */

.credit-card-number-input{}
.credit-card-number-type{}
.credit-card-number-group{}
.credit-card-unknown{}

.cards {
    width: 52px;
}

    .cards span {
        background-image: url(card_logos.png);
        background-position: 0 0;
        float: left;
        margin-right: 8px;
        text-indent: -9999px;
        width: 52px;
        height: 31px;
    }

        .cards li:last-child {
            margin-right: 0;
        }

    .cards .visa_electron {
        background-position: 204px 0;
    }

    .cards .mastercard {
        background-position: 153px 0;
    }

    .cards .maestro {
        background-position: 102px 0;
    }

    .cards .discover {
        background-position: 51px 0;
    }

    .cards .visa.off {
        background-position: 0 32px;
    }

    .cards .visa_electron.off {
        background-position: 204px 32px;
    }

    .cards .mastercard.off {
        background-position: 153px 32px;
    }

    .cards .maestro.off {
        background-position: 102px 32px;
    }

    .cards .discover.off {
        background-position: 51px 32px;
    }
