@import "icons.css";
dl.order_item_meta_dl {
    display: grid;
    grid-template-columns: 1fr 2fr; /* Adjust column sizes */
    padding-top: 4px;
    font-size:12px;
    max-width: 450px;
}

dl.order_item_meta_dl dt {
    font-weight: bold;
}

dl.order_item_meta_dl dd {
    margin: 0;
}

dl.order_item_meta_dl dd p {
    font-size:12px;
}

/* Ensure the icon is properly styled */
.woocommerce-MyAccount-navigation li.woocommerce-MyAccount-navigation-link--user-coupons a:before,
.woocommerce-MyAccount-navigation li.woocommerce-MyAccount-navigation-link--points-and-rewards a:before {
    font-weight: 900; /* Needed for solid style icons */
}

.woocommerce table.shop_table_responsive tr td::before, .woocommerce-page table.shop_table_responsive tr td::before {content: unset!important;}

.woocommerce-back-to-orders {
    text-align: end;
    margin-bottom: 15px;
    font-size: 18px;
}

@media (min-width: 992px) {
    .woocommerce-account .woocommerce-MyAccount-content {
        padding-left: 20px;
    }
    .woocommerce-account .woocommerce-MyAccount-navigation {
        float: left!important;
        width: 30% !important;
    }
    .woocommerce-account .woocommerce-MyAccount-content {
        float: right!important;
        width: 68%!important;
    }
}

@media (min-width: 1200px) {
    .woocommerce-account .woocommerce-MyAccount-navigation {
        width: 20% !important;
    }
    .woocommerce-account .woocommerce-MyAccount-content {
        width: 78%!important;
    }
}

@media (max-width: 992px) {
    nav.woocommerce-MyAccount-navigation ul{display:none}
    .woocommerce-account .woocommerce-MyAccount-navigation {
        float: none!important;
        width: 100% !important;
    }
    .woocommerce-account .woocommerce-MyAccount-content {
        float: none!important;
        width: 100%!important;
    }
    select.mobile-select {
        height: 42px;
        width: 100%;
        border: 1px solid #ddd;
        padding: 0 39px 0 15px;
        margin-bottom: 30px;
        appearance: none;
    }
    .woocommerce-MyAccount-navigation {
        position: relative;
    }
    .woocommerce-MyAccount-navigation:after {
        content: "\e904";
        font-family: "webex-service";
        width: 15px;
        height: 15px;
        display: block;
        position: absolute;
        right: 10px;
        top: 10px;
    }
}

nav.woocommerce-MyAccount-navigation ul li {
    width: 100% !important;
    margin: 0;
    display: block;
    padding: 10px 20px;
    text-align: start;
    border-bottom: 1px solid #ddd;
}

.woocommerce-pagination {
    text-align: center;
    margin: 20px 0;
}

strong.code {
    border-bottom: 1px dashed #767676;
    cursor: pointer;
    padding-bottom: 2px;
}

.woocommerce-pagination a {
    display: inline-block;
    padding: 4px 8px;
    background-color: #f8f8f8;
    color: #333;
    font-size:13px;
    text-decoration: none!important;
}

.woocommerce-pagination a:hover {
    text-decoration: none;
    background-color: #e9e9e9;
}

.spinner {
    border: 2px solid transparent;
    border-top: 2px solid #fff; /* Assuming the button text is white */
    border-right: 2px solid #fff;
    border-radius: 50%;
    width: 14px;
    height: 14px;
    animation: spin 1s linear infinite;
    margin-left: 5px;
    vertical-align: middle;
    display: none; /* Initially hidden */
}

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

.user-action-form {
    margin-top: 20px;
    text-align: center;
}

.user-action-form label {
    display:block;
}

.form-field {
    margin-bottom: 15px;
}

.or-divider {
    font-weight: bold;
    margin: 10px 0;
}

#form-container button {
    padding: 10px 15px;
    background-color: #4CAF50;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

#form-container button:hover {
    background-color: #45a049;
}

#success-message {
    text-align: center;
    margin-top: 20px;
    padding: 10px;
    background-color: #4CAF50;
    color: white;
    border-radius: 4px;
    display: none; /* Initially hidden */
}



.checkmark {
    font-weight: bold;
    color: white;
    margin-right: 10px;
}

/* Toast Container */
#toast {
    border-radius: 4px;
    padding: 6px 12px;
    position: fixed;
    z-index: 1;
    left: 50%;
    bottom: 30px;
    font-size: 12px;
    background-color: #333;
    visibility: hidden;
    color: #fff;
    text-align: center;
    transform: translateX(-50%); /* Center the toast */
}

