.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: #fd6f6f;
}

.dej_user_info {
    background-color: #118ab2;
    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%;
}
.dej_user_info img.avatar {
    border-radius: 50%;
}

.dej_user_info .info {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.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_header_profile_nav {
    display: flex;
    gap: 10px;
    padding-left: 30px;
}
.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: #fd6f6f;
    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: 14px;
    height: 40px;
    background-color: rgb(0 0 0 / 15%);
    border-radius: 10px 10px 10px 30px;
    color: white;
    backdrop-filter: blur(10px);
    transition: 0.3s;

}
.woocommerce-MyAccount-navigation-link a:hover {
    background-color: var(--dej-color2);
    font-size: 16px;
}
.woocommerce-MyAccount-navigation-link.is-active a {
    background-color: rgb(0 0 0 / 35%);
}

.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 .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: 0;
    top: 0;
    border-radius: 100%;
    background-color: #ff5b5b;
    padding: 4px;
    animation: pulse 2s infinite;
}
@keyframes pulse{
    0%{
    box-shadow:0 0 0 0 rgba(255,255,255,.6)}
    70%{
        box-shadow:0 0 0 10px rgba(204, 44, 44, 0)
    }
    100%{
        box-shadow:0 0 0 0 rgba(204, 44, 44, 0)
    }
}
























.woocommerce .woocommerce-form-login .woocommerce-form-login__rememberme {
    display: inline-flex;
    padding-top: 6px;
    justify-content: space-between;
    gap: 5px;
}
.woocommerce-form-login .lost_password {
    padding-top: 10px;
}


.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: #fd6f6f;
}
.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_orders {
    background-color: #118ab2;
    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 {
    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 {
    display: flex;
    justify-content: flex-end;
}
.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;
}
.dejavo_dashboard_orders td.order-actions a:hover {
    opacity: 1;
}
.order-actions a.button {
    background: rgba(10, 10, 10, 0.24);
}
.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 .completed, .order-status .refunded, .order-status .processing, .order-status .on-hold, .order-status .cancelled {
    padding: 4px 6px;
    border-radius: 7px;
    color: white;
}
.order-status .completed {
    background-color: #07982f;
}
.order-status .refunded {
    background-color: #979797;
}
.order-status .processing {
    background-color: #e85f5f;
}
.order-status .on-hold {
    background-color: #da8019;
}
.order-status .cancelled {
    background-color: #8d8d8d;
}
.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;
}


.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;
}
@media (max-width: 991.98px) {

    .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: 1300;
        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: 767.98px) {

    .logged-in.woocommerce-account .woocommerce {
        flex-direction: column;
        padding: 10px 0;
    }
    .dej_header_profile_nav li a {
        width: 40px;
        height: 40px;
    }

}
@media (max-width: 575.98px) {
    .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;
    }

}
