.profile_sidebar_btn, .woocommerce-MyAccount-navigation .header {
    display: none;
    opacity: 0;
    visibility: hidden;
}
.dej_profile {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 100%;
}

.dej_profile_wrapper {
    display: flex;
    gap: 20px;
}
.dej_profile_header {
    margin-top: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}
.dej_profile_header:before {
    content: "";
    position: absolute;
    width: 85%;
    height: 100%;
    left: 0;
    z-index: 0;
    border-radius: 50px;
    background-color: var(--dej-profile-color2);
}

.dej_user_info {
    background-color: var(--dej-profile-color1);
    flex-basis: 60%;
    border-radius: 50px;
    color: white;
    padding: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 0 5px 5px rgba(0, 0, 0, 0.07);
    margin-right: 15px;
    z-index: 3;
}
.dej_user_info > .avatar {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    margin-right: -28px;
    border: 4px solid white;
    aspect-ratio: 1;
}
.dej_user_info > .avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.dej_user_info img.avatar {
    border-radius: 50%;
}

.dej_user_info .info {
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.dej_user_info .info .name {
    font-size: 20px;
    font-weight: 500;
    white-space: nowrap;
}
.dej_user_info .info .days {
    font-size: 13px;
    font-weight: 300;
}
.dej_user_info .info .name a, .dej_user_info .woocommerce-Price-amount {
    color:white;
}

.dej_user_info .wallet {
    background-color: rgba(0, 0, 0, 0.19);
    padding: 5px 8px;
    border-radius: 10px;
    font-size: 13px;
}
.dej_header_profile_nav {
    display: flex;
    gap: 10px;
    padding-left: 30px;
    z-index: 5;
}
.dej_header_profile_nav li a {
    font-size: 15px;
    background-color: rgba(0, 0, 0, 0.19);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    width: 45px;
    height: 45px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 0 5px 5px rgba(0, 0, 0, 0.07);
    color: white;
    transition: 0.3s ease;
    border:1px solid transparent;

}
.dej_header_profile_nav li a:hover {
    font-size: 17px;
    background-color: var(--dej-color2);
    border-color: white;
}

.woocommerce-account .woocommerce-MyAccount-navigation {
    width: 25%;
    padding: 50px 20px 50px 50px;
    background-color: var(--dej-profile-color2);
    border-radius: 100px 15px 15px 100px;
    margin: 20px 0;
    box-shadow: 0 0 5px 5px rgba(0, 0, 0, 0.07);
}
.woocommerce-account .woocommerce-MyAccount-content {
    width: 75%;
    padding: 50px 50px 50px 20px;
    background-color: #ffffff;
    color: #181818;
    border-radius: 15px 100px 100px 15px;
    margin: 20px 0;
    box-shadow: 0 0 5px 5px rgba(0, 0, 0, 0.07);
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.woocommerce-MyAccount-navigation-link {
    margin-bottom: 20px;
}
.woocommerce-MyAccount-navigation-link a {
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: flex-start;
    font-size: 13px;
    height: 40px;
    background-color: rgb(0 0 0 / 15%);
    border-radius: 10px 10px 10px 30px;
    color: white;
    backdrop-filter: blur(10px);
    transition: 0.3s font-size;

}
.woocommerce-MyAccount-navigation-link a:hover {
    background-color: var(--dej-color2);
    font-size: 14px;
}
.woocommerce-MyAccount-navigation-link.is-active a {
    background-color: rgb(0 0 0 / 38%);
}

.woocommerce-MyAccount-navigation-link a .icon {
    background-color: var(--dej-color2);
    color: white;
    height: 50px;
    width: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 21px;
    border-radius: 40px 20px 20px 20px;
    margin-right: 10px;
    transition: transform 0.3s, background-color 0.3s, margin-right 0.3s, font-size 0.3s, width 0.3s, height 0.3s;
    padding: 5px 0 0 5px;
}

.woocommerce-MyAccount-navigation-link a:hover .icon {
    background-color: white;
    color: var(--dej-color2);
    height: 55px;
    width: 55px;
    margin-right: 5px;
    font-size: 24px;
}


.notes {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.note {
    background: #d60d68;
    color:white;
    padding: 10px;
    border-radius: 15px;
    border: 2px solid #eeeeee24;
}
.note .title {
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 10px;
    background-color: #00000033;
    padding: 10px;
    border-radius: 10px;
    display: flex;
    gap:7px;
    align-items: center;
}
.note .title a, .note .content p, .note .content h1, .note .content h2, .note .content h3, .note .content h4 {
    color:white;
}
.note .content {
    font-size: 13px;
    padding: 5px;
}
.note .content a {
    display: inline-flex;
    color: #fffd91;
    gap: 6px;
    align-items: center;
    padding: 0 5px;
}
.note .content a:hover {
    color: #91ffb8;
}
.notifications {
    position: relative;
}
.alert::after {
    content: '';
    position: absolute;
    right: 2px;
    top: 2px;
    border-radius: 100%;
    background-color: var(--dej-profile-color1);
    padding: 4px;
    animation: pulse 2s infinite;
}

.woocommerce-MyAccount-content .dejavo_recent_product {
    margin-top: 0;
}


.dejavo_dashboard_items {
    width: 100%;
}

.dejavo_dashboard_items .item {
    border-radius: 15px;
    color: white;
    padding: 10px;
    position: relative;
    opacity: 0.9;
    transition: 0.3s background;
    background-color: var(--dej-profile-color2);
}
.dejavo_dashboard_items .item:hover {
    opacity: 1;
    background: var(--dej-color1) var(--dej-bg1);
}
.dejavo_dashboard_items .item i {
    color: white;
    font-size: 30px;
    opacity: 1;
    position: absolute;
    left: 13px;
    top: -13px;
    transition: 0.4s;
    background-color: var(--dej-color2);
    padding: 15px;
    border-radius: 15px;
}
.dejavo_dashboard_items .item:hover i {
    transform: translateY(-5px);
}

.dejavo_dashboard_items .item .title {
    display: inline-block;
    font-size: 13px;
    padding: 10px 0;
}
.dejavo_dashboard_items .item .value {
    font-size: 20px;
    height: 35px;
    transition: 0.3s;
}
.dejavo_dashboard_items .item a, .dejavo_dashboard_items .woocommerce-Price-amount {
    color: white;
}
.dejavo_dashboard_orders {
    background-color: var(--dej-profile-color1);
    border: 0;
    overflow-x: auto;
    width: 100%;
    border-radius: 15px;
}
.dejavo_dashboard_orders .inner {
    border-radius: 4px;
}

.dejavo_dashboard_orders .header {
    color: white;
    padding: 22px;
}
.dejavo_dashboard_orders .header .count,
.dejavo_dashboard_orders .header .title {
    display: inline-block;
}

.dejavo_dashboard_orders .header .title {
    font-size: 20px;
}
.dejavo_dashboard_orders .header .title + .count {
    margin-left: 5px;
}

.dejavo_dashboard_orders .table {
    width: 100%;
    border-color: rgba(255, 255, 255, 0.2);
}
.dejavo_dashboard_orders .table td,
.dejavo_dashboard_orders .table th {
    color: white;
    padding: 10px 22px;
    vertical-align: middle;
    border-color: rgba(255, 255, 255, 0.2);
}
.dejavo_dashboard_orders .table td p {
    font-size: 12px;
}
.dejavo_dashboard_orders .table td p:last-of-type {
    color: #738297;
    font-size: 11px;
}
.dejavo_dashboard_orders .table th {
    background-color: rgb(0 0 0 / 8%);
}
.dejavo_dashboard_orders .table a, .dejavo_dashboard_orders .woocommerce-Price-amount {
    color: white;
}
.dejavo_dashboard_orders .table tr:hover {
    background-color: rgba(0, 0, 0, 0.11);
}
.dejavo_dashboard_orders .table tr:not(:last-of-type) {
    border-bottom: 1px solid rgba(227, 227, 227, 0.54);
}
.dejavo_dashboard_orders .table>:not(:first-child) {
    border-top: 0;
}
.dejavo_dashboard_orders td.order-actions a, .woocommerce table.my_account_orders .button {
    margin: 0 5px;
    opacity: 0.9;
    padding: 10px 13px;
    font-size: 13px;
}
p.order-again {
    display: inline;
}
.dejavo_dashboard_orders td.order-actions a:hover {
    opacity: 1;
}
.order-actions a.button {
    background: var(--dej-bg2);
}
.order-actions a.button.cancel {
    opacity: 0.5;
    background: var(--dej-bg1);
}
.order-actions a.button:hover {
    opacity: 1;
    background: var(--dej-bg1);
}
.dashboard-compare-list {
    width: 100%;
    max-width: 100%;
}
.dashboard-compare-list a img {
    max-width: 200px;
    max-height: 200px;
    padding: 5px;
}
.dashboard-compare-list td.td-label {
    min-width: 100px;
}
.dashboard-compare-list .woocommerce-product-attributes-item__value {
    width: auto !important;
    margin-right: 5px;
}
.dashboard-compare-list .woocommerce-product-attributes-item__label {
    width: auto !important;
}
.dejavo_dashboard_items .item {
    flex-basis: 99% !important;
}


.order-status span {
    padding: 4px 6px;
    border-radius: 7px;
    color: white;
    display: inline-flex;
    opacity: 0.9;
    background-color: #707070;
}
.order-status span.nobr {
    background-color: unset !important;
}
.order-status .completed {
    background-color: #036e1f;
}
.order-status .refunded {
    background-color: #e65858;
}
.order-status .processing {
    background-color: #45c332;
}
.order-status .on-hold {
    background-color: #5719da;
}
.order-status .cancelled {
    background-color: #8d8d8d;
}
.order-status .pending {
    background-color: #9a0e77;
}
.order-status .failed {
    background-color: #da8019;
}
.my_account_orders del {
    all: revert !important;
    opacity: 1 !important;
}
.woocommerce-account .addresses .title .edit{
    color: #fff;
    background-color: var(--dej-color1);
    border-color: var(--dej-color1);
    padding: 5px 10px;
    border-radius: 5px;
}

.woocommerce-account .addresses .title .edit:hover {
    background-color: var(--dej-color2);
    border-color: var(--dej-color2);
    color: #fff;
}

.woocommerce-Address {
    padding: 10px;
    margin-top: 20px;
    border: 1px solid var(--border-color2);
    border-radius: 5px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}
header.woocommerce-Address-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.must-log-in {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 25px;
    padding: 20px 0;
    margin:15px 0;
    border: 5px solid #0000000d;
    border-radius: 10px;
    background-color: var(--white-color);
}
.must-log-in i {
    font-size: 150px;
    opacity: 0.15;
}

form.woocommerce-form .digits_login_via_otp {
    max-width: 200px;
    display: flex;
    justify-content: center;
}
form.woocommerce-form .digor {
    display: flex;
    padding-top: 15px;
}

.woocommerce-account .woocommerce-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
}


.woocommerce > .logo {
    max-width: 250px;
    display: inline-flex;
    justify-content: center;
    margin-top: 30px;
}

.woocommerce-account .woocommerce {
    display:flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}


.dejavo_avatar input {
    display: none;

}
.dejavo_avatar {
    position: relative;
    width: 100px;
    height: 100px;
    margin-bottom: 10px;
    overflow: hidden;
    border-radius: var(--dej-max-radius);
}
.dejavo_avatar label {
    position: absolute;
    height: 100%;
    bottom: 0;
    cursor: pointer;
}
.dejavo_avatar i {
    position: absolute;
    left: 5px;
    top: 5px;
    background-color: #ffffffe0;
    width: 25px;
    height: 25px;
    display: flex;
    font-size: 16px;
    border-radius: 5px;
    justify-content: center;
    align-items: center;
}
.dejavo_avatar img {
    border-radius: var(--dej-max-radius);
    border: 2px solid #0000001a;
    object-fit: cover;
    height: 100%;
}
#error_avatar {
    color: red;
}
.woo-wallet-my-wallet-container {
    border: 1px solid var(--border-color1) !important;
    border-radius: var(--dej-max-radius) !important;
    display: flex !important;
    flex-direction: column !important;
}
.woo-wallet-sidebar, .woo-wallet-content {
    width: 100% !important;
}
.woo-wallet-sidebar ul {
    margin: 0;
    display: flex !important;
    width: 100% !important;
}

.woo-wallet-sidebar ul li.card a {
    color: white;
    display: flex !important;
    justify-content: center;
    flex-direction: column !important;
    align-items: center;
    gap: 12px;
    width: 100%;
    line-height: 26px;
}
.woo-wallet-sidebar ul li p {
    color: white !important;
}
.woo-wallet-sidebar ul li.card {
    border-radius: var(--dej-min-radius) !important;
    background: var(--dej-bg2) !important;
    color: white !important;
    display: flex !important;
    gap: 15px;
    transition: 0.3s;
    width: 100% !important;
}
.woo-wallet-sidebar ul li.card:hover {
    border-radius: var(--dej-max-radius) !important;
    background: var(--dej-bg1) !important;
    box-shadow: unset !important;
}

.woo-wallet-my-wallet-container .woo-wallet-sidebar, .woo-wallet-balance-to-add {
    border-radius: var(--dej-max-radius) !important;
}
.woo-wallet-sidebar ul li span {
    font-size: 22px;
}

@media (max-width: 992px) {

    .woocommerce-account .woocommerce-MyAccount-navigation {
        width: 100%;
        height: 100%;
        padding: 15px 20px;
        border-radius: 0;
        margin:0;
    }
    .woocommerce-MyAccount-navigation {
        max-height: 100%;
        z-index: 1600;
        opacity: 0;
        visibility: hidden;
        position: fixed;
        top: 0;
        left: 100%;
        width: 365px;
        max-width: 83vw;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
        transition: all 0.5s;
        overflow-y: auto;
    }
    body.show_profile_sidebar .woocommerce-MyAccount-navigation, body.show_profile_sidebar .overlay-black {
        opacity: 1;
        visibility: visible;
    }
    .show_profile_sidebar .woocommerce-MyAccount-navigation {
        -webkit-transform: translate3d(-100%, 0, 0);
        transform: translate3d(-100%, 0, 0);
    }
    .woocommerce-MyAccount-navigation .header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 10px 5px;
        opacity: 1;
        visibility: visible;
        margin-bottom: 20px;
    }
    .woocommerce-MyAccount-navigation .header h5.title {
        font-size: 18px;
        font-weight: 600;
        color:white;
    }
    .woocommerce-MyAccount-navigation .header .Dejavo_close{
        color:white;
    }
    .profile_sidebar_btn {
        display: inline-flex;
        font-size: 20px;
        min-width: 30px;
        align-items: flex-start;
        opacity: 1;
        visibility: visible;
    }
    .woocommerce-account .woocommerce-MyAccount-content {
        width: 100%;
        padding: 0;
        box-shadow: unset !important;
    }
    .dej_header_profile_nav {
        gap: 5px;
        padding-left: 20px;
        padding-right: 20px;
    }
    .dejavo_dashboard_items .item {
        margin-bottom: 10px;
    }


}


@media (max-width: 768px) {

    .logged-in.woocommerce-account .woocommerce {
        flex-direction: column;
        padding: 10px 0;
    }
    .dej_header_profile_nav li a {
        width: 40px;
        height: 40px;
    }

}
@media (max-width: 576px) {
    .dej_header_profile_nav li a {
        width: 35px;
        height: 35px;
    }
    .dej_user_info .info .days {
        font-size: 11px;
    }
    .dej_header_profile_nav {
        gap: 4px;
        padding-left: 8px;
        padding-right: 8px;
    }
    .dej_user_info {
        gap: 5px;
        padding: 5px;
    }
    .dej_user_info .info .name {
        font-size: 15px;
    }
    .dej_user_info > .avatar {
        width: 60px;
        height: 60px;
    }
    .form-row-first, .form-row-last {
        width: 100%;
        display: block;
    }
    .woo-wallet-sidebar ul {
        flex-direction: column;
    }

}