/* Show the toast when visible */
#toast.show {
    visibility: visible;
    -webkit-animation: fadein 0.5s, fadeout 0.5s 2.5s;
    animation: fadein 0.5s, fadeout 0.5s 2.5s;
}

/* Animations to fade the toast in and out */
@-webkit-keyframes fadein {
    from {bottom: 0; opacity: 0;}
    to {bottom: 30px; opacity: 1;}
}

@keyframes fadein {
    from {bottom: 0; opacity: 0;}
    to {bottom: 30px; opacity: 1;}
}

@-webkit-keyframes fadeout {
    from {bottom: 30px; opacity: 1;}
    to {bottom: 0; opacity: 0;}
}

@keyframes fadeout {
    from {bottom: 30px; opacity: 1;}
    to {bottom: 0; opacity: 0;}
}

.webexpert-coupon-status {
    display: inline-flex;
    line-height: 2em;
    color: #777;
    background: #e5e5e5;
    border-radius: 4px;
    border-bottom: 1px solid rgba(0,0,0,.05);
    cursor: inherit!important;
    white-space: nowrap;
    max-width: 100%;
    padding: 0 1em;
    overflow: hidden;
    text-overflow: ellipsis;
    font-size:12px;
}

.webexpert-coupon-status.webexpert-coupon-status-active {
    background: #c6e1c6;
    color: #5b841b;
}

.webexpert-coupon-status.webexpert-coupon-status-used {
    background: #c8d7e1;
    color: #2e4453;
}


.woocommerce-orders table.shop_table_responsive tr {
    background: #fff;
    margin-bottom: 10px;
    display: block;
}
.woocommerce-orders table.shop_table_responsive td {
    padding: 16px!important;
    display: block;
    border: none!important;
}
.woocommerce-orders .woocommerce table.shop_table_responsive tr td {
    text-align: start!important;
    background: #f5f5f5;
}
.woocommerce-orders table.shop_table_responsive td a {
    display: flex;
    width: 100%;
    gap: 10px;
}
.woocommerce-orders table.shop_table_responsive span.order-status {
    font-size: 16px;
    color: #000;
    display: block;
}
.woocommerce-orders table.shop_table_responsive span.order-items {
    font-size: 12px;
    font-weight: 400;
    display: block;
    color: #000;
    margin-bottom: 10px;
}
.woocommerce-orders table.shop_table_responsive .order-product-images {
    white-space: nowrap;
}
.woocommerce-orders table.shop_table_responsive .order-product-images img {
    width: 100%;
    max-width: 50px;
    height: auto;
    display: inline-block !important;
    margin-right: 5px;
    aspect-ratio: 1 / 1;
    object-fit: cover;
}
@media (min-width: 768px) {
    .woocommerce-orders table.shop_table_responsive .order-product-images img {
        max-width: 60px;
    }
}
.woocommerce-orders table.shop_table_responsive .column-1 {
    width: 100%;
}
.woocommerce-orders table.shop_table_responsive .column-2 {
    position: relative;
}
.woocommerce-orders table.shop_table_responsive .column-2 span.icon {
    position: absolute;
    right: 0;
    bottom: 0;
    font-size: 25px;
    transform: rotate(-90deg);
    color: #000;
}
.woocommerce-orders table.shop_table_responsive .column-2 span.order_id {
    font-size: 12px;
    font-weight: 400;
    display: block;
    color: grey;
    text-align: end;
}
.woocommerce-orders table.shop_table_responsive .column-2 span.price {
    display: block;
    text-align: end;
    font-size: 12px;
}
.woocommerce-orders table.shop_table_responsive tr td::before {
    content: unset;
}
.woocommerce-orders table.shop_table_responsive .wcicon-down-arrow:before {
    content: "\e904" !important;
    font-family: 'webex-service' !important;
}


.woocommerce-view-order a.button {
    border-radius: 0;
    background: #000;
    color: #fff;
}
.woocommerce-view-order a.button:hover {
    background: #000;
    color: #fff;
}

.woocommerce-view-order h2.woocommerce-column__title {
    font-size: 16px;
    color: grey;
    margin-bottom: 5px;
    text-align: start!important;
}
.woocommerce-view-order h2.woocommerce-order-details__title {
    font-size: 16px;
    color: grey;
    margin-bottom: 5px;
    text-align: start!important;
}
.woocommerce-view-order address {
    font-weight: bold;
    margin-bottom: 15px !important;
    border: none !important;
    padding: 0 !important;
}

