﻿.container {
    /*background-color: rgb(189, 222, 245);*/
    margin: 1px auto;
    width: 100%;
    border: none;
    border-radius: 4px;
}

td {
    padding: 8px 4px 8px 4px;
}

tr {
    overflow: hidden;
    height: 14px;
    white-space: nowrap;
}

td.cardNumberCol {
    width: 60%;
}

td.cvvCol, td.expiryCol {
    width: 20%;
}

@supports (-webkit-hyphens: none) {
    td.cvvCol, td.expiryCol {
        width: unset;
    }
}	

.help-block {
    font-size: 14px;
    color: red;
    font-weight: bold;
}

#payment-form {
    margin: 1px;
}

#card-number {
    background-image: none;
    background-origin: content-box;
    background-position: calc(100% + 10px) center;
    background-repeat: no-repeat;
    background-size: contain;
}

.form-control {
    height: 34px;
    padding: 6px 12px;
    font-size: 14px;
    line-height: 1.3;
    color: #555;
    background-color: #fff;
    border-radius: 4px;
    border-bottom: 1px solid;
}

div:empty:before {
    content: attr(data-placeholder);
    color: gray
}