/* New account Panel  */
body {
    position: relative;
}

:root {
    --blue: #274279;
    --white: #fff;
    --gray: #f5f5f5;
    --black1: #222;
    --black2: #999;
}

.nu-stick {
    height: 100px;
}

.n-achfxt {
    width: 100%;
    position: fixed;
    left: 0;
    z-index: 999;
    background: #e4efff;
    border-bottom: 2px solid #fff;
}



.container {
    position: relative;
    width: 100%;
}

/* =============== Navigation ================ */
.navigation {
    position: fixed;
    width: 325px;
    height: 100%;
    background: #e4efff;
    border-left: 10px solid #e4efff;
    transition: 0.5s;
    overflow: hidden;
}

.navigation.active {
    width: 80px;
}

.navigation ul {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    margin-left: 0;
    padding-left: 0;
}

.navigation ul li {
    position: relative;
    width: 100%;
    list-style: none;
    border-top-left-radius: 30px;
    border-bottom-left-radius: 30px;
}

.navigation ul li:hover,
.navigation ul li.hovered {
    background-color: var(--white);
}

.navigation ul li.sgmnu-active {
    background-color: var(--white);
}

/* .navigation ul li:nth-child(1) {
    margin-bottom: 40px;
    pointer-events: none;
} */

.navigation ul li a {
    position: relative;
    display: block;
    width: 100%;
    display: flex;
    text-decoration: none;
    color: var(--blue);
    font-weight: 600;
}

.navigation ul li:hover a,
.navigation ul li.hovered a {
    color: var(--blue);
}

.navigation ul li a .icon {
    position: relative;
    display: block;
    min-width: 60px;
    height: 60px;
    line-height: 60px;
    text-align: center;
    font-size: 20px;
}

.navigation ul li a .icon ion-icon {
    font-size: 1.75rem;
}

.navigation ul li a .title {
    position: relative;
    display: block;
    padding: 0 10px;
    height: 60px;
    line-height: 60px;
    text-align: start;
    white-space: nowrap;
}

/* --------- curve outside ---------- */
.navigation ul li:hover a::before,
.navigation ul li.hovered a::before {
    content: "";
    position: absolute;
    right: 0;
    top: -50px;
    width: 50px;
    height: 50px;
    background-color: transparent;
    border-radius: 50%;
    box-shadow: 35px 35px 0 10px var(--white);
    pointer-events: none;
}

.navigation ul li:hover a::after,
.navigation ul li.hovered a::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: -50px;
    width: 50px;
    height: 50px;
    background-color: transparent;
    border-radius: 50%;
    box-shadow: 35px -35px 0 10px var(--white);
    pointer-events: none;
}

/* ===================== Main ===================== */
.main {
    /* position: absolute; */
    position: relative;
    width: calc(100% - 325px);
    left: 325px;
    min-height: 100vh;
    background: var(--white);
    transition: 0.5s;
}

.main.active {
    width: calc(100% - 80px);
    left: 80px;
}

/* .topbar {
    width: 100%;
    height: 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 10px;
} */

.toggle {
    position: relative;
    width: 60px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 30px;
    cursor: pointer;
    color: #274279;
}

/* .search {
    position: relative;
    width: 400px;
    margin: 0 10px;
} */

/* .search label {
    position: relative;
    width: 100%;
} */

/* .search label input {
    width: 100%;
    height: 40px;
    border-radius: 40px;
    padding: 5px 20px;
    padding-left: 35px;
    font-size: 18px;
    outline: none;
    border: 1px solid var(--black2);
}

.search label ion-icon {
    position: absolute;
    top: 0;
    left: 10px;
    font-size: 1.2rem;
} */

/* .user {
    position: relative;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    overflow: hidden;
    cursor: pointer;
} */

/* .user img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
} */

/* ======================= Cards ====================== */
.cardBox {
    position: relative;
    width: 100%;
    padding: 20px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 30px;
}

.cardBox .card {
    position: relative;
    background: var(--white);
    padding: 30px;
    border-radius: 20px;
    display: flex;
    justify-content: space-between;
    cursor: pointer;
    box-shadow: 0 7px 25px rgba(0, 0, 0, 0.08);
    position: relative;
}

.cardBox .card .numbers {
    position: relative;
    font-weight: 500;
    font-size: 2.5rem;
    color: var(--blue);
}

.cardBox .card .cardName {
    color: var(--black2);
    font-size: 1.1rem;
    margin-top: 5px;
}