.woocommerce-view-order td.woocommerce-table__product-name.product-name {
    display: flex;
    align-items: center;
    gap: 10px;
}

.woocommerce-view-order td.woocommerce-table__product-name.product-name img {
    width: 100%;
    height: auto;
    min-width: 60px;
    max-width: 60px;
}

.woocommerce-view-order ul.wc-item-meta {
    padding: 0;
    display: block;
}

.woocommerce-view-order table.shop_table td {
    border-top: 1px solid rgba(0, 0, 0, .1);
    padding: 10px 0!important;
    vertical-align: middle;
    line-height: 1.5em;
}

/* order received */

.woocommerce-order-received .woocommerce-order {
    display: flex;
    flex-direction: column;
}
.woocommerce-order-received p.woocommerce-notice.woocommerce-notice--success.woocommerce-thankyou-order-received {
    display: block;
    order: 1!important;
    font-size: 18px;
}
.woocommerce-order-received .buttons-section {
    order: 4;
}
.woocommerce-order-received .woocommerce ul.order_details {
    order: 3;
}
.woocommerce-order-received .woocommerce .woocommerce-order .woocommerce-customer-details {
    order: 2!important;
    padding: 0;
    width: 100%;
}
.woocommerce-order-received .woocommerce-order section.woocommerce-order-details {
    order: 5 !important;
    width: 100%;
}

.woocommerce-order-received .woocommerce-back-to-orders {display: none!important;}

.woocommerce-order-received p.woocommerce-notice.woocommerce-notice--success.woocommerce-thankyou-order-received:before {
    content: "\e90b";
    font-family: 'webex-service';
    display: inline-flex;
    margin-right: 5px;
}

.woocommerce-order-received .woocommerce .woocommerce-order .woocommerce-customer-details > h2.woocommerce-column__title {
    font-size: 16px;
    color: grey;
    margin-bottom: 5px;
    text-transform: capitalize;
    font-weight: 400;
    border: none;
    padding: 0;
}

.woocommerce-order-received .woocommerce .woocommerce-order .woocommerce-customer-details > address {
    background: none;
    font-weight: bold;
    text-align: center;
    padding: 0 !important;
    font-size: 16px;
    margin-bottom: 25px;
}

.woocommerce-order-received .woocommerce-column.woocommerce-column--billing-address h2.woocommerce-column__title {
    font-size: 16px;
    text-align: start;
    color: #000;
    padding: 0;
    border: none;
    margin-bottom: 10px;
}

.woocommerce-order-received .woocommerce-column.woocommerce-column--billing-address h2.woocommerce-column__title:before {
    content: "\e900";
    font-family: 'webex-service';
    display: inline-flex;
    margin-right: 10px;
    font-size: 22px;
    vertical-align: middle;
}

.woocommerce-order-received .woocommerce-column.woocommerce-column--billing-address address {
    background: none;
    padding: 0 !important;
    margin-bottom: 15px;
}

.woocommerce-order-received .woocommerce-column.woocommerce-column--shipping-address h2.woocommerce-column__title {
    font-size: 16px;
    text-align: start;
    color: #000;
    padding: 0;
    border: none;
    margin-bottom: 10px;
}

.woocommerce-order-received .woocommerce-column.woocommerce-column--shipping-address h2.woocommerce-column__title:before {
    content: "\e90a";
    font-family: 'webex-service';
    display: inline-flex;
    margin-right: 10px;
    font-size: 25px;
    vertical-align: middle;
}

.woocommerce-order-received .woocommerce-column.woocommerce-column--shipping-address address {
    background: none;
    padding: 0 !important;
    margin-bottom: 15px;
}

.woocommerce-order-received .woocommerce .woocommerce-order ul.order_details li.order {display: none!important;}
.woocommerce-order-received .woocommerce .woocommerce-order ul.order_details li.date {display: none!important;}
.woocommerce-order-received .woocommerce .woocommerce-order ul.order_details li.email {display: none!important;}
.woocommerce-order-received .woocommerce .woocommerce-order ul.order_details li.total {display: none!important;}

.woocommerce-order-received .woocommerce .woocommerce-order ul.order_details {
    background: none;
    padding: 0;
    display: block;
    margin: 0;
}

.woocommerce-order-received .woocommerce ul.order_details li {
    display: block!important;
    padding: 0;
    margin: 0;
}

