.customer-tabs-nav {
    padding: 0 1rem;
    margin-bottom: -1px;
}

.customer-tabs-nav li a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem 2rem;
    background-color: #e5e5e5;
    color: #898989;
    border-top-left-radius: 6px;
    border-top-right-radius: 6px;
    transition: var(--transition);
    text-decoration: none !important;
}

.customer-tabs-nav li a.active,
.customer-tabs-nav li a:hover {
    background-color: black;
    color: white;
}

.customer-tab-content table {
    width: 100%;
}

.customer-tab-content table thead th {
    font-weight: bold;
    color: black;
    padding: 1rem;
    text-align: left;
    border-bottom: 4px solid #f5f5f5;
}

.customer-tab-content table tbody td {
    padding: 1rem;
    color: black;
}

.customer-tab-content table tbody td,
.customer-tab-content table tbody td > * {
    font-size: 0.75rem !important;
    vertical-align: middle;
}

.customer-tab-content table tbody td a {
    color: black;
}

.customer-tab-content table tbody tr td:first-of-type a {
    text-decoration: underline;
}

.customer-tab-content table tbody tr:not(:last-of-type) td {
    border-bottom: 1px solid var(--border-color);
}

.customer-tab-content .col-sm-12 {
    float: unset !important;
}

.table-overflow {
    overflow: auto;
}

.my-account-status-order {
    display: block;
    text-align: center;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    font-weight: 600;
}

.table-dropdown {
    display: flex;
    justify-content: flex-end;
}

.table-dropdown button {
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.table-dropdown .table-dropdown-menu {
    position: absolute;
    top: calc(100% + 1rem);
    right: 0;
    z-index: 99999;
    background-color: white;
    overflow: hidden;
    border: 1px solid var(--border-color);
    min-width: 280px;
    opacity: 0;
    visibility: hidden;
    transform: translate3d(0, -2rem, 0);
    transition: var(--transition);
}

.table-dropdown.active .table-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translate3d(0, 0, 0);
}

.table-dropdown.active .table-dropdown-menu li a {
    transition: var(--transition);
}

.table-dropdown.active .table-dropdown-menu li a:hover {
    background-color: var(--light-bg-color);
}

.wish-link {
    background-color: var(--light-bg-color);
    border-radius: 6px;
    padding: 0.65rem 1.25rem;
    border: 1px dashed var(--text-color);
}

.my-account-links a {
    padding: 0.65rem 1rem;
    border-top-left-radius: 6px;
    border-top-right-radius: 6px;
    border: 1px solid transparent;
    border-bottom: 2px solid transparent;
    transition: var(--transition);
}

.my-account-links a.active,
.my-account-links a:hover {
    border: 1px solid var(--border-color);
    border-bottom: 2px solid black;
}

.order-steps {
    display: flex;
    align-items: flex-start;
}

.order-steps .order-step {
    position: relative;
    flex: 0 0 20%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.order-steps .order-step * {
    z-index: 2;
}

.order-steps .order-step:not(:first-of-type)::after,
.order-steps .order-step:not(:last-of-type)::before {
    content: '';
    display: block;
    height: 8px;
    background-color: #c9c9c9;
    position: absolute;
    top: 20px;
    transform: translate3d(0, -50%, 0);
    left: 50%;
    width: 100%;
    z-index: 1;
}

.order-steps .order-step:not(:first-of-type)::after {
    left: unset;
    right: 50%;
}

.order-steps .order-step .order-step-status {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100px;
    background-color: #c9c9c9;
    color: white;
}

.order-steps .order-step.active:not(:first-of-type)::after,
.order-steps .order-step.active .order-step-status {
    background-color: #60af39;
}

.main-address {
    background-color: #ebf7ed;
    color: #829d7a;
    padding: 0.35rem 1rem;
    border-radius: 100px;
    font-weight: bold;
}
.grid-info-profile{
    display: grid;
    grid-template-columns: 1fr 1fr;
}
@media screen and (max-width: 768px) {
    .order-steps {
        flex-direction: column;
        gap: 2rem;
    }

    .order-steps .order-step::before,
    .order-steps .order-step::after {
        display: none !important;
    }

    .order-steps .order-step {
        width: 100%;
        flex: 0 0 100%;
    }
    .grid-info-profile{
        grid-template-columns: 1fr;
    }
}
