/* 
 Theme Name:   SirSync
 Theme URI:    
 Description:  Child Theme for SirSync
 Author:       Kodeala
 Author URI:   https://www.kodeala.com
 Template:     hello-elementor
 Version:      1.0
 License:      GNU General Public License v2 or later
 License URI:  http://www.gnu.org/licenses/gpl-2.0.html
*/

.woocommerce-account .woocommerce {
    display: grid !important;
    grid-template-columns: 240px minmax(0, 1fr);
    gap: 24px 32px;
    align-items: start;
}

.woocommerce-account .woocommerce > .woocommerce-notices-wrapper,
.woocommerce-account .woocommerce > .woocommerce-message,
.woocommerce-account .woocommerce > .woocommerce-info,
.woocommerce-account .woocommerce > .woocommerce-error {
    grid-column: 1 / -1;
}

.woocommerce-account .woocommerce-MyAccount-navigation {
    grid-column: 1;
    float: none !important;
    width: 100% !important;
}

.woocommerce-account .woocommerce-MyAccount-content {
    grid-column: 2;
    float: none !important;
    width: 100% !important;
    min-width: 0;
}

.woocommerce-account .woocommerce-MyAccount-navigation ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.woocommerce-account .woocommerce-MyAccount-navigation li {
    margin: 0;
    padding: 0;
}

.woocommerce-account .woocommerce-MyAccount-navigation a {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
    padding: 13px 16px;
    color: #18263a;
    font-weight: 600;
    line-height: 1.35;
    text-decoration: none;
    border-radius: 10px;
    transition:
            background-color 0.2s ease,
            color 0.2s ease,
            transform 0.2s ease;
}

.woocommerce-account .woocommerce-MyAccount-navigation a:hover {
    color: #0e8fe6;
    background: rgba(14, 165, 255, 0.1);
}

.woocommerce-account
.woocommerce-MyAccount-navigation
.is-active
a {
    color: #ffffff;
    background: #0197fd;
    box-shadow: 0 8px 18px rgba(14, 165, 255, 0.22);
}

/* Headings */
.woocommerce-account .woocommerce-MyAccount-content h2,
.woocommerce-account .woocommerce-MyAccount-content h3 {
    color: #132238;
    margin-top: 0;
}

.woocommerce-account .woocommerce-MyAccount-content p {
    color: #556274;
    line-height: 1.7;
}

/* Links */
.woocommerce-account .woocommerce-MyAccount-content a:not(.button) {
    color: #0e8fe6;
    text-decoration: none;
}

.woocommerce-account .woocommerce-MyAccount-content a:not(.button):hover {
    color: #0879c4;
    text-decoration: underline;
}

/* Buttons */
.woocommerce-account .woocommerce a.button,
.woocommerce-account .woocommerce button.button,
.woocommerce-account .woocommerce input.button,
.woocommerce-account .woocommerce .button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 11px 22px;
    color: #ffffff;
    background: #0197fd;
    border: 1px solid #0197fd;
    border-radius: 10px;
    font-weight: 700;
    line-height: 1;
    text-decoration: none;
    box-shadow: none;
    transition:
            background-color 0.2s ease,
            border-color 0.2s ease,
            color 0.2s ease,
            transform 0.2s ease;
    margin-top:15px;
}

.woocommerce-account .woocommerce a.button:hover,
.woocommerce-account .woocommerce button.button:hover,
.woocommerce-account .woocommerce input.button:hover,
.woocommerce-account .woocommerce .button:hover {
    color: #ffffff;
    background: rgba(14, 165, 255, 0.8);
    border-color: #0197fd;
    transform: translateY(-1px);
}

/* Secondary buttons */
.woocommerce-account .woocommerce .button.alt {
    color: #0e8fe6;
    background: transparent;
    border-color: #0197fd;
}

.woocommerce-account .woocommerce .button.alt:hover {
    color: #ffffff;
    background: #0197fd;
}

/* Forms */
.woocommerce-account .woocommerce form {
    margin-top: 20px;
}

.woocommerce-account .woocommerce form .form-row {
    margin-bottom: 18px;
}

.woocommerce-account .woocommerce form label {
    display: block;
    margin-bottom: 7px;
    color: #18263a;
    font-weight: 700;
}

.woocommerce-account .woocommerce form .required {
    color: #e11d48;
}