.cardBox .card .iconBx {
    font-size: 3.5rem;
    color: var(--black2);
    position: absolute;
    right: 15px;
    opacity: 0.5;
    z-index: 9;
    top: 4px;
}

.cardBox .card:hover {
    background: var(--blue);
}

.cardBox .card:hover .numbers,
.cardBox .card:hover .cardName,
.cardBox .card:hover .iconBx {
    color: var(--white);
}

/* ================== Order Details List ============== */
.details {
    position: relative;
    width: 100%;
    padding: 20px;
    display: grid;
    grid-template-columns: 2fr 1fr;
    grid-gap: 30px;
    margin-top: 10px;
}

.details .details-container {
    position: relative;
    display: grid;
    min-height: 500px;
    background: var(--white);
    padding: 20px;
    box-shadow: 0 7px 25px rgba(0, 0, 0, 0.08);
    border-radius: 20px;
}

.details .cardHeader {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.cardHeader h2 {
    font-weight: 600;
    color: var(--blue);
}

.cardHeader .btn {
    position: relative;
    padding: 5px 10px;
    background: var(--blue);
    text-decoration: none;
    color: var(--white);
    border-radius: 6px;
}

.details table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 10px;
}

.details table thead td {
    font-weight: 600;
}

.details .recentOrders table tr {
    color: var(--black1);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.details .recentOrders table tr:last-child {
    border-bottom: none;
}

.details .recentOrders table tbody tr:hover {
    background: var(--blue);
    color: var(--white);
}

.details .recentOrders table tr td {
    padding: 10px;
}

.details .recentOrders table tr td:last-child {
    text-align: end;
}

.details .recentOrders table tr td:nth-child(2) {
    text-align: end;
}

.details .recentOrders table tr td:nth-child(3) {
    text-align: center;
}

.status.delivered {
    padding: 2px 4px;
    background: #8de02c;
    color: var(--white);
    border-radius: 4px;
    font-size: 14px;
    font-weight: 500;
}

.status.pending {
    padding: 2px 4px;
    background: #e9b10a;
    color: var(--white);
    border-radius: 4px;
    font-size: 14px;
    font-weight: 500;
}

.status.return {
    padding: 2px 4px;
    background: #f00;
    color: var(--white);
    border-radius: 4px;
    font-size: 14px;
    font-weight: 500;
}

.status.inProgress {
    padding: 2px 4px;
    background: #1795ce;
    color: var(--white);
    border-radius: 4px;
    font-size: 14px;
    font-weight: 500;
}

.recentCustomers {
    position: relative;
    display: grid;
    min-height: 500px;
    padding: 20px;
    background: var(--white);
    box-shadow: 0 7px 25px rgba(0, 0, 0, 0.08);
    border-radius: 20px;
}

.recentCustomers .imgBx {
    position: relative;
    width: 40px;
    height: 40px;
    border-radius: 50px;
    overflow: hidden;
}

.recentCustomers .imgBx img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.recentCustomers table tr td {
    padding: 12px 10px;
}

.recentCustomers table tr td h4 {
    font-size: 16px;
    font-weight: 500;
    line-height: 1.2rem;
}

.recentCustomers table tr td h4 span {
    font-size: 14px;
    color: var(--black2);
}

.recentCustomers table tr:hover {
    background: var(--blue);
    color: var(--white);
}

.recentCustomers table tr:hover td h4 span {
    color: var(--white);
}

/* Dashboard  */
.details-main-container {
    position: relative;
    width: 100%;
    padding: 20px;
    display: grid;
    grid-template-columns: 2fr;
    grid-gap: 30px;
    /* margin-top: 10px; */
}

.details-container {
    position: relative;
    /* min-height: 500px; */
    background: var(--white);
    padding: 20px;
    /* box-shadow: 0 7px 25px rgba(0, 0, 0, 0.08); */
    border-radius: 20px;
}

.sppack-cnt {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 30px;
}

.sppack-itm {
    display: block;
    border-radius: 10px;
    padding: 25px 40px;
    background: #e4efff;
    margin: 10px 5px;
    color: var(--blue) !important;
    text-align: center;
}

.sppack-itm h4 {
    text-align: center;
    font-size: 19px;
    font-weight: 500;
}

.sppack-itm h3 {
    text-align: center;
    font-size: 40px;
    margin: 20px 0;
}

.sppack-itm h6 {
    text-align: center;
    color: var(--black2);
    font-size: 17px;
}

.sppack-itm h5 {
    font-size: 17px;
    font-weight: 500;
    text-align: center;
}

.sppack-itm span {
    display: block;
    text-align: center;
    padding: 3px;
    border: 2px solid var(--blue);
    color: var(--blue);
    border-radius: 5px;
    font-weight: 500;
    margin-top: 20px;
    cursor: pointer;

}

.sppack-itm1 {}

.sppack-itm2 {
    transform: scale(1.08);
    background: var(--blue);
    color: #fff !important;
}

.sppack-itm2 span {
    display: block;
    text-align: center;
    padding: 3px;
    border: 2px solid var(--white) !important;
    background: var(--white) !important;
    color: var(--blue);
    border-radius: 5px;
    font-weight: 500;
    margin-top: 20px;
    cursor: pointer;
}

.sppack-itm3 {}

.d-escop-itm {
    position: relative;
    padding-left: 0;
    border-bottom: none;
    padding-bottom: 0;
    margin-bottom: 30px;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 7px 25px rgba(0, 0, 0, 0.08);
}

.d-escop-itm-top {
    position: relative;
    z-index: 99;
    padding: 32px 20px;
    color: var(--blue);
    box-shadow: 0 7px 25px rgba(0, 0, 0, 0.08);
}

.d-escop-itm h5 {
    font-size: 18px;
    margin-bottom: 0px;
    font-weight: 600;
}

.d-escop-itm small {
    color: #274279;
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 7px;
    display: block;
    margin-top: 5px;
    font-weight: 400;
}

.standard-progress {
    display: block;
    width: 100%;
    position: absolute;
    top: 0;
    bottom: 0;
    z-index: 9;
}

.progress-container {
    width: calc(100% - 120px);
    display: inline-block;
    overflow: visible;
    background: #e1e1e17a;
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
    border-radius: 2px;
    margin-top: 0;
}

.progress-fill {
    width: 59.475%;
    background: #cadcff;
    height: inherit;
    position: absolute;
    left: 0;
    z-index: 1;
    border-radius: 2px;
    background-image: linear-gradient(to right, #95afe1, #e2ecff);
}

.standard-progress .standard-progress-indicator {
    font-size: 19px;
    font-weight: 600;
    width: auto;
    display: inline-block;
    position: absolute;
    top: 5px;
    right: 8px;
    z-index: 9;
    opacity: 0.3;
}

.rght20 {
    right: 50px !important;
}

.new-box {

    width: 100%;
    padding: 20px;
    display: grid;
    grid-gap: 30px;
    margin-top: 10px;

}

.new-box-in {
    position: relative;
    display: grid;
    background: var(--white);
    padding: 30px;
    box-shadow: 0 7px 25px rgba(0, 0, 0, 0.08);
    border-radius: 20px;
}

.sub-smltxt {
    font-size: 14px;
}

.sp-title {
    margin-bottom: 0;
    line-height: 16px;
}

.prf-inf-art-itm-click p {
    font-size: 14px;
    color: #333;
}

.breadcrumb {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    padding: 0;
    margin-bottom: 1rem;
    list-style: none;
    background-color: transparent;
    border-radius: .25rem;
}

.lang-cnt {
    background: none;
    border: 1px solid #ddd;
}

.sub-cnt {
    background: none;
    border: 1px solid #ddd;
}

/* End Dashboard  */

/* New profile menu  */
.sg-head-right {
    position: relative;
}

.m-action {
    /* position: fixed; */
    /* position: absolute; */
    position: relative;
    /* top: 20px; */
    /* top: 0; */
    /* right: 30px; */
    z-index: 999;
}

.m-profile {
    position: relative;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    overflow: hidden;
    cursor: pointer;
    background-color: #fff;
}

.m-profile img {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.m-menu {
    position: absolute;
    right: -5px;
    top: 100px;
    width: 200px;
    background: #f8fbff;
    padding: 20px 20px 0;
    box-sizing: 0 5px 25px rgba(0, 0, 0, 0.1);
    border-radius: 15px;
    transition: 0.5s;
    visibility: hidden;
    opacity: 0;
    box-shadow: 0px 0px 5px 0px #d9d9d9
}

.m-menu.m-active {
    visibility: visible;
    opacity: 1;
    top: 70px;
}

.m-menu::before {
    content: "";
    width: 25px;
    height: 25px;
    background: #f8fbff;
    transform: rotate(45deg);
    position: absolute;
    top: -6px;
    right: 20px;
}

.m-menu-top {}

.m-menu-top h4 {
    width: 100%;
    text-align: center;
    font-size: 17px;
    color: #555;
    line-height: 1.2em;
}

.m-menu-top h4 span {
    display: block;
    font-size: 13px;
    font-weight: 400;
    color: #999;
}

.m-menu ul {
    margin-left: 0;
    padding-left: 0;
}

.m-menu ul li {
    list-style: none;
    margin-left: 0;
    padding-left: 0;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
}

.m-menu ul li a {
    width: 100%;
    display: block;
    padding: 7px 0;
    color: #747272;
    font-size: 14px;
    cursor: pointer;
    font-weight: 400;
    transition: 0.05s;
    text-decoration: none;
    text-align: left;
}

.m-menu ul li:hover a span {
    color: #333;
}

.m-menu ul li a i {
    margin-right: 10px;
    opacity: 0.4;
    font-size: 17px;
}

.m-menu ul li a:hover i {
    opacity: 1;
}

/* End New profile menu  */

/* Payment Page  */
.p-message-cnt{
    text-align: center;
    margin: 30px 0;
}
.p-message-logo{
    display: block;
    max-height: 100px;
    max-width: 100px;
    margin: 20px auto;
}
.p-message-content{}
.p-message-content h4{
    color: #333;
    margin-bottom: 15px;
}
.p-message-content h6{
    color: #555;
    line-height: 25px;
    margin-bottom: 15px;
}
.p-message-content p{
    color: #555;
}
.p-message-nd-hlp{
    font-size: 16px;
    display: block;
    margin-top: 15px;
    color: #7a7a7a;
    font-weight: 400;
}

/* End Payment Page  */

/* ====================== Responsive Design ========================== */
@media (max-width: 991px) {
    .navigation {
        left: -300px;
    }

    .navigation.active {
        width: 300px;
        left: 0;
    }

    .main {
        width: 100%;
        left: 0;
    }

    .main.active {
        left: 300px;
    }

    .cardBox {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .details {
        grid-template-columns: 1fr;
    }

    .recentOrders {
        overflow-x: auto;
    }

    .status.inProgress {
        white-space: nowrap;
    }

    /* .sppack-cnt {
        flex-wrap: wrap;
    } */


    .details-main-container {
        padding: 10px;
    }

    .details-container {
        padding: 0;
    }

    .cardHeader h2 {
        font-size: 25px;
        margin-top: 20px;
        margin-bottom: 20px;
    }

    .sppack-cnt {
        padding: 0;
        margin: 0;
    }

    .sppack-itm {
        border-radius: 6px;
        padding: 15px 19px;
        margin: 10px 0px;
        text-align: center;
    }

    .sppack-itm h4 {
        text-align: center;
        font-size: 15px;
        font-weight: 500;
    }

    .sppack-itm h3 {
        text-align: center;
        font-size: 22px;
        margin: 12px 0;
    }

    .sppack-itm h5 {
        font-size: 16px;
        font-weight: 500;
        text-align: center;
    }

    .sppack-itm button {
        font-size: 12px;
        padding: 5px 10px;
        margin: 0 auto;
    }

    .new-box-in {
        position: relative;
        display: grid;
        background: var(--white);
        padding: 0;
        box-shadow: none;
        border-radius: 0;
    }

    .new-box {
        margin-top: 0;
    }

    .sub-cnt {
        padding: 12px;
    }

    .main.active {
        /* left: 0px; */
    }

    .main.active {
        left: 0;
    }

    .cardBox {
        grid-template-columns: repeat(2, 2fr);
    }

    .cardBox .card .cardName {
        color: var(--black2);
        font-size: 15px;
        margin-top: 5px;
    }

    .cardBox .card .numbers {
        position: relative;
        font-weight: 500;
        font-size: 20px;
        color: var(--blue);
    }

    .cardBox {
        grid-gap: 10px;
    }

    .d-escop-itm {
        margin-bottom: 22px;
    }

    .d-escop-itm-top {
        padding: 23px 10px;
    }

    .navigation {
        overflow-y: scroll;
    }
}

/*@media (max-width: 480px) {*/
    @media (max-width: 767px) {
    .cardBox {
        grid-template-columns: repeat(2, 2fr);
    }

    .cardHeader h2 {
        font-size: 22px;
        margin-top: 20px;
    }

    .user {
        min-width: 40px;
    }

    .navigation {
        width: 100%;
        left: -100%;
        z-index: 1000;
    }

    .navigation.active {
        width: 100%;
        left: 0;
    }

    .toggle {
        z-index: 10001;
    }

    .main.active .toggle {
        color: #fff;
        position: fixed;
        right: 0;
        left: initial;
    }

    .cardBox .card {
        padding: 15px;
    }
}

/* ==== New account Panel ====  */