@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');


.card_box {
   
    display: flex;
    flex-direction: column;
    max-width: 700px; 
    margin: 0 auto;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    padding: 20px;
    font-family: 'Lato';
}

.card_input {
    width: 100%;
    box-sizing: border-box;
    border: #ddd solid 1px;
    border-radius: 6px;
    color: #555;
    padding: 8px;
    margin-top: 2px;
    margin-bottom: 14px;
    outline: none;
    font-family: inherit;
}

#card-button {
    width: 100%;
    height: 55px;
    background-color: #007AFF;
    border: #007AFF solid 2px;
    border-radius: 55px;
    color: #fff;
    margin-top: 8px;
    padding: 8px;
    font-family: inherit;
    font-size: 18px;
    font-weight: 500;
    cursor: pointer;
}

#card-button:hover {
    opacity: .8;
}

#card-result {
    color: #18BC9C;
    font-weight: bold;
    padding: 3px;
}

#card-number-element {
    background-image: url('images/unknown.png');
    background-repeat: no-repeat;
    background-position: right center;
    background-size: 24px;
    background-origin: content-box;
}

#card-cvc-element {
    background-image: url('images/cvc.png');
    background-repeat: no-repeat;
    background-position: right center;
    background-size: 24px;
    background-origin: content-box;
}

.card_row {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    gap: 10px;
}

.card_row > div {
    width: 100%;
}
.labelClass
{
color: #95A1AC;
font-size: 13px;
}
.h1Class
{
    margin: 0;
}
.desc label
{
    font-weight: 600;
    font-size: 12px;
    color:#14181B;
    margin-bottom: 2px;
}
.loader {
    border: 8px solid #f3f3f3; /* Light grey */
    border-top: 8px solid #3498db; /* Blue */
    border-radius: 50%;
    width: 20px;
    height: 20px;
    animation: spin 2s linear infinite;
  }
  
  @keyframes spin 
  {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
  }
  #error-result
  {
    color: red;
    padding-bottom: 4px;
  }