.woocommerce-account .woocommerce input.input-text,
.woocommerce-account .woocommerce input[type="email"],
.woocommerce-account .woocommerce input[type="password"],
.woocommerce-account .woocommerce input[type="tel"],
.woocommerce-account .woocommerce select,
.woocommerce-account .woocommerce textarea {
    width: 100%;
    min-height: 48px;
    padding: 11px 14px;
    color: #18263a;
    background: #ffffff;
    border: 1px solid #cfd8e3;
    border-radius: 10px;
    outline: none;
    box-shadow: none;
    transition:
            border-color 0.2s ease,
            box-shadow 0.2s ease;
}

.woocommerce-account .woocommerce textarea {
    min-height: 130px;
    resize: vertical;
}

.woocommerce-account .woocommerce input:focus,
.woocommerce-account .woocommerce select:focus,
.woocommerce-account .woocommerce textarea:focus {
    border-color: #0197fd;
    box-shadow: 0 0 0 3px rgba(14, 165, 255, 0.15);
}

/* Fieldsets */
.woocommerce-account .woocommerce fieldset {
    margin: 28px 0 0;
    padding: 24px;
    border: 1px solid #e4e9ef;
    border-radius: 14px;
}

.woocommerce-account .woocommerce legend {
    padding: 0 8px;
    color: #132238;
    font-weight: 700;
}

/* Tables */
.woocommerce-account .woocommerce table.shop_table {
    width: 100%;
    margin: 0;
    border: 1px solid #e4e9ef;
    border-collapse: separate;
    border-spacing: 0;
    border-radius: 14px;
    overflow: hidden;
}

.woocommerce-account .woocommerce table.shop_table th,
.woocommerce-account .woocommerce table.shop_table td {
    padding: 15px 18px;
    border: 0;
    border-bottom: 1px solid #e8edf2;
    text-align: left;
    vertical-align: middle;
}

.woocommerce-account .woocommerce table.shop_table th {
    color: #132238;
    background: #eef8ff;
    font-weight: 700;
}

.woocommerce-account .woocommerce table.shop_table form,
.woocommerce-account .woocommerce table.shop_table form .button{
    margin:0;
    text-align:right;
}

.woocommerce-account .woocommerce table.shop_table tr:last-child td {
    border-bottom: 0;
}

.woocommerce-account .woocommerce-Address {
    margin: 0;
    padding: 24px;
    background: #f8fafc;
    border: 1px solid #e4e9ef;
    border-radius: 14px;
}

.woocommerce-account .woocommerce-Address-title {
    display: block;
}

.woocommerce-account .woocommerce-Address address {
    color: #556274;
    font-style: normal;
    line-height: 1.7;
}

/* Notices */
.woocommerce-account .woocommerce-error,
.woocommerce-account .woocommerce-info,
.woocommerce-account .woocommerce-message {
    margin: 0 0 24px;
    padding: 16px 18px 16px 48px;
    border: 1px solid #d8e5ef;
    border-top: 0;
    border-radius: 12px;
    background: #f8fbfd;
    color: #24344a;
}

.woocommerce-account .woocommerce-message {
    border-left: 4px solid #22c55e;
}

.woocommerce-account .woocommerce-info {
    border-left: 4px solid #0197fd;
}

.woocommerce-account .woocommerce-error {
    border-left: 4px solid #ef4444;
}

/* Password strength meter */
.woocommerce-account .woocommerce-password-strength {
    margin-top: 8px;
    padding: 8px 10px;
    border-radius: 8px;
}

/* Login and registration */
.woocommerce-account:not(.logged-in) .woocommerce {
    display: block;
    max-width: 1080px;
    margin-inline: auto;
}

.woocommerce-account:not(.logged-in) .u-columns {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px;
}

.woocommerce-account:not(.logged-in) .u-column1,
.woocommerce-account:not(.logged-in) .u-column2 {
    width: auto;
    float: none;
    padding: 30px;
    background: #ffffff;
    border: 1px solid #e4e9ef;
    border-radius: 16px;
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.06);
}