.woocommerce-order-received .woocommerce .woocommerce-order ul.order_details li.method h2 {
    font-size: 16px;
    text-align: start;
    color: #000;
    padding: 0;
    border: none;
    margin-bottom: 10px;
    font-weight: bold;
    letter-spacing: 0;
}

.woocommerce-order-received .woocommerce .woocommerce-order ul.order_details li.woocommerce-order-overview__shipping-method.method h2:before {
    content: "\e901";
    font-family: 'webex-service';
    display: inline-flex;
    margin-right: 10px;
    font-size: 22px;
    vertical-align: middle;
}

.woocommerce-order-received .woocommerce .woocommerce-order ul.order_details li.woocommerce-order-overview__payment-method.method h2:before {
    content: "\e903";
    font-family: 'webex-service';
    display: inline-flex;
    margin-right: 10px;
    font-size: 22px;
    vertical-align: middle;
}

.woocommerce-order-received .woocommerce .woocommerce-order ul.order_details li.woocommerce-order-overview__shipping-method.method strong {
    margin-bottom: 15px;
}

.woocommerce-order-received .woocommerce .woocommerce-order ul.order_details li.method strong {
    display: block;
    font-size: 14px;
    font-weight: 400!important;
}

.woocommerce-order-received .woocommerce-order section.woocommerce-order-details {
    margin-top: 25px!important;
}

.woocommerce-order-received .woocommerce-order section.woocommerce-order-details > p {
    display: none;
}

.woocommerce-order-received td.woocommerce-table__product-name.product-name > a {
    display: none;
}

.woocommerce-order-received .woocommerce .woocommerce-order section.woocommerce-order-details .shop_table thead {
    display: none;
}

.woocommerce-order-received section.woocommerce-order-details span.product-img-wrapper {
    left: 0!important;
    margin-right: -6px;
    min-width: 40px;
    position: absolute;
}

.woocommerce-order-received section.woocommerce-order-details h2 {
    color: #000!important;
    font-size: 18px!important;
    font-weight: 700;
    margin-bottom: 0!important;
    text-align: start!important;
    text-transform: uppercase!important;
}

.woocommerce-order-received .woocommerce table.shop_table {
    margin-top: 15px !important;
}

.woocommerce-order-received .woocommerce .woocommerce-order section.woocommerce-order-details .shop_table td.product-name .content {
    min-height: 60px;
}

.woocommerce-order-received .buttons-section a.button.continue-shopping {
    background: #000!important;
    color: #fff!important;
    border-radius: 0!important;
    display: flex!important;
    justify-content: center;
    align-items: center;
    min-height: 40px;
    width: 100%;
    margin-bottom: 5px;
}

.woocommerce-order-received .buttons-section button.print-order {
    background: transparent!important;
    border: 1px solid #000;
    color: #000!important;
    border-radius: 0!important;
    display: flex!important;
    justify-content: center;
    align-items: center;
    min-height: 40px;
    width: 100%;
    margin-bottom: 5px;
    font-weight: 400;
}

.woocommerce-order-received .buttons-section a.button.view-order {
    background: transparent!important;
    border: 1px solid #000;
    color: #000!important;
    border-radius: 0!important;
    display: flex!important;
    justify-content: center;
    align-items: center;
    min-height: 40px;
    width: 100%;
    font-weight: 400;
}


.woocommerce-order-received .buttons-section {
    margin: 25px 0;
}

@media (min-width: 578px) {

    .woocommerce-order-received .woocommerce-order {
        max-width: 900px;
        margin: 0 auto;
    }

    .woocommerce-order-received section.woocommerce-columns.woocommerce-columns--addresses.addresses {
        display: flex;
        gap: 60px;
        justify-content: center;
    }

    .woocommerce-order-received section.woocommerce-columns.woocommerce-columns--addresses.addresses > div {
        width: 220px;
    }

    .woocommerce-order-received .woocommerce .woocommerce-order ul.order_details {
        display: flex!important;
        gap: 60px;
        justify-content: center;
    }

    .woocommerce-order-received .woocommerce .woocommerce-order ul.order_details li {
        width: 220px;
    }

    .buttons-section {
        max-width: 578px;
        width: 100%;
    }

    .woocommerce-order-received .woocommerce-order {
        align-items: center;
    }

}

.woocommerce .woocommerce-order section.woocommerce-order-details .shop_table td.product-name {
    padding-left: 75px !important;
    position: relative;
}