.elementor-66 .elementor-element.elementor-element-413b763b{--display:flex;--padding-top:40px;--padding-bottom:40px;--padding-left:0px;--padding-right:0px;}.elementor-widget-heading .elementor-heading-title{font-family:var( --e-global-typography-primary-font-family ), Manrope;font-weight:var( --e-global-typography-primary-font-weight );color:var( --e-global-color-primary );}/* Start custom CSS for shortcode, class: .elementor-element-5d7c0a4c *//* Common Colors */
:root {
    --primary-color: #293133;
    --primary-color-light: #FAFAFA;
    --background-color: #FAFAFA;
    --text-color: #7A7A7A;
}

/*******GLOBAL STRUCTURAL LAYOUT*******/

.woocommerce {
    display: flex;
    flex-direction: column;
}

/* WooCommerce Layout Structure */
@media (min-width: 980px) {
    /* Billing Details Side */
    .woocommerce-checkout .woocommerce .col2-set,
    .woocommerce-checkout .woocommerce-page .col2-set {
        float: left;
        width: 55%;
    }
    /* Order Review Side */
    .woocommerce-checkout #order_review_heading,
    .woocommerce-checkout .woocommerce #order_review,
    .woocommerce-checkout .woocommerce-page #order_review {
        float: left;
        width: 43%;
        margin-left: 2%;
    }
}

@media (max-width: 979px) {
    /* Billing Details Margin */
    .woocommerce-checkout .woocommerce .col2-set,
    .woocommerce-checkout .woocommerce-page .col2-set {
        margin-bottom: 2em;
    }
}

/*******LEFT SIDE DESIGN*******/

/* Form Container Styles */
.woocommerce-checkout .woocommerce .col2-set,
.woocommerce-checkout .woocommerce-page .col2-set {
    background: white;
    padding: 1em 2em;
    border-radius: 2px;
    border: 1px solid #DDD;
}

.woocommerce .col2-set .col-1,
.woocommerce-page .col2-set .col-1,
.woocommerce .col2-set .col-2,
.woocommerce-page .col2-set .col-2 {
    float: left;
    width: 100%;
}

/* Form Field Title Styles */
label {
    font-size: 14px;
    line-height: 1;
    text-transform: uppercase !important;
    font-weight: 400;
    color: var(--text-color);
    margin-bottom: 0em;
}

/* Stile specifico per le label dei radio button */
input[type="radio"] + label {
    font-size: 16px; /* Esempio: aumenta la dimensione per differenziarle */
    text-transform: none !important;
}

button,
select {
    font-size: 14px;
    line-height: 1;
    text-transform: uppercase !important;
    font-weight: 400;
    color: var(--text-color);
    margin-bottom: 0em;
}

/* Form Field Styles */
input.text,
input.title,
input[type=email],
input[type=password],
input[type=tel],
input[type=text],
select,
textarea {
    color: #FAFAFA;
    border: 1px solid #DDD !important;
    border-radius: 2px !important;
    background-color: white;
    height: 3em !important;
}

.woocommerce-account form .form-row,
.woocommerce-checkout form .form-row {
    margin-bottom: 1em;
}

/* Form Field Dropdown Styles */
.select2-container--default .select2-selection--single {
    background-color: #fff;
    border: 1px solid #DDD;
    border-radius: 2px;
    height: 3em;
}

.select2-container .select2-selection--single .select2-selection__rendered {
    line-height: 2em;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 100%;
    position: absolute;
    top: 1px;
    right: 5px;
    width: 25px;
}

.woocommerce-account form .payment_methods label,
.woocommerce-checkout form .payment_methods label {
    padding-left: 0px;
}

/* Form Field Focus Color Style */
textarea:focus,
input[type=text]:focus,
input[type=password]:focus,
input[type=datetime]:focus,
input[type=datetime-local]:focus,
input[type=date]:focus,
input[type=month]:focus,
input[type=time]:focus,
input[type=week]:focus,
input[type=number]:focus,
input[type=email]:focus,
input[type=url]:focus,
input[type=search]:focus,
input[type=tel]:focus,
input[type=color]:focus,
.uneditable-input:focus {
    border-color: var(--primary-color) !important;
    box-shadow: none;
    outline: 0;
}

.radio input[type=radio],
.checkbox input[type=checkbox] {
    top: 0px;
}

/*******RIGHT SIDE DESIGN*******/

/* Order Review Headline Removal */
h3#order_review_heading {
    display: none; /*Remove This if You Want The Order Review Heading*/
}

/* Order Review Container Styles */
div#order_review {
    background: white;
    padding: 2em 2em;
    border-radius: 2px;
    border: 1px solid #DDD;
    
    position: sticky; /*Remove This if You Don't Want Order Review To Be Sticky*/
    top: 100px; /*Remove This if You Don't Want Order Review To Be Sticky*/
}
/*Order Review Order*/

div#order_review {
    display: flex;
    flex-direction: column; /*Change this to column-reverse to reverse the order*/
}

/*Hide Cart Contents and Only Show Total + Shipping*/