.woocommerce-account .woocommerce form.mpl-add-site label,
.woocommerce-account .woocommerce form.mpl-add-site .button{
    margin:0;
}
.woocommerce-account .woocommerce form.mpl-add-site label input[type="text"]{
    margin-top:5px;
    border-radius:10px;
}
.elementor-price-table__footer a{
    color:#fff !important;
}
.wps_recurring_bifurcation_wrapper ul{
    padding-left:0;
}
.woocommerce-checkout button.wc-block-components-checkout-place-order-button{
    background-color: var(--e-global-color-secondary);
    font-family: var(--e-global-typography-primary-font-family), Sans-serif;
    font-weight: var(--e-global-typography-primary-font-weight);
    line-height: var(--e-global-typography-primary-line-height);
    fill: #FFFFFF;
    color: #FFFFFF;
    border-style: none;
    border-radius: 10px 10px 10px 10px;
    padding: 10px 20px 10px 20px;
}

/* =========================================
   MIRRORPRESS WOOCOMMERCE ORDER RECEIVED
========================================= */

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

/* Success message */
.woocommerce-order-received .woocommerce-notice--success {
    margin: 0 0 28px;
    padding: 22px 24px;
    color: #166534;
    background: #f0fdf4;
    border: 1px solid #bbf7d0;
    border-left: 5px solid #22c55e;
    border-radius: 14px;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.5;
}

/* Order overview cards */
.woocommerce-order-received .woocommerce-order-overview {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 16px;
    list-style: none;
    padding: 0;
}

/* First row - 3 equal columns */
.woocommerce-order-received .woocommerce-order-overview li:nth-child(1),
.woocommerce-order-received .woocommerce-order-overview li:nth-child(2),
.woocommerce-order-received .woocommerce-order-overview li:nth-child(3) {
    grid-column: span 2;
}

/* Second row - 2 equal columns */
.woocommerce-order-received .woocommerce-order-overview li:nth-child(4),
.woocommerce-order-received .woocommerce-order-overview li:nth-child(5) {
    grid-column: span 3;
}
.woocommerce-order-received
.woocommerce-order-overview:before{
    display:none !important;
}
.woocommerce-order-received
.woocommerce-order-overview li {
    width: auto;
    margin: 0 !important;
    padding: 10px !important;
    color: #697586;
    background: #f8fafc;
    border: 1px solid #e4e9ef !important;
    border-radius: 12px;
    font-size: 12px !important;
}

.woocommerce-order-received
.woocommerce-order-overview li strong {
    display: block;
    margin-top: 6px;
    color: #132238;
    font-size: 16px;
    font-weight: 700;
    word-break: break-word;
}

/* Main order sections */
.woocommerce-order-received
.woocommerce-order-details,
.woocommerce-order-received
.woocommerce-customer-details,
.woocommerce-order-received
.woocommerce-order-downloads {
    margin: 0 0 28px;
    padding: 28px;
    background: #ffffff;
    border: 1px solid #e4e9ef;
    border-radius: 16px;
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.06);
}

/* Section headings */
.woocommerce-order-received
.woocommerce-order-details__title,
.woocommerce-order-received
.woocommerce-column__title,
.woocommerce-order-received
.woocommerce-order-downloads__title {
    margin: 0 0 20px;
    color: #132238;
    font-size: 24px;
    line-height: 1.25;
}

/* Order table */
.woocommerce-order-received
table.woocommerce-table--order-details {
    width: 100%;
    margin: 0;
    border: 1px solid #e4e9ef;
    border-collapse: separate;
    border-spacing: 0;
    border-radius: 12px;
    overflow: hidden;
}

.woocommerce-order-received
table.woocommerce-table--order-details th,
.woocommerce-order-received
table.woocommerce-table--order-details td {
    padding: 15px 18px;
    border: 0;
    border-bottom: 1px solid #e8edf2;
    text-align: left;
    vertical-align: middle;
}

.woocommerce-order-received
table.woocommerce-table--order-details thead th {
    color: #132238;
    background: #eef8ff;
    font-weight: 700;
}

.woocommerce-order-received
table.woocommerce-table--order-details tfoot th,
.woocommerce-order-received
table.woocommerce-table--order-details tfoot td {
    background: #f8fafc;
    font-weight: 700;
}

.woocommerce-order-received
table.woocommerce-table--order-details
tfoot tr:last-child th,
.woocommerce-order-received
table.woocommerce-table--order-details
tfoot tr:last-child td {
    color: #0e8fe6;
    border-bottom: 0;
    font-size: 17px;
}

/* Product name */
.woocommerce-order-received
.woocommerce-table__product-name a {
    color: #132238;
    font-weight: 700;
    text-decoration: none;
}

.woocommerce-order-received
.woocommerce-table__product-name a:hover {
    color: #0e8fe6;
}

