.custom__card {
    border: 1px solid #fcfcfc;
    padding: 20px;
    box-shadow: 0 2px 6px 0 rgb(218 218 253 / 40%), 0 2px 6px 0 rgb(206 206 238 / 40%);
}

.ck-editor__editable_inline {
    height: 150px;
    overflow-y: auto;
}

.admin__wrapper {
    background: #f7f7ff;
}

.sidebar__wrapper {
    background-color: #fff;
    height: 100%;
}

.sidebar__wrapper .profile__info {
    background-image: url(../images/profile-bg.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    padding: 30px 20px 20px;
    border-radius: 10px;
    margin-bottom: 12px;
    border-bottom: 2px solid #efefef;
}

.sidebar__wrapper .profile__info .profile__img {
    position: relative;
    width: 90px;
    height: 90px;
    margin: 0 auto;
    display: flex;
    margin-bottom: 12px;
}

.sidebar__wrapper .profile__info .profile__img img {
    border: 3px solid var(--primary);
    border-radius: 50%;
    padding: 2px;
    width: 90px;
    height: 90px;
}

.sidebar__wrapper .profile__info .profile__name {
    font-size: 18px;
    margin-bottom: 0;
}

.sidebar__wrapper .profile__info .profile__img .edit__profile {
    width: 26px;
    height: 26px;
    line-height: 25px;
    border: 2px solid #f8f8f8;
    position: absolute;
    right: 0;
    bottom: 0;
    border-radius: 50%;
    font-size: 11px;
    background-color: var(--primary);
}

.sidebar__wrapper .sidebar__menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sidebar__wrapper .sidebar__menu li{
    -webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
}

.sidebar__wrapper .sidebar__menu li a {
    display: block;
    position: relative;
    padding: 10px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 8px;
}

.sidebar__wrapper .sidebar__menu li a {
    text-decoration: none;
    color: #000;
}

.sidebar__wrapper .sidebar__menu li i {
    margin-right: 15px;
}

.sidebar__wrapper .sidebar__menu li:hover,
.sidebar__wrapper .sidebar__menu li:focus,
.sidebar__wrapper .sidebar__menu li.active {
    background-color: #EC1C24;
    border-radius: 4px;
    color: #fff;
    box-shadow: rgb(236 28 36 / 40%) 0px 10px 10px -10px;
}

.sidebar__wrapper .sidebar__menu li:hover a,
.sidebar__wrapper .sidebar__menu li:focus a,
.sidebar__wrapper .sidebar__menu li.active a {
    color: #fff;
    -webkit-transition: all 0.35s;
    -o-transition: all 0.35s;
    transition: all 0.35s;
    
}


/* Dashboard */

.dashboard__wrapper {
    background-color: #fff;
    position: relative;
    height: 100%;
}

.dashboard__wrapper .card__title {
    font-size: 18px;
}

.dashboard__content__wrap {
    height: 100%;
    box-shadow: none;
    border-radius: 8px;
    padding: 15px 10px;
    border: 2px solid #f8f8f8;
}

.dashboard__content__wrap .dashboard__icon {
    background-color: #ECF9FF;
    width: 60px;
    height: 60px;
    line-height: 60px;
    border-radius: 50%;
}

.dashboard__content__wrap .dashboard__icon img {
    width: 30px;
}

.dashboard__content__wrap:has(.dashboard__icon.icon__1) {
    border-left: 4px solid #0888c4;
}

.dashboard__content__wrap .dashboard__icon.icon__1 {
    background-color: #ECF9FF;
}

.dashboard__content__wrap:has(.dashboard__icon.icon__2) {
    border-left: 4px solid #fe361f;
}

.dashboard__content__wrap .dashboard__icon.icon__2 {
    background-color: #FFEBEB;
}

.dashboard__content__wrap:has(.dashboard__icon.icon__3) {
    border-left: 4px solid #077256;
}

.dashboard__content__wrap .dashboard__icon.icon__3 {
    background-color: #E2FFF3;
}

.dashboard__content__wrap .dashboard-body p {
    margin-bottom: 5px;
    font-size: 15px;
    font-weight: 700;
}

.dashboard__content__wrap .dashboard-body h2 {
    font-weight: 700;
    font-size: 32px;
    margin-bottom: 0;
}

.dashboard__address__box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border: 2px dashed #EAEAEA;
    border-radius: 1px;
    padding: 20px 10px;
}

