.list_of_fields{
    display: flex;
    flex-direction: column;
}
.payment_summary_section{
    padding: 2em;
}
.payment_sections{
    display: flex;
}
.list_of_fields p{
    display: flex;
    flex-direction: column;
    width: 200px;
}
.billing_field{
    width: 100%;
}
.billing-details{
    width: 30%;
    max-width: 414px;
}
.input-group{
    margin-bottom: 15px;
    label{
        font-size: 1rem;
        font-weight: 400;
        /* color: gray; */
    }
}

.error-banner-payment-details {
    select, input{
    width: 100%;
    margin-top: 8px;
    background-color: #fff;
    font-size: 0.8em !important;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border-radius: 5px;
    border: 1px solid lightgray !important;
    -webkit-transition: border-color .2s ease;
    transition: border-color .2s ease;
    }
}

tr{
    margin-top: 1em;
    margin-bottom: 1em;
}

tbody{
    display: grid;
}

.error-banner-payment-details{
    flex-direction: row;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding: 3% 0;
    font-size: 20px;
    line-height: 1.4em;
    display: flex;
    position: relative;
}

@media screen and (max-width:767px){
    .payment_summary_section {
        padding: 2em;
        max-width: 414px;
        width: 80%;
        margin: auto;
    }
    .billing-details {
        width: 80%;
        max-width: 414px;
        margin: auto;
    }

    .error-banner-payment-details {
        display: block;
    }

    .site-logo{
        height: 3em;
        display: flex;
        padding: 0.5em 0 1em 1em;
        position: absolute;
        left: 0;
        top: 0;
    }
}