/* Item metadata */
.woocommerce-order-received .wc-item-meta {
    margin: 10px 0 0;
    padding: 0;
    list-style: none;
}

.woocommerce-order-received .wc-item-meta li {
    margin: 4px 0;
    color: #697586;
    font-size: 14px;
}

.woocommerce-order-received .wc-item-meta strong {
    color: #24344a;
}

/* Customer details columns */
.woocommerce-order-received
.woocommerce-customer-details
.woocommerce-columns {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
}

.woocommerce-order-received
.woocommerce-customer-details
.woocommerce-column {
    float: none;
    width: auto;
    margin: 0;
    padding: 22px;
    background: #f8fafc;
    border: 1px solid #e4e9ef;
    border-radius: 12px;
}

.woocommerce-order-received
.woocommerce-customer-details address {
    margin: 0;
    padding: 0;
    color: #556274;
    border: 0;
    font-style: normal;
    line-height: 1.75;
}

/* Download table */
.woocommerce-order-received
table.woocommerce-table--order-downloads {
    width: 100%;
    margin: 0;
    border: 1px solid #e4e9ef;
    border-collapse: separate;
    border-spacing: 0;
    border-radius: 12px;
    overflow: hidden;
}

.woocommerce-order-received
table.woocommerce-table--order-downloads th,
.woocommerce-order-received
table.woocommerce-table--order-downloads td {
    padding: 15px 18px;
    border: 0;
    border-bottom: 1px solid #e8edf2;
    text-align: left;
}

.woocommerce-order-received
table.woocommerce-table--order-downloads th {
    color: #132238;
    background: #eef8ff;
    font-weight: 700;
}

/* Buttons */
.woocommerce-order-received .woocommerce a.button,
.woocommerce-order-received .woocommerce .button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 11px 22px;
    color: #ffffff;
    background: #0197fd;
    border: 1px solid #0197fd;
    border-radius: 999px;
    font-weight: 700;
    line-height: 1;
    text-decoration: none;
    transition:
            background-color 0.2s ease,
            border-color 0.2s ease,
            transform 0.2s ease;
}

.woocommerce-order-received .woocommerce a.button:hover,
.woocommerce-order-received .woocommerce .button:hover {
    color: #ffffff;
    background: rgba(14, 165, 255, 0.8);
    border-color: #0197fd;
    transform: translateY(-1px);
}

/* Payment-method or subscription messages */
.woocommerce-order-received
.woocommerce-order p,
.woocommerce-order-received
.woocommerce-order .woocommerce-info {
    line-height: 1.7;
}

/* ==========================================
   MirrorPress Subscription Table
========================================== */
.woocommerce table caption+thead tr:first-child td,
.woocommerce table caption+thead tr:first-child th,
.woocommerce table colgroup+thead tr:first-child td,
.woocommerce table colgroup+thead tr:first-child th,
.woocommerce table thead:first-child tr:first-child td,
.woocommerce table thead:first-child tr:first-child th {
    border-block-start: 0;
}
.wps_sfw_account_wrap,
.wps_sfw_account_wrap:hover{
    border: 1px solid #d9e4ef;
    border-radius: 16px;
    overflow: hidden;
    background: #fff;
    box-shadow: none;
    padding:0;
}
.wps_sfw_account_wrap table {
    width: 100%;
    border: 0;
    border-collapse: collapse;
}

.wps_sfw_account_wrap thead th {
    padding: 15px 18px;
    background: #eef8ff;
    color: #132238;
    font-size: 15px;
    font-weight: 700;
    text-align: left;
    border:0;
}
.wps_sfw_account_wrap table thead,
.wps_sfw_account_wrap table thead tr {
    background: #eef8ff;
}

.wps_sfw_account_wrap table thead th {
    background: #eef8ff !important;
    color: #132238;
    font-weight: 700;
}

.wps_sfw_account_wrap tbody td {
    padding: 16px 18px;
    border:0;
    border-top: 1px solid #edf1f5;
    vertical-align: middle;
    color: #556274;
}

.wps_sfw_account_wrap tbody tr:hover {
    background: #f8fbff;
}

.wps_sfw_account_wrap a {
    color: #0197fd;
    text-decoration: none;
    font-weight: 600;
}

.wps_sfw_account_wrap a:hover {
    color: #0879c4;
}

/* Status badges */

