/**
 * All of the CSS for your public-facing functionality should be
 * included in this file.
 */

/**
 * Oil Calculator Styles
 */
.oil-calculator {
    /* max-width: 600px; */
    margin: 0 auto 30px;
    padding: 20px;
    /* background-color: #c94a4a; */
    border-radius: 8px;
    color: white;
}

.oil-calculator-title {
    margin-top: 0;
    margin-bottom: 20px;
    color: white;
    font-size: 24px;
    text-align: center;
}

.oil-calculator-form {
    margin-bottom: 20px;
}

.oil-calculator-field {
    margin-bottom: 15px;
}

.oil-calculator-field label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
    color: white;
}

.oil-calculator-field select,
.oil-calculator-field input {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
    background-color: white;
    color: #333;
}

.oil-calculator-fields-row {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
}

.oil-calculator-fields-row .oil-calculator-field {
    flex: 1;
}

.oil-calculator-min-order {
    text-align: center;
    margin-bottom: 20px;
    font-weight: bold;
}

.oil-calculator-buttons {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

body .oil-calculator button.oil-calculator-button {
    flex: 1;
    padding: 20px 20px;
    border: none;
    background-color: #1a3547;
    color: white;
    font-size: 16px;

    cursor: pointer;
    border-radius: 20px !important;
    -webkit-border-radius: 20px !important; 
    transition: background-color 0.3s;
    font-weight: 500;
    /* text-transform: uppercase; */
    font-family: 'Montserrat', sans-serif
}

.oil-calculator-button:hover {
    background-color: #ffffff !important;
    color: #000000 !important;
}

.oil-calculator-button.secondary {
    background-color: #6c757d;
    color: white;
}

.oil-calculator-button.secondary:hover {
    background-color: #5a6268;
}

.oil-calculator-button:disabled {
    background-color: #cccccc;
    cursor: not-allowed;
}

.oil-calculator-results {
    margin-top: 30px;
    padding: 20px;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    color: #333;
}

.oil-calculator-results h3 {
    margin-top: 0;
    margin-bottom: 15px;
    color: #333;
    font-size: 20px;
}

.oil-calculator-result-item {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid #eee;
}

.oil-calculator-result-label {
    font-weight: bold;
    color: #555;
}

.oil-calculator-total {
    margin-top: 10px;
    padding-top: 10px;
    border-top: 2px solid #ddd;
    font-size: 18px;
    font-weight: bold;
}

.oil-calculator-error {
    color: #d32f2f;
    margin: 5px 0;
    font-size: 14px;
    background-color: rgba(255, 255, 255, 0.8);
    padding: 5px 10px;
    border-radius: 4px;
}

.oil-calculator-loading {
    display: flex;
    align-items: center;
    margin: 10px 0;
    color: white;
}

.oil-calculator-spinner {
    display: inline-block;
    width: 20px;
    height: 20px;
    margin-right: 10px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-top: 3px solid white;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Responsive styles */
@media (max-width: 768px) {
    .oil-calculator {
        padding: 15px;
    }
    
    .oil-calculator-title {
        font-size: 20px;
    }
    
    .oil-calculator-button {
        padding: 10px 15px;
        font-size: 14px;
    }
    
    .oil-calculator-fields-row {
        flex-direction: column;
        gap: 10px;
    }
}

.oil-calculator-field input, .oil-calculator-field select {
    background: white !important;
    color: #000000 !important;
}

.nectar-slide-in-cart .widget_shopping_cart .cart_list li span.quantity{
    color: #000000 !important;
}

.oil-calculator-button.add-to-cart:hover,
.oil-calculator-button.modify-order:hover{
    background: #ef434f !important;
    color: #ffffff !important;
}

.wc-block-cart-item__quantity, 
.nectar-slide-in-cart .widget_shopping_cart .cart_list li span.quantity .modify{
    display: none !important;
}

/* Oil quantity display in cart */
.oil-quantity-display {
    font-weight: 500;
    margin: 5px 0;
    padding: 3px 0;
    display: block;
    font-size: 14px;
}

.oil-price-per-litre-display {
    font-weight: 500;
    margin: 5px 0;
    padding: 3px 0;
    display: block;
    font-size: 14px;
    color: #666;
}

.oil-promotion-display {
    font-weight: 500;
    margin: 5px 0;
    padding: 3px 0;
    display: block;
    font-size: 14px;
    color: #d32f2f;
}

/* Salient theme specific styles */
.nectar-slide-in-cart .widget_shopping_cart_content .cart_list li .oil-custom-info {
    /* margin: 8px 0; */
    padding: 5px 0;
    font-size: 14px;
    line-height: 1.5;
}

.nectar-slide-in-cart .widget_shopping_cart_content .cart_list li .oil-item-price {
    font-weight: 700;
    font-size: 16px;
    margin-bottom: 5px;
}

.nectar-slide-in-cart .widget_shopping_cart_content .cart_list li .oil-quantity,
.nectar-slide-in-cart .widget_shopping_cart_content .cart_list li .oil-price-per-litre {
    font-weight: 500;
    margin-bottom: 3px;
}

.nectar-slide-in-cart .widget_shopping_cart_content .cart_list li .oil-promotions {
    margin-top: 5px;
    border-top: 1px dashed #eee;
    padding-top: 5px;
}

.nectar-slide-in-cart .widget_shopping_cart_content .cart_list li .oil-promotion {
    color: #d32f2f;
    font-weight: 500;
}

/* Style for promotion display in cart */
.oil-promotion-in-cart {
    color: #d32f2f;
    font-weight: 500;
    margin: 5px 0;
    padding: 3px 0;
    display: block;
    font-size: 14px;
    border-top: 1px dashed #eee;
    padding-top: 5px;
}

.woocommerce-cart-form__cart-item .product-name dt,
.widget_shopping_cart_content .cart_list li dt {
    font-weight: 600;
    margin-right: 5px;
}

.woocommerce-cart-form__cart-item .product-name dd,
.widget_shopping_cart_content .cart_list li dd {
    margin-bottom: 5px;
}

/* Highlight promotions with a subtle background */
.woocommerce-cart-form__cart-item .product-name dt:contains("Promotion"),
.widget_shopping_cart_content .cart_list li dt:contains("Promotion") {
    color: #d32f2f;
}

.woocommerce-cart-form__cart-item .product-name dd:contains("-€"),
.widget_shopping_cart_content .cart_list li dd:contains("-€") {
    color: #d32f2f;
    font-weight: 500;
}

.style_slide_in_click .product-meta{
    flex-direction: column;
}


.woocommerce-mini-cart-item.mini_cart_item > a:first-child{
    display: none !important;
}

.style_slide_in_click .product-meta>.product-details{
    align-self: flex-start !important;
}

.style_slide_in_click .product-meta>.quantity .product-price{
    margin-left: 0px !important;
}

.oil-custom-info .oil-quantity, 
.oil-custom-info .oil-price-per-litre{
    display: inline-block !important;
}

.style_slide_in_click .product-meta .product-price{
    display: flex !important; 
    flex-direction: column;
    /* justify-content: space-between; */
    /* width: 100% !important; */
    gap: 5px;
    align-items: flex-start !Important;
}

body .nectar-slide-in-cart .woocommerce.widget_shopping_cart a.remove{
    margin-top: 0px !important;
}

.nectar-slide-in-cart .widget_shopping_cart_content .cart_list li .oil-custom-info .oil-promotions{
    margin-top: 0px !important;
    border: none !Important;
}

.oil-custom-info{
    margin: 0px !important;
}

.oil-promotions{
    padding-top: 0px !important;
}

.nectar-slide-in-cart{
    background: #f5f5f5 !important;
}

.nectar-slide-in-cart.style_slide_in_click .inner>.header [data-inherit-heading-family],
.nectar-slide-in-cart.style_slide_in_click .inner>.header h4{
    color: #000000 !important;
}

.nectar-slide-in-cart.style_slide_in_click .widget_shopping_cart .cart_list li a.remove.with_text{
    text-align: left !important;
}

.mini_cart_item .product-price .amount bdi, 
.mini_cart_item .product-price .amount bdi .woocommerce-Price-currencySymbol{
    font-size: 26px !important;
}

.nectar-slide-in-cart.style_slide_in_click .cart_list .product-meta .product-details>a:not(.remove){
    font-weight: 600 !important;
    color: #021d28 !important;
    letter-spacing: 0px !important;
}

.oil-custom-info .oil-quantity, 
.oil-custom-info .oil-price-per-litre{
    color: #021d28B3 !important;
}

.nectar-slide-in-cart.style_slide_in_click .widget_shopping_cart .cart_list li a.remove.with_text{
    font-size: 14px;
    background: #ef434f !important; 
    padding: 5px 5px !important;
    border-radius: 5px;
    display: block !important;
    width: auto !important;
    color: #ffffff !important;
    transition: .3s;
    margin-top: 5px !important;
}

.nectar-slide-in-cart.style_slide_in_click .widget_shopping_cart .cart_list li a.remove.with_text:hover {
    background: #021d28 !important;
    opacity: 1 !important;
}

.woocommerce-mini-cart__total.total{
    flex-direction: column !important;
    gap: 5px !important;
}

.woocommerce-mini-cart__total.total strong{
color: #021d28B3 !important;
}

.woocommerce-mini-cart__total.total .amount, 
.woocommerce-mini-cart__total.total .amount .woocommerce-Price-currencySymbol{
    color: #021d28 !important;
    font-size: 26px !important;
    font-family: 'Montserrat' !important;
    font-weight: 600 !important;
    letter-spacing: 0px !important;
}
    
.nectar-slide-in-cart.style_slide_in_click .widget_shopping_cart a.button:first-child{
    display: none !important;
}

.nectar-slide-in-cart.style_slide_in_click .widget_shopping_cart a.button.checkout{
    margin-left: 0px !important;
    width: 100% !important;
    font-size: 26px !important;
    font-weight: 600 !important;
    padding: 25px 5px;
}

.woocommerce-mini-cart__total.total{
    display: none !important;
}

.nectar-slide-in-cart .header > span{
    display: none !important;
}

.nectar-slide-in-cart .header .close-cart{
    margin-bottom: 15px !Important;
}


/*****
Checkout
*****/
.woocommerce-checkout .container-wrap{
padding: 0px !important;
}

.woocommerce-checkout .main-content{
    width: 100% !important;
    margin: 0px;
    padding: 0px;
    max-width: 100% !important;
    height: 100% !Important;
    /* background: blue; */
    min-height: 85vh !important;
}

.woocommerce-checkout .wp-block-woocommerce-checkout{
    margin: 0px !important;
    padding: 0px !important;
    min-height: 85vh !important;
    background: #ef434f;
}

.woocommerce-checkout .wc-block-components-sidebar-layout{
    min-height: 86vh !important;
    margin-bottom: -20px;
    border-bottom: 1px solid #1F435B !important;
}

.woocommerce-checkout  .wc-block-components-sidebar-layout .wc-block-components-main{
    padding-left: 15% !important;
    padding-top: 5% !important;
}

.woocommerce-checkout .wc-block-components-sidebar-layout .wc-block-components-main{
    background: #041d28;
}

.woocommerce-checkout .wc-block-components-sidebar{
    padding-top: 5% !important;
    padding-right: 2% !important;
}

.woocommerce-checkout .wc-block-components-title.wc-block-components-title{
    font-size: 26px;
    font-weight: 600;
    letter-spacing: 0px;
}

.woocommerce-checkout .wc-block-components-checkout-step__description{
    margin-bottom: 0px !important;
    padding-bottom: 10px;
}

.wc-block-components-form .wc-block-components-checkout-step{
    margin-bottom: 20px !important;
    /* padding-bottom: 40px !important; */
    /* border-bottom: 1px solid rgba(255,255,255,0.2) !important; */
}

.wc-block-components-radio-control--highlight-checked .wc-block-components-radio-control-accordion-option--checked-option-highlighted,
.wc-block-components-radio-control--highlight-checked label.wc-block-components-radio-control__option--checked-option-highlighted{
    background: #183447 !important;
    box-shadow: none !Important;
    padding: 20px !important;
}

#radio-control-wc-payment-method-options-ag_authipay_checkout__content p{
    padding-bottom: 0px !important;
}

.woocommerce-checkout .wc-block-components-form .wc-block-components-text-input input,
.woocommerce-checkout .wc-block-components-form .wc-block-components-select-input select{
    background: #183447 !important;
    color: #ffffff !important;
}

.wc-blocks-components-select .wc-blocks-components-select__container{
    background: #183447 !important;
        color: #ffffff !important;
}

.woocommerce-checkout .wc-blocks-components-select .wc-blocks-components-select__expand{
    fill: rgba(255,255,255,0.7) !important;
}

.woocommerce-checkout .wc-blocks-components-select .wc-blocks-components-select__select{
    color: #ffffff !important;
}

.woocommerce-checkout .wc-blocks-components-select .wc-blocks-components-select__label{
    color: rgba(255,255,255,0.7) !important;
}


.woocommerce-checkout .wc-block-components-form .wc-block-components-text-input label,
.woocommerce-checkout .wc-block-components-form .wc-block-components-select-input label {
    color: rgba(255,255,255,0.7) !important;
}

.woocommerce-checkout .wc-block-components-form .wc-block-components-text-input input::placeholder {
    color: rgba(255,255,255,0.7) !important;

}

.woocommerce-checkout .wc-block-components-checkbox__label{
    color: rgba(255,255,255,0.7) !important;
}

.woocommerce-checkout .wc-block-components-textarea{
    background: #183447 !important;
    color: #ffffff !important;
}

.woocommerce-checkout .wc-block-components-textarea::placeholder{
    color: rgba(255,255,255,0.7) !important;
    font-size: 18px !important;
}

.woocommerce-checkout .wc-block-components-checkbox__label{
    font-size: 18px !important;
}

.woocommerce-checkout .wc-block-components-form .wc-block-checkout__order-notes.wc-block-components-checkout-step{
padding-bottom: 20px !important;
}

.woocommerce-checkout .wc-block-checkout__terms{
    padding-top: 0px !important;
}

.wc-block-cart .wc-block-cart__submit-container .wc-block-components-button:not(.is-link):hover,
.wp-block-woocommerce-checkout .wc-block-components-checkout-place-order-button:not(.is-link):hover{
        background: #183447 !important;
    color: #ffffff !important;
}

.wc-block-checkout__shipping-option{
    display: none !important;
}

/*****
Checkout Sidebar
****/
.wc-block-components-checkout-order-summary__title-text {
    font-size: 26px !important;
    font-weight: 600 !important;
    letter-spacing: 0px !important;
    margin-bottom: 0px !important;
    padding-bottom: 15px !important;
    margin-left: 0px !important;
    border-bottom: 1px solid rgba(255,255,255,0.2) !important;
}


.wp-block-woocommerce-checkout-order-summary-block{
    border-color: rgba(255,255,255,0.0) !important;
    padding: 20px !important;
    padding-top: 0px !important;
    padding-bottom: 0px !Important;
}

.woocommerce-checkout .wc-block-components-order-summary.is-large{
    padding-left: 0px !important;
}

.woocommerce-checkout .wc-block-components-order-summary-item__image{
    display: none !important;
}

.woocommerce-checkout .wc-block-components-product-name{
    font-size: 26px !important;
    font-weight: 600 !important;
    letter-spacing: 0px !important;
}

.woocommerce-checkout .wc-block-components-order-summary-item__individual-prices,
.woocommerce-checkout .wc-block-components-product-details__total-price{
    display: none !important; 
}

.wc-block-components-order-summary-item{
    border-bottom: 1px solid rgba(255,255,255,0.2) !important;
}

.wc-block-components-order-summary-item:last-child{
    border: none !important;
}

.woocommerce-checkout .wp-block-woocommerce-checkout-order-summary-totals-block{
/* display: none !important; */
}

.woocommerce-checkout .wc-block-components-totals-wrapper{
    border-color: rgba(255,255,255,0.2) !Important;
}

.woocommerce-checkout .wc-block-components-order-summary .wc-block-components-order-summary-item__description{
    padding-left: 0px !important;
}

.woocommerce-checkout .wc-block-components-totals-coupon.wc-block-components-panel{
    padding-left: 0px !important;
}

.woocommerce-checkout .wc-block-components-totals-item.wc-block-components-totals-footer-item{
    padding-left: 0px !important;
}

.wc-block-components-totals-coupon__button[disabled]{
    background: #183447 !important;
    color: #ffffff !important;
    opacity: 0.7 !important;
}

body[data-form-submit="regular"].woocommerce-checkout .wc-block-components-totals-coupon__button[type="submit"]{
    background: #183447 !important;
        color: #ffffff !important;
        font-family: 'Montserrat' !important;
        font-size: 16px !important;
        padding: 12px 20px !important;
}

.woocommerce-checkout .woocommerce-form-coupon-toggle .woocommerce-info{
    color: #ffffff !important;
}

.wc-block-checkout__shipping-fields p{
    display: none !important;
}

.wc-block-components-checkout-step__heading{
    margin-bottom: 0px !important;
}

.wc-block-checkout__contact-fields p{
    display: none !important;
}

.wc-block-components-address-card__edit{
    background: #ef434f !important;
    padding: 5px !important;
    border-radius: 5px !important;
    color: #ffffff !important;
}

.wc-block-components-address-card__edit:hover{
    background: #183447 !important;
    opacity: 1 !important;
    color: #ffffff !important;
    text-decoration: none !important;
}
    
.wc-block-components-address-card{
    padding-left: 0px !important;
}

.wc-block-checkout__payment-method{
    display: none !important;
}

.wc-block-checkout__terms{
    display: none !important;
}

.wc-block-components-checkout-return-to-cart-button{
background: #183447 !important;
padding: 12px 10px !important;
width: 30% !important;
color: #ffffff !important;
text-align: center;
display: flex;
align-items: center;
justify-content: center;
border-radius: 5px !important;
transition: .3s !important;
}

.wc-block-components-checkout-return-to-cart-button svg{
    position: relative !important;
    transform: none !Important;
    padding-right: 5px !important;
}

.wc-block-components-checkout-return-to-cart-button:hover{
    background: #ef434f !important;
}

.woocommerce-checkout .wc-block-checkout__shipping-fields{
    padding-bottom: 20px !important;
}

.wc-block-checkout__contact-fields.wc-block-components-checkout-step{
    border: none !important;
}

.wc-block-checkout__add-note .wc-block-components-textarea{
    height: 100px !important;
    color: #ffffff !important;
    font-size: 18px !important;
}

.wc-block-components-checkout-return-to-cart-button{
    display: none !important;
}

.wp-block-woocommerce-checkout-actions-block .wc-block-checkout__actions_row .wc-block-components-checkout-place-order-button{
    width: 100% !important;
    height: 70px !Important;
    font-weight: 600 !important;
    font-size: 26px !important;
    font-family: 'Montserrat', sans-serif !important;
}

/* Remove button in checkout order summary */
.oil-remove-item-button {
    /* margin-top: 5px; */
    text-align: right;
    display: block;
    clear: both;
    position: relative;
    z-index: 5;
}

.oil-remove-item-button a {
    color: rgba(255,255,255,0.7);
    border-bottom: 1px solid rgba(255,255,255,0.7);
    font-size: 0.85em;
    line-height: 0.85em;
    font-weight: 600;
    padding-bottom: 3px;
    margin-bottom: 8px;
    transition: all 0.2s ease;
    text-decoration: none;
    display: inline-block;
}

.oil-remove-item-button a:hover {
    color: #ffffff;
    border-color: #ffffff;
    padding-bottom: 8px;
    margin-bottom: 3px;
    text-decoration: none;
}

.oil-remove-item-button a.removing {
    opacity: 0.5;
    cursor: not-allowed;
    pointer-events: none;
}

/* Ensure the remove button is visible in all checkout themes */
.wc-block-components-order-summary-item__total-price .oil-remove-item-button,
.product-total .oil-remove-item-button {
    position: relative;
    z-index: 10;
    /* margin-top: 8px; */
}

/* Mobile-specific styles */
@media (max-width: 768px) {
    .oil-remove-item-button {
        text-align: center;
        margin-top: 8px;
    }
    
    .oil-remove-item-button a {
        font-size: 0.8em;
        padding-bottom: 3px;
            margin-bottom: 8px;
        border: 1px solid rgba(255,255,255,0.7);
        border-radius: 3px;
    }
    
    .oil-remove-item-button a:hover {
        background-color: rgba(255,255,255,0.1);
        padding-bottom: 8px;
            margin-bottom: 3px;
    }
}

/* Promotion Banner Styles */
.oil-calculator-promotions {
    margin-bottom: 0.5rem;
    display: none; /* Hidden by default */
}

.promotion-banner {
    background-color: #EDABB1;
    border: 2px solid #E27881;
    color: #1b3547;
    padding: 1rem;
    border-radius: 15px;
    margin-bottom: 1rem;
    font-weight: 500;
    display: flex;
    flex-direction: column;
    text-align: center;
    line-height: 1.6 !important;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.promotion-banner-title {
    font-weight: 700;
    margin-bottom: 0;
    font-size: 18px;
    color: #1b3547;
}

.promotion-banner-content {
    color: #1b3547;
    font-size: 14px !important;
}

.promotion-banner.percentage {
    background-color: #EDABB1;
    border-color: #E27881;
}

.promotion-banner.cents-per-litre {
    background-color: #EDABB1;
    border-color: #E27881;
}

.oil-calculator-result-value{
    padding-left: 10px;
    text-align: right !important;
}

/* Checkout form layout customization */
.woocommerce-checkout .form-row-first,
.woocommerce-checkout .form-row-last {
    width: 49% !important;
    float: left;
    clear: none !important;
}

.woocommerce-checkout .form-row-last {
    float: right;
}

/* Fix for specific themes that might override the layout */
.woocommerce-billing-fields p.form-row-first,
.woocommerce-billing-fields p.form-row-last {
    display: inline-block !important;
    width: 49% !important;
    margin-right: 0 !important;
    clear: none !important;
}

/* WooCommerce Blocks compatibility */
.wc-block-components-checkout-form .wc-block-components-checkout-step__container .wc-block-components-text-input.form-row-first,
.wc-block-components-checkout-form .wc-block-components-checkout-step__container .wc-block-components-text-input.form-row-last {
    width: 49% !important;
    display: inline-block !important;
}

.wc-block-components-checkout-form .wc-block-components-checkout-step__container .wc-block-components-text-input.form-row-last {
    float: right !important;
}


.wc-block-components-totals-item{
    padding-left: 0px !important;
}

.wp-block-woocommerce-checkout-order-summary-totals-block{
    border-color: rgba(255,255,255,0.2) !important;
}

.wc-block-components-totals-item__label{
    font-weight: 600 !important;
}

.wc-block-components-chip.wc-block-components-chip--radius-large{
    padding-left: 15px !important;
    padding-right: 15px !important;
    padding-top: 5px !important;
    padding-bottom: 5px !important;
    border-color: #ffffff !important;
    background: #ffffff !important;
    color: #000000 !important;
}

.wc-block-components-totals-discount .wc-block-components-totals-item__value{
    color: #ffffff !important;
}

.wc-block-components-totals-shipping{
    display: none !important;
}

#payment_amount{
    background: white;
}

#pay-bill-button{
    background: #183447;
    color: #ffffff !important;
    border-radius: 20px !important;
    font-family: 'Montserrat', sans-serif !important;
    font-size: 16px !important;
    padding: 20px 20px !important;
}

#pay-bill-button:hover{
    transform: none !important;
    background: white !important;
    color: #183447 !important;
}

#oil-pay-bill-form label{
    font-weight: 600 !important;
    padding-bottom: 8px !important;
}

@media(min-width: 600px){
.wc-block-components-checkout-step__content #contact{
    width: 50% !important;
    float: left !important;
}

.wc-block-components-checkout-step__content .accountNumberField{
    width: 50% !important;
    float: right !important;
    padding-left: 15px !important;
}

.wc-block-components-checkout-step__content .accountNumberField .wc-block-components-text-input {
    margin-top: 16px !important;
}



}


.marketingConsent span{
    color: rgba(255,255,255,0.7) !important;
    font-size: 18px !important;
    padding-top: 4px !important;
}

.wc-block-checkout__order-notes{
    margin-top: 20px !important;
}