.wbr-form-container {
    font-size: 16px;
    font-family: 'Roboto', sans-serif;
}

.wbr-form-container table,
.wbr-form-container tr,
.wbr-form-container th,
.wbr-form-container td {
    border: none;
}

.wbr-form-container th {
    text-align: left;
}

.wbr-form-container td {
    line-height: 26px;
    padding: 3px 0;
}

.wbr-title {
    padding-top: 30px;
    font-weight: bolder;
}

.wbr-label {
    width: 300px;
    vertical-align: top;
}

.wbr-big-label {
    font-size: 18px;
}

.wbr-field {
    width: 300px;
    line-height: 26px;
    text-align: left;
    padding: 0 5px !important;
}

select.wbr-field {
    width: 300px;
    height: 32px;
    padding: 3px;
    background-position-y: center;
}

.wbr-invalid-field {
    border-color: red !important;
}

input[type="file"].wbr-invalid-field {
    border: 1px solid;
}

.wbra-user {
    width: 94%;
    padding-right: 20px;
    padding-left: 20px;
    background: white;
    margin-top: 15px;
    border: 1px solid rgba(0, 0, 0, 0.28);
    border-radius: 4px;
    float: left;
}

.wbra-user-name-container {
    display: flex;
    cursor: pointer;
    padding-top: 20px;
    padding-bottom: 20px;
    float: left;
    width: 100%;
}

.wbra-user-name {
    width: 75%;
    font-weight: bold;
    font-size: 15px;
}

.wbra-user-actions {
    width: 25%;
    text-align: right;
}

.wbra-user-info-container {
    padding-bottom: 20px;
    float: left;
    width: 100%;
}

.wbra-user-info-container .wbra-user-info-container-label,
.wbra-user-info-container .wbra-user-info-container-value {
    width: 50%;
}

.wbr-button {
    border-radius: 2px;
    background: #FF0095;
    color: white;
    font-family: 'Roboto', sans-serif;
    font-size: 1em;
    padding: 10px;
    box-shadow: 10px 10px 1px rgba(0, 0, 0, 0.12);
    transition: .5s;
    cursor: pointer;
    font-weight: bold;
}

.wbr-button:hover {
    background: #9D00FF;
    box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.12);
    transition: .5s;
    text-shadow: 3px 3px 10px #000000;
}

.wbr-form-container .tac {
    height: 300px;
    overflow-y: scroll;
    border: 1px solid #0a0a0a;
    padding: 5px;
}

.wbr-form-container tfoot .wbr-field {
    width: auto;
}

.wbr-form-container tfoot #wbr-clear {
    float: right;
}

.creditCardForm {
    float: left;
    font-size: 18px;
    position: relative;
}

.creditCardForm .form-group {
    float: left;
    margin-bottom: 15px;
}

.creditCardForm .form-control {
    line-height: 26px;
    float: left;
}

.creditCardForm .card-holder-name {
    width: 100%;
}

.creditCardForm .cvc {
    width: 50%;
}

.creditCardForm .expiry {
    width: 49%;
    margin-right: 1%;
}


#card-holder-name, #cardNumber {
    width: 96%;
}


#card-number-field {
    width: 100%;
}

#expiration-date {
    width: 49%;
}


.form-container .field-container:first-of-type {
    grid-area: name;
}

.form-container .field-container:nth-of-type(2) {
    grid-area: number;
}

.form-container .field-container:nth-of-type(3) {
    grid-area: expiration;
}

.form-container .field-container:nth-of-type(4) {
    grid-area: security;
}

.field-container input {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

.field-container {
    position: relative;
}

.form-container {
    display: grid;
    grid-column-gap: 10px;
    grid-template-columns: auto auto;
    grid-template-rows: 90px 90px 90px;
    grid-template-areas: "name name""number number""expiration security";
    max-width: 400px;
    padding: 20px;
    color: #707070;
    width: 100%;
}

/*.credit-card-from label {*/
/*    padding-bottom: 5px;*/
/*    font-size: 13px;*/
/*}*/

/*.credit-card-from input {*/
/*    width: 100%;*/
/*}*/
.ccicon {
    height: 38px;
    position: absolute;
    right: 1px;
    top: calc(50% - 60px);
    width: 60px;
}

/* CREDIT CARD IMAGE STYLING */
.preload * {
    -webkit-transition: none !important;
    -moz-transition: none !important;
    -ms-transition: none !important;
    -o-transition: none !important;
}

.container {
    width: 100%;
    max-width: 400px;
    max-height: 251px;
    height: 54vw;
    padding: 20px;
}

#ccsingle {
    position: absolute;
    right: 15px;
    top: 20px;
}

#ccsingle svg {
    width: 100px;
    max-height: 60px;
}