.wps_sfw_account_col span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 6px 12px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 600;
    line-height: 1;
}
.wps_sfw_account_col span.woocommerce-Price-currencySymbol{
    padding:0;
    color:currentColor;
}

.wps_sfw_active span,
.wps_sfw_active {
    background: #ecfdf5;
    color: #15803d;
}

.wps_sfw_cancelled span,
.wps_sfw_cancelled {
    background: #fef2f2;
    color: #b91c1c;
}

.wps_sfw_pending span,
.wps_sfw_pending {
    background: #fff7ed;
    color: #c2410c;
}

.wps_sfw_on-hold span,
.wps_sfw_on-hold {
    background: #f8fafc;
    color: #475569;
}

/* Show button */

.wps_sfw_account_show_subscription a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 40px;
    padding: 10px 18px;
    background: #0197fd;
    color: #fff !important;
    border: 1px solid #0197fd;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: .2s;
}

.wps_sfw_account_show_subscription a:hover {
    color: #fff;
    background: rgba(14,165,255,.8);
    border-color: #0197fd;
}

/* Price */

.wps_sfw_account_col .woocommerce-Price-amount {
    color: #132238;
    font-weight: 700;
}

.wps_sfw_account_col .woocommerce-Price-currencySymbol {
    color: #0197fd;
}

.woocommerce-page table tbody>tr:nth-child(odd)>td,
.woocommerce-page table tbody>tr:nth-child(odd)>th {
    background-color: hsla(0, 0%, 50%, .03);
}

.sirsync-documentation-search {
    margin-bottom: 24px;
}

.sirsync-documentation-search__field {
    display: flex;
    gap: 8px;
}

.sirsync-documentation-search__field input {
    min-width: 0;
    width: 100%;
}

.sirsync-documentation-menu ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.sirsync-documentation-menu__item {
    margin: 0;
}

.sirsync-documentation-menu__item a {
    display: block;
    padding: 10px 14px;
    border-left: 3px solid transparent;
    text-decoration: none;
}

.sirsync-documentation-menu__item a:hover {
    background: #f4f7f9;
}

.sirsync-documentation-menu__item.is-current a {
    border-left-color: #0197fd;
    background: #eef8ff;
    font-weight: 600;
}
.sirsync-documentation-search {
    margin-bottom: 24px;
}

.sirsync-documentation-search__field {
    position: relative;
    width: 100%;
}

.sirsync-documentation-search__field input {
    display: block;
    width: 100%;
    min-width: 0;
    height: 48px;
    padding: 0 52px 0 16px;
    border: 1px solid #d8e1e8;
    border-radius: 10px;
    background: #fff;
    font-size: 16px;
    box-sizing: border-box;
}

.sirsync-documentation-search__field input:focus {
    outline: none;
    border-color: #18a7f5;
    box-shadow: 0 0 0 3px rgba(24, 167, 245, 0.14);
}

.sirsync-documentation-search__field button {
    position: absolute;
    top: 50%;
    right: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    padding: 0;
    border: 0;
    border-radius: 8px;
    background: transparent;
    color: #111827;
    font-size: 0;
    line-height: 1;
    cursor: pointer;
    transform: translateY(-50%);
}

.sirsync-documentation-search__field button::before {
    content: "";
    display: block;
    width: 18px;
    height: 18px;
    background-color: currentColor;
    mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='11' cy='11' r='8'/%3E%3Cpath d='m21 21-4.35-4.35'/%3E%3C/svg%3E") center / contain no-repeat;
    -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='11' cy='11' r='8'/%3E%3Cpath d='m21 21-4.35-4.35'/%3E%3C/svg%3E") center / contain no-repeat;
}

.sirsync-documentation-search__field button:hover,
.sirsync-documentation-search__field button:focus{
    background: #eef8ff;
    color: #0197fd;
}

.sirsync-documentation-menu ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.sirsync-documentation-menu__item {
    margin: 0 0 4px;
    padding: 0;
}

.sirsync-documentation-menu__item a {
    display: block;
    padding: 13px 16px;
    border: 0;
    border-radius: 10px;
    color: #111827;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.35;
    text-decoration: none;
    transition:
            background-color 0.2s ease,
            color 0.2s ease,
            box-shadow 0.2s ease;
}

.sirsync-documentation-menu__item a:hover {
    background: #eef8ff;
    color: #0077d9;
}