.woocommerce-checkout-review-order tbody {
  display: table-row-group; /*Set to "none" if you'd like to hide */
}

/* Remove Product and Subtotal Headlines */
table.shop_table.woocommerce-checkout-review-order-table thead {
    display: none; /*Remove This if You Want Headlines*/
}

table.shop_table.woocommerce-checkout-review-order-table {
    color: var(--text-color);
    
    font-size: 16px; /*Adjust This To Adjust Order Review Font Size*/
}



/* Target every other cart item and set background color */
tr.cart_item:nth-child(odd) {
    background-color: #FFF !important;
}

tr.cart_item:nth-child(even) {
    background-color: white !important;
}

/* Target PRODUCT QUANTITY */
strong.product-quantity {
    background: var(--primary-color-light);
    color: red;
    font-size: 16px;
}

.woocommerce td.product-name .wc-item-meta p,
.woocommerce td.product-name .wc-item-meta:last-child,
.woocommerce td.product-name dl.variation p,
.woocommerce td.product-name dl.variation:last-child {
    margin-bottom: 0;
    font-size: 12px !important;
    font-weight: normal;
  	color: var(--text-color);
}

td.product-name {
    width: 100%;
    
}


table th,
table td {
    border: none !important;
    padding: 20px !important;
}


tr.cart-subtotal {
    display: none; /*Remove this if you'd like to display the subtotal*/
}

/* Order Total Line Item Styles */
tr.order-total {
    color: #293133;
    background-color: #FAFAFA;
}

table.woocommerce-checkout-review-order-table tr.order-total td {
    font-weight: 300 !important;
}

/* Imposta la riga con display flex per gestire l'intestazione e le opzioni */
tr.woocommerce-shipping-totals.shipping {
    display: flex !important;
    flex-direction: column !important;
    margin-bottom: 0 !important;
}

/* Mantieni le opzioni radio button sotto l'intestazione */
.woocommerce-shipping-methods {
    list-style: none !important;
    display: block !important; /* Le opzioni sono disposte in verticale */
}

/* Le opzioni di spedizione sono ora disposte verticalmente */
.woocommerce-shipping-methods li {
    display: flex !important;

    gap: 5px !important; /* Distanza tra il radio button e l'etichetta */
    margin-bottom: 20px !important; /* Distanza tra le opzioni */
}

/* Etichetta e prezzo sono sempre sulla stessa riga */
.woocommerce-shipping-methods label {
    display: flex !important;
    align-items: center !important;
    gap: 10px !important;
}


 

#add_payment_method #payment,
.woocommerce-cart #payment,
.woocommerce-checkout #payment {
    background: white;
    border-radius: 5px !important;
    border: 1px solid #ddd !important; /* Aggiungi !important per forzare il bordo */
}


#add_payment_method #payment div.payment_box,
.woocommerce-cart #payment div.payment_box,
.woocommerce-checkout #payment div.payment_box {
    background-color: #FAFAFA;
    color: black;
    border: 1px solid #ddd !important; /* Aggiungi !important per forzare il bordo */
    
}

#add_payment_method #payment div.payment_box::before,
.woocommerce-cart #payment div.payment_box::before,
.woocommerce-checkout #payment div.payment_box::before {
    display: none;
}

/* Stripe Form Field Styles */
.wc-stripe-elements-field,
.wc-stripe-iban-element-field {
    border: 1px solid #d9d9d9;
    border-radius: 2px;
    background-color: #fff;
    padding: 15px;
}

input#wc-stripe-new-payment-method {
    margin-right: 1em;
}

fieldset#wc-authnet-cc-form .input-text {
    height: 2em;
}

/* Place Order Button Styles */
#place_order {
    width: 100%;
    color: #fff;
    border: none;
    border-radius: 2px;
    box-shadow: rgba(0, 0, 0, 0.28) 0px 2px 8px 0px;
    padding: 1em;
    background: #293133; /* Change This to Change Button Color */
}

/* Place Order Button Styles

#place_order:hover {
    color: rgba(255, 255, 255, 0.5);
}

*/

/*******COUPON & ALERT STYLES*******/

.woocommerce-info,
.woocommerce-message {
    background-color: var(--background-color);
    color: var(--text-color);
    border: none;
}

.checkout_coupon p.form-row.form-row-last {
    float: none;
}

.checkout_coupon button.button {
    background-color: #293133;
    color: white;
    text-transform: none !important;
    font-weight: 400;
    padding: 1em;
}

/* Coupon Icon */
.woocommerce-info::before,
.woocommerce-error::before {
    display: none;
}

.woocommerce-error,
.woocommerce-info,
.woocommerce-message {
    padding: 1em;
}

form.checkout_coupon.woocommerce-form-coupon {
    padding: 3em;
    background: white;
    border-radius: 2px;
    margin-top: 0em;
    margin-bottom: 2em;
}

/* Error Alert */
.woocommerce-error {
    background-color: #ff7e7e;
    border: none;
    color: #761f1f;
}

.woocommerce-error,
.woocommerce-info,
.woocommerce-message {
    text-shadow: none;
}/* End custom CSS */