.creditcard svg#cardfront,
.creditcard svg#cardback {
    width: 100%;
    -webkit-box-shadow: 1px 5px 6px 0px black;
    box-shadow: 1px 5px 6px 0px black;
    border-radius: 22px;
}

#generatecard {
    cursor: pointer;
    float: right;
    font-size: 12px;
    color: #fff;
    padding: 2px 4px;
    background-color: #909090;
    border-radius: 4px;
    cursor: pointer;
    float: right;
}

/* CHANGEABLE CARD ELEMENTS */
.creditcard .lightcolor,
.creditcard .darkcolor {
    -webkit-transition: fill .5s;
    transition: fill .5s;
}

.creditcard .lightblue {
    fill: #03A9F4;
}

.creditcard .lightbluedark {
    fill: #0288D1;
}

.creditcard .red {
    fill: #ef5350;
}

.creditcard .reddark {
    fill: #d32f2f;
}

.creditcard .purple {
    fill: #ab47bc;
}

.creditcard .purpledark {
    fill: #7b1fa2;
}

.creditcard .cyan {
    fill: #26c6da;
}

.creditcard .cyandark {
    fill: #0097a7;
}

.creditcard .green {
    fill: #66bb6a;
}

.creditcard .greendark {
    fill: #388e3c;
}

.creditcard .lime {
    fill: #d4e157;
}

.creditcard .limedark {
    fill: #afb42b;
}

.creditcard .yellow {
    fill: #ffeb3b;
}

.creditcard .yellowdark {
    fill: #f9a825;
}

.creditcard .orange {
    fill: #ff9800;
}

.creditcard .orangedark {
    fill: #ef6c00;
}

.creditcard .grey {
    fill: #bdbdbd;
}

.creditcard .greydark {
    fill: #616161;
}

/* FRONT OF CARD */
#svgname {
    text-transform: uppercase;
}

#cardfront .st2 {
    fill: #FFFFFF;
}

#cardfront .st3 {
    font-family: 'Source Code Pro', monospace;
    font-weight: 600;
}

#cardfront .st4 {
    font-size: 54.7817px;
}

#cardfront .st5 {
    font-family: 'Source Code Pro', monospace;
    font-weight: 400;
}

#cardfront .st6 {
    font-size: 33.1112px;
}

#cardfront .st7 {
    opacity: 0.6;
    fill: #FFFFFF;
}

#cardfront .st8 {
    font-size: 24px;
}

#cardfront .st9 {
    font-size: 36.5498px;
}

#cardfront .st10 {
    font-family: 'Source Code Pro', monospace;
    font-weight: 300;
}

#cardfront .st11 {
    font-size: 16.1716px;
}

#cardfront .st12 {
    fill: #4C4C4C;
}

/* BACK OF CARD */
#cardback .st0 {
    fill: none;
    stroke: #0F0F0F;
    stroke-miterlimit: 10;
}

#cardback .st2 {
    fill: #111111;
}

#cardback .st3 {
    fill: #F2F2F2;
}

#cardback .st4 {
    fill: #D8D2DB;
}

#cardback .st5 {
    fill: #C4C4C4;
}

#cardback .st6 {
    font-family: 'Source Code Pro', monospace;
    font-weight: 400;
}

#cardback .st7 {
    font-size: 27px;
}

#cardback .st8 {
    opacity: 0.6;
}

#cardback .st9 {
    fill: #FFFFFF;
}

#cardback .st10 {
    font-size: 24px;
}

#cardback .st11 {
    fill: #EAEAEA;
}

#cardback .st12 {
    font-family: 'Rock Salt', cursive;
}

#cardback .st13 {
    font-size: 37.769px;
}

/* FLIP ANIMATION */
.container {
    perspective: 1000px;
}

.creditcard {
    width: 100%;
    max-width: 400px;
    -webkit-transform-style: preserve-3d;
    transform-style: preserve-3d;
    transition: -webkit-transform 0.6s;
    -webkit-transition: -webkit-transform 0.6s;
    transition: transform 0.6s;
    transition: transform 0.6s, -webkit-transform 0.6s;
    cursor: pointer;
}

.creditcard .front,
.creditcard .back {
    position: absolute;
    width: 100%;
    max-width: 400px;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-font-smoothing: antialiased;
    color: #47525d;
}

.creditcard .back {
    -webkit-transform: rotateY(180deg);
    transform: rotateY(180deg);
}

.creditcard.flipped {
    -webkit-transform: rotateY(180deg);
    transform: rotateY(180deg);
}

#name, #cardnumber {
    width: 100%;
    max-width: 400px;
}

#expirationdate, #securitycode {
    width: 100%;
    max-width: 200px;
}

.wbr-step {
    display: none;
}

.wbr-step-next-container {
    text-align: right;
}