/* body {
    background-color: #f0f0f0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
} */

.order-card-payment-form {
    font-family: Arial, sans-serif;
    padding: 20px;
    border-radius: 10px;
    background-color: #ffffff59;
    border: 1px solid #0000001c;
    /* background-color: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); */
    width: 100%;
}




.order-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 30px;
}

.order-card-card-number-block {
    display: flex;
    justify-content: space-between;
}

.ccicon {
    margin-left: 10px;
    border: 1px solid #00000033;
    width: 60px;
    padding: 10px;
    border-radius: 5px;
}

.order-card-label-block {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 84%;
}

.spinner {
    position: absolute;
    margin-right: 200px;
    width: 15px;
    height: 15px;
    border-radius: 100%;
    border: 3px solid rgb(255, 255, 255);
    border-top-color: rgba(0, 0, 0, 0);
    animation: spin 0.6s linear infinite;
}
@keyframes spin {to {transform: rotate(360deg);}}

.order-card-required {
    color: red;
    font-size: 17px;
}

.order-card-credit-card-img {
    display: flex;
    align-items: center;
}

.order-card-credit-card-img > img {
    width: 30px;
    margin-right: 5px;
}


.order-card-payment-form > .order-card-header > .order-card-form-title {
    font-weight: bold;
    font-size: 20px;
}

.order-card-input-group {
    margin-bottom: 15px;
}

.order-card-input-group label {
    display: block;
    margin-bottom: 5px;
    font-size: 14px;
}


.order-card-input-group input,
.order-card-input-group select {
    width: 100%;
    padding: 10px;
    box-sizing: border-box;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 14px;
}

.order-card-input-row {
    display: flex;
    gap: 10px;
}

.order-card-input-row .order-card-input-group {
    flex: 1;
}

.order-card-id-row {
    display: flex;
    gap: 10px;
}

.order-card-id-row select {
    flex: 1;
}

.order-card-id-row input {
    flex: 3;
}

.order-card-payment-button {
    width: 100%;
    padding: 10px;
    border: none;
    border-radius: 5px;
    background-color: #007bff;
    color: #fff;
    font-size: 16px;
    box-sizing: border-box;
    display: flex;
    cursor: pointer;
    align-items: center;
    justify-content: center;
}

.order-card-payment-button:hover {
    background-color: #0056b3;
}

.billing-text {
    font-size: 14px;
    padding-top: 13px;
    margin-bottom: 22px;
    border-top: 1px solid #0000002b;
    color: #ff0000;
}

#address-suggestions {
    padding: 10px;
    height: 100px;
    overflow-y: auto;
}

.address-sugg {
    margin-bottom: 10px;
    font-size: 12px;
    background: #06438526;
    padding: 10px;
    border-radius: 6px;
    font-family: system-ui;
    color: #000000d6;
    cursor: pointer;
    transition: all 0.1s;

}.address-sugg:hover {
    background: #0643854d;

}





@media (max-width: 345px) {
    .order-card-header {
        display: flex;
        justify-content: space-between;
        margin-bottom: 30px;
        flex-direction: column;
        align-items: flex-start;
    }
    .order-card-credit-card-img > img {
        width: 20px;
        margin-right: 5px;
    }
    .order-card-input-group label {
        font-size: 13px;
    }
    .order-card-label-block {
        width: 89%;
    }
    
}

@media (max-width: 420px) {
    .order-card-header {
        display: flex;
        justify-content: space-between;
        margin-bottom: 30px;
        flex-direction: column;
        align-items: flex-start;
    }
    .order-card-label-block {
            width: 89%;
     }
}

@media (max-width: 460px) {
    .order-card-header {
        display: flex;
        justify-content: space-between;
        margin-bottom: 30px;
        flex-direction: column;
        align-items: flex-start;
    }
    .order-card-label-block {
            width: 87%;
    }
}

@media (max-width: 540px) {
    .order-card-header {
        display: flex;
        justify-content: space-between;
        margin-bottom: 30px;
        flex-direction: column;
        align-items: flex-start;
    }
    .order-card-label-block {
            width: 85%;
    }
}

@media (max-width: 650px) {
    .order-card-header {
        display: flex;
        justify-content: space-between;
        margin-bottom: 30px;
        flex-direction: column;
        align-items: flex-start;
    }
   	.order-card-label-block {
            width: 91%;
    }
}

@media (max-width: 765px) {
    .order-card-header {
        display: flex;
        justify-content: space-between;
        margin-bottom: 30px;
        flex-direction: column;
        align-items: flex-start;
    }
    .order-card-label-block {
            width: 91%;
    }
}

@media (max-width: 993px) {
    .order-card-header {
        display: flex;
        justify-content: space-between;
        margin-bottom: 30px;
        flex-direction: column;
        align-items: flex-start;
    }
    .order-card-label-block {
            width: 86%;
    }
   
}


@media (max-width: 1200px) {
    
    .order-card-label-block {
            width: 84%;
    }
   
}
