.dashboard__address__box .default__address__title h6 {
    color: #077256;
    margin-bottom: 0;
    font-size: 15px;
    font-weight: 600;
    padding: 5px 15px;
}

.dashboard__address__box .default__address p {
    margin-bottom: 0;
    font-size: 14px;
    font-weight: 500;
    padding: 5px 15px;
    border-left: 1px solid #cac9c9;
}

/* MY ORDERS */

.my__orders__details {
    background: #fcfcfc;
    padding: 14px 20px;
    border-radius: 10px;
    margin-bottom: 10px;
    border: 1px solid #e6e3e3;
}

.my__orders__details .order__title {
    border-bottom: 1px dashed #dfdfdf;
}

.my__orders__details .order__product__wrap {
    padding: 20px;
    font-size: 12px;
    border-top: 1px dashed #e6e3e3;
}

.my__orders__details .order__product__wrap:first-child {
    border-top: none;
}

.my__orders__details .order__product__wrap .order__product__img {
    background-color: #b3b2b2;
    border-radius: 10px;
    padding: 5px;
}

.my__orders__details .order__product__wrap .order__product__body .order__product__title h6 {
    font-size: 15px;
    font-weight: 700;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.my__orders__details .order__product__wrap .order__product__body .order__product__description p {
    margin-bottom: 0;
}

.my__orders__details .order__product__wrap .order__product__body .order__product__description p:first-child {
    border-right: 2px solid #dfdfdf;
    padding-right: 10px;
}

.my__orders__details .order__product__wrap .order__product__body .order__product__description p .price {
    font-size: 15px;
}

.my__orders__details .order__product__wrap .order__product__body .order__product__status span.pending {
    color: #ec1c24;
    font-size: 13px;
    font-weight: 600;
}

.my__orders__details .order__product__wrap .order__product__body .order__product__status span.not-delivered {
    color: #FFA500;
    font-size: 13px;
    font-weight: 600;
}

.my__orders__details .order__product__wrap .order__product__body .order__product__status span.confirmed {
    color: #008000;
    font-size: 13px;
    font-weight: 600;
}

.my__orders__details .order__product__wrap .order__product__body .order__product__status span.pickup {
    color: #800080;
    font-size: 13px;
    font-weight: 600;
}

.my__orders__details .order__product__wrap .order__product__body .order__product__status span.on-the-way {
    color: #dd8f00;
    font-size: 13px;
    font-weight: 600;
}

.my__orders__details .order__product__wrap .order__product__body .order__product__status span.completed {
    color: #05a105;
    font-size: 13px;
    font-weight: 600;
}

.my__orders__details .action__btn {
    background-color: #f9f5f2;
    border: 1px solid #e6e3e3;
    border-radius: 10px;
    padding: 30px;
}

.my__orders__details .action__btn .order__invoice {
    display: block;
    text-align: center;
    color: #000;
    background-color: #fff;
    border: 1px solid #4a4a4a;
    padding: 10px;
    font-size: 14px;
    font-weight: 600;
    border-radius: 8px;
    margin-bottom: 8px;
}

.my__orders__details .order__review__btn {
    display: block;
    text-align: center;
    color: #9e2544;
    background-color: #ffd4df;
    border: 1px solid #9e2544;
    padding: 4px 12px;
    font-size: 14px;
    font-weight: 600;
    border-radius: 0px;
}

.dashboard__wrapper .order__amount__box {
    font-size: 14px;
    height: 100%;
    padding: 20px 20px;
    border-radius: 10px;
    background-color: #f9f5f2;
    border: 1px solid #e6e3e3;
}

.dashboard__wrapper .order__amount__box .order__summary__content {
    padding-bottom: 4px;
    margin-bottom: 10px;
    border-bottom: 1px dashed #d0d0d0;
}

.dashboard__wrapper .order__amount__box .order__summary__content .tax .button {
    position: relative;
    display: flex;
    align-items: center;
}

.dashboard__wrapper .order__amount__box .order__summary__content .tax .button::after {
    content: "[+]";
    font-weight: 700;
    margin-left: 10px;
    font-size: 17px;
    top: 1px;
    position: relative;
}

.dashboard__wrapper .order__amount__box .order__summary__content .tax .button:not(.collapsed)::after {
    content: "[-]";
    font-weight: 700;
    margin-left: 10px;
    font-size: 17px;
    top: 1px;
    position: relative;
}

.dashboard__wrapper .order__amount__box .order__summary__content .separate-tax p {
    margin-bottom: 5px;
    font-size: 12px;
}

.dashboard__wrapper .order__amount__box .order__summary__content .separate-tax p span {
    float: right;
}

.dashboard__wrapper .order__amount__box .order__summary__content.order__total {
    border-bottom: none;
    font-weight: 700;
    margin-bottom: 0;
}

.dashboard__wrapper .order__summary__box {
    font-size: 14px;
    background: #fcfcfc;
    padding: 20px 20px;
    border-radius: 10px;
    margin-bottom: 10px;
    border: 1px solid #e6e3e3;
}

.dashboard__wrapper .order__summary__box .order__summary__content {
    padding-bottom: 6px;
    margin-bottom: 6px;
    border-bottom: 1px dashed #d0d0d0;
}

.dashboard__wrapper .order__summary__box .order__summary__content:last-child{
    border-bottom: transparent;
}

.dashboard__wrapper .order__summary__box .order__summary__content.order__total {
    border-bottom: none;
    font-weight: 700;
    margin-bottom: 0;
}

/*.order-tracking-wrapper .order-tracking-box {
    list-style: none;
    margin-bottom: 40px;
    display: flex;
    gap: 20px;
}*/

.order__tracking__wrapper {
    font-size: 14px;
    border: 1px solid #e6e3e3;
    border-radius: 10px;
    padding: 20px;
}

.order__tracking__wrapper .step__progress strong {
    display: block;
}

.order__tracking__wrapper .step__progress {
    position: relative;
    padding-left: 45px;
    list-style: none;
}

.order__tracking__wrapper .step__progress::before {
    display: inline-block;
    content: '';
    position: absolute;
    top: 10px;
    left: 20px;
    width: 2px;
    height: 90%;
    border-left: 2px dashed #eae7e7;
}

.order__tracking__wrapper .step__progress__item {
    position: relative;
    padding-bottom: 45px;
    padding-left: 20px;
    line-height: 30px;
}

.order__tracking__wrapper .step__progress__item::before {
    display: inline-block;
    content: '';
    position: absolute;
    top: 5px;
    left: -25px;
    height: 100%;
    width: 2px;
}

.order__tracking__wrapper .step__progress__item.completed::before {
    border-left: 2px solid #008000;
}


.order__tracking__wrapper .step__progress__item::after {
    content: '🛒';
    display: inline-block;
    position: absolute;
    top: 2px;
    left: -50px;
    width: 50px;
    height: 50px;
    font-size: 20px;
    line-height: 43px;
    text-align: center;
    color: #fff;
    border: 2px solid #eae7e7;
    border-radius: 50%;
    background-color: #eae7e7;
}

.order__tracking__wrapper .step__progress__item.completed::after {
    content: "✓";
    font-size: 20px;
    color: #FFF;
    line-height: 43px;
    text-align: center;
    border: 2px solid #008000;
    background-color: #008000;
}

.order__tracking__wrapper .step__progress__item.current::after {
    content: "🗘";
    font-size: 25px;
    color: #FFF;
    text-align: center;
    border: 2px solid #ffff00;
    background-color: #ffff00;
    line-height: 43px;
}

/************* Support Ticket ***************/

.support__ticket__list {
    position: relative;
}

.support__ticket__list .raise__new__ticket {
    display: block;
    width: 100%;
    background-color: #FFDFE0;
    font-weight: 700;
    padding: 20px;
    border: 2px dashed #EC1C24;
    border-radius: 0;
}

.support__ticket__list .raise__new__ticket h5 {
    color: var(--primary);
    font-weight: 700;
    font-size: 16px;
    margin-bottom: 0;
}

.support__ticket__table {
    font-size: 14px;
    font-weight: 500;
}

.support__ticket__table thead th {
    background-color: #F8F8F8;
}

.support__ticket__table .status {
    background-color: rgb(1 87 155 / 25%);
    color: #01579B;
    padding: 4px 4px 2px;
    display: block;
    border-radius: 4px;
    text-align: center;
    font-weight: 600;
    font-size: 12px;
}

.support__ticket__table .status.new {
    background-color: rgb(41 98 255 / 25%);
    color: #2962FF;
}

.support__ticket__table .status.in-progress {
    background-color: rgb(0 159 100 / 25%);
    color: #009F64;
}

.support__ticket__table .status.hold {
    background-color: rgb(245 127 23 / 25%);
    color: #F57F17;
}

.support__ticket__table .status.completed {
    background-color: hsl(358deg 85% 52% / 25%);
    color: #ec1c24;
}

/*Detail*/

.raise__ticket__chat__box {
    position: relative;
}

.raise__ticket__chat__box .raise__ticket__chat__head {
    font-size: 14px;
    border-bottom: 2px dashed #E0E2E3;
}

.raise__ticket__chat__box .raise__ticket__chat__head .ticket__status .status {
    display: inline-block;
    background-color: rgb(1 87 155 / 25%);
    color: #01579B;
    font-size: 12px;
    padding: 5px 12px;
    border-radius: 25px;
    font-weight: 600;
    text-align: center;
}

.raise__ticket__chat__box .raise__ticket__chat__head .ticket__status .status.new {
    background-color: rgb(41 98 255 / 25%);
    color: #2962FF;
}

.raise__ticket__chat__box .raise__ticket__chat__head .ticket__status .status.in-progress {
    background-color: rgb(0 159 100 / 25%);
    color: #009F64;
}

.raise__ticket__chat__box .raise__ticket__chat__head .ticket__status .status.hold {
    background-color: rgb(245 127 23 / 25%);
    color: #F57F17;
}

.raise__ticket__chat__box .raise__ticket__chat__head .ticket__status .status.completed {
    background-color: hsl(358deg 85% 52% / 25%);
    color: #ec1c24;
}

.raise__ticket__chat__box .chat__content__container {
    padding: 15px 15px;
    border: 1px solid #E0E2E3;
    height: 500px;
    overflow-y: auto;
}

.raise__ticket__chat__box .chat__content__container .chat__time {
    font-size: 13px;
    color: #6c757d;
    text-transform: capitalize;
}

.raise__ticket__chat__box .chat__content__container .chat__box__left .chat__left__msg p{
    width: fit-content;
    background-color: #eff2f5;
    padding: 0.5rem 0.8rem;
    border-radius: 12px;
    max-width: 480px;
    text-align: left;
    margin-bottom: 0;
    border-top-left-radius: 0;
}

.raise__ticket__chat__box .chat__content__container .chat__box__right .chat__right__msg p{
    width: fit-content;
    background-color: #ffdfe0;
    padding: 0.5rem 0.8rem;
    border-radius: 12px;
    margin-left: auto;
    max-width: 480px;
    text-align: left;
    margin-bottom: 6px;
    border-top-right-radius: 0;
}

/*My ORDer*/

.recent-product-img {
   width: 50px;
    height: 50px;
    background-color: #fbfbfb;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 3px;
    border: 1px solid #e6e6e6;
}

.recent-product-img img {
    width: 50px;
    height: 50px;
    object-fit: contain;
    padding: 4px;
}