.sirsync-documentation-menu__item.is-current a,
.sirsync-documentation-menu__item.is-current a:hover{
    background: linear-gradient(135deg, #16b5f5 0%, #1499f0 100%);
    color: #fff;
    font-weight: 600;
    box-shadow: 0 10px 24px rgba(14, 165, 255, 0.22);
}
.woocommerce-account .woocommerce .woocommerce-message + p,
.woocommerce-account .woocommerce form{
    grid-column: 1 / -1
}

[type="button"]:focus,
[type="button"]:hover,
[type="submit"]:focus,
[type="submit"]:hover,
button:focus,
button:hover{
    background-color:var(--e-global-color-secondary) !important;
}
.woocommerce-MyAccount-content h2,
.woocommerce-order-details header{
    padding-block-end: 1rem;
    padding-block-start: 1.5rem;
}
.woocommerce-order-details .order-again{
    display:none;
}
/* Mobile */

@media (max-width:768px){

    .wps_sfw_account_wrap{
        overflow-x:auto;
    }

    .wps_sfw_account_wrap table{
        min-width:700px;
    }

}

/* Responsive */
@media (max-width: 900px) {
    .woocommerce-order-received
    .woocommerce-order-overview {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .woocommerce-order-received
    .woocommerce-customer-details
    .woocommerce-columns {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 560px) {
    .woocommerce-order-received
    .woocommerce-order-overview {
        grid-template-columns: 1fr;
    }

    .woocommerce-order-received
    .woocommerce-order-details,
    .woocommerce-order-received
    .woocommerce-customer-details,
    .woocommerce-order-received
    .woocommerce-order-downloads {
        padding: 18px;
        border-radius: 12px;
    }

    .woocommerce-order-received
    table.woocommerce-table--order-details,
    .woocommerce-order-received
    table.woocommerce-table--order-details tbody,
    .woocommerce-order-received
    table.woocommerce-table--order-details tfoot,
    .woocommerce-order-received
    table.woocommerce-table--order-details tr,
    .woocommerce-order-received
    table.woocommerce-table--order-details th,
    .woocommerce-order-received
    table.woocommerce-table--order-details td {
        display: block;
        width: 100%;
    }

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

    .woocommerce-order-received
    table.woocommerce-table--order-details tr {
        padding: 14px;
        border-bottom: 1px solid #e4e9ef;
    }

    .woocommerce-order-received
    table.woocommerce-table--order-details th,
    .woocommerce-order-received
    table.woocommerce-table--order-details td {
        padding: 7px 0;
        border: 0;
    }
}

/* Responsive */
@media (max-width: 900px) {
    .woocommerce-account .woocommerce {
        grid-template-columns: 1fr;
    }

    .woocommerce-account .woocommerce-MyAccount-navigation,
    .woocommerce-account .woocommerce-MyAccount-content {
        grid-column: 1;
    }

    .woocommerce-account .woocommerce-MyAccount-navigation ul {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 8px;
    }

    .woocommerce-account:not(.logged-in) .u-columns {
        grid-template-columns: 1fr;
    }
}
@media (max-width: 768px) {
    .woocommerce table.shop_table_responsive.mpl-sites tr td,
    .woocommerce-page table.shop_table_responsive.mpl-sites tr td {
        background-color: transparent !important;
    }
    .woocommerce table.shop_table_responsive.mpl-sites tr td:not([data-title]):before {
        display:none;
    }
}
@media (max-width: 560px) {
    .woocommerce-account .woocommerce-MyAccount-content {
        padding: 22px 18px;
        border-radius: 12px;
    }

    .woocommerce-account .woocommerce-MyAccount-navigation ul {
        grid-template-columns: 1fr;
    }

    .woocommerce-account .woocommerce table.shop_table,
    .woocommerce-account .woocommerce table.shop_table tbody,
    .woocommerce-account .woocommerce table.shop_table tr,
    .woocommerce-account .woocommerce table.shop_table th,
    .woocommerce-account .woocommerce table.shop_table td {
        display: block;
        width: 100%;
    }

    .woocommerce-account .woocommerce table.shop_table thead {
        display: none;
    }

    .woocommerce-account .woocommerce table.shop_table tr {
        padding: 14px;
        border-bottom: 1px solid #e4e9ef;
    }

    .woocommerce-account .woocommerce table.shop_table td {
        padding: 7px 0;
        border: 0;
    }

    .woocommerce-account .woocommerce table.shop_table td::before {
        font-weight: 700;
        color: #132238;
    }
}