.acount-drop-down {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    width: fit-content;
    padding: 2px 5px;
    border-radius: 5px;
    border: 1px solid #d792a7;
    font-size: 14px;
    font-weight: 500;
    gap: 15px;
    background-color: var(--primary-dark);
    cursor: pointer;
    position: relative;
    min-width: 110px;
}

.acount-drop-down span {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 5px;
}

.acount-drop-down span p {
    margin: 0;
    font-size: 14px;
    font-weight: 600;
    color: var(--color-white);
}

.acount-drop-down img {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    border: 3px dashed #fff;
    object-fit: cover;
}

.acount-drop-down i {
    color: var(--color-white);
}

.acount-drop-menu {
    background-color: #fff;
    position: absolute;
    bottom: -105px;
    left: 0;
    width: fit-content;
    padding: 5px;
    border-radius: 10px;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    z-index: 1;
    display: none;

}

.acount-drop-menu ul {
    padding: 0;
    margin: 0;
    list-style: none;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
}

.acount-drop-menu ul li {

    margin: 5px 0;
    width: 100%;
}

.acount-drop-menu ul li a {
    white-space: nowrap;
    font-size: 14px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 10px;
    padding: 7px 15px;
    transition: 0.5s;
    width: 100%;
    border-radius: 3px;
    color: #000;
    background-color: transparent;
    text-decoration: none;
}

.acount-drop-menu ul li a i {
    color: #000;
}

.acount-drop-menu ul li a:hover {
    background-color: var(--theme-color);
    color: #fff;
}

.acount-drop-menu ul li a:hover i {
    color: var(--color-white);
}

.drop-block .acount-drop-menu {
    display: block;
}


.user-profile-preview {
    width: 100%;
    height: fit-content;
    padding: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    background-color: #fff;
    border: 1px solid #8b8b8b;
    border-radius: 10px;
    margin-bottom: 10px;
    position: relative;
}

.user-profile-preview a {
    width: 40px;
    height: 40px;
    background-color: var(--theme-color);
    color: #fff;
    position: absolute;
    top: 15px;
    right: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 5px;
}

.user-profile-preview img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 5px dashed #23750a;
}

.user-profile-preview h3 {
    color: #000;
    font-weight: 500;
    margin: 5px 0;
    font-size: 24px;
}

.user-profile-preview p {
    margin: 0;
    font-size: 14px;
    color: #000;
}

.user-dashboard-sidebar {
    width: 100%;
    height: fit-content;
    padding: 10px 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    /* background-color: #e9e9e9; */
    border: 1px solid #ccc;
    border-radius: 10px;
    margin-bottom: 20px;
}

.user-dashboard-sidebar ul {
    margin: 0;
    padding: 0;
    list-style: none;
    width: 100%;
}

.user-dashboard-sidebar ul li {
    width: 100%;
    margin: 2px 0;
}

.user-dashboard-sidebar ul li a {
    text-decoration: none;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    color: #000;
    font-size: 16px;
    padding: 10px;
    /* border-radius: 5px; */
    transition: 0.5s;
    border-bottom: 2px solid transparent;
}

.user-dashboard-sidebar ul li a.active {
    border-bottom: 2px solid var(--theme-color);
}

.user-dashboard-sidebar ul li a:hover {

    color: var(--theme-color);
}

.user-dashboard-sidebar ul li a i {
    width: 30px;
    display: flex;
    justify-content: flex-start;
    font-size: 16px;
    margin-right: 15px;
}

.user-dashboard-sidebar ul li a i img {
    width: 25px;
}

.user-dashboard-top {
    padding-bottom: 10px;
}

.user-dashboard-top h3 {
    font-size: 28px;
    font-weight: 500;
    margin: 0;
}

.user-dashboard-top p {
    font-size: 14px;
    font-weight: 500;
}

.user-dashboard-top a {
    padding: 5px 15px;
    width: fit-content;
    background-color: #004A73;
    color: #fff;
    border: 1px solid #004A73;
    border-radius: 5px;

    display: flex;
    justify-content: center;
    align-items: center;
    margin-left: auto;
    font-size: 14px;

}

.user-dashboard-top a:hover {
    border-radius: 40px;
    background-color: transparent;
    color: var(--theme-color);
    border-color: var(--theme-color);
}


.dashboard-card {
    width: 100%;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    /* box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px; */
    background-color: #fff;
    border-radius: 25px;
    overflow: hidden;
    background: rgb(255 255 255 / 73%);
    backdrop-filter: blur(7px);
    -webkit-backdrop-filter: blur(7px);
}

.dashboard-card .dashboard-card-icon {
    height: 120px;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 120px;
    border-radius: 25px;
}

.dashboard-card .dashboard-card-icon i {
    font-size: 45px;
    color: #fff;
}

.dashboard-card .dashboard-card-dt {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
}

.dashboard-card .dashboard-card-dt h3 {
    margin: 0;
    font-size: 22px;
    font-weight: 600;
    color: #3d3d3dbf;
}

.dashboard-card .dashboard-card-dt p {
    margin: 0;
    font-size: 15px;
    color: #222222bf;
    font-weight: 600;
}

.icon_bg_1 {
    background-color: #39B27C;
}

.icon_bg_2 {
    background-color: #e76262;
}

.icon_bg_3 {
    background-color: #f8d347;
}

.icon_bg_4 {
    background-color: #9544ea;
}

.icon_bg_5 {
    background-color: #02cac4;
}

.icon_bg_6 {
    background-color: #e762dd;
}

.dashboard-card.background-1 {
    background-color: #ceeddf;
    border: 1px solid #86c4a8;

}

.dashboard-card.background-2 {
    background: #f3cccc;
    border: 1px solid #db8b8b;

}

.dashboard-card.background-3 {
    background: #fcf2cd;
    border: 1px solid #f8d347d9;


}

.dashboard-card.background-4 {
    background: #e0ccf6;
    border: 1px solid #b18adc;


}

.dashboard-card-second {
    border-radius: 20px;
    padding: 20px;
}

.dashboard-card-second .dashboard-card-icon {
    width: 70px;
    height: 70px;
    min-width: 70px;
    border-radius: 50%;
}

.dashboard-card-second .dashboard-card-icon i {
    font-size: 25px;
}

.dashboard-card-second .dashboard-card-dt {
    align-items: flex-start;
}

.dashboard-card-second .dashboard-card-dt h3 {
    font-size: 25px;
    color: #000;
}

.dashboard-card-second .dashboard-card-dt p {
    font-size: 14px;
    color: #000;
}

.dashboard-card-second .dashboard-card-dt small {
    font-size: 14px;
}




.profile-edit-form input,
.profile-edit-form select,
.profile-edit-form .nice-select {
    height: 48px;
    line-height: 45px;
    border: 1px solid #2222227a;
    padding: 0 15px;
}

.profile-edit-form .nice-select:after {
    top: 17px;
}

.profile-edit-form label {
    font-size: 15px;
}




.logout-title {
    text-align: center;
    font-size: 20px;
    margin: 0;
    color: #000;
    margin-top: 0;
    font-weight: 600;
}

.logout-modal-footer {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px 30px;
    gap: 10px;
}

.logout-modal-footer button,
.logout-modal-footer a {
    width: 100px;
    height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 15px;
    font-weight: 500;
    transition: 0.5s;
    border-radius: 4px;
    text-decoration: none !important;
    border: 0;
}

.logout-modal-footer a {
    background-color: var(--theme-color);
    color: #fff;

}

.logout-modal-footer button {
    background-color: #E5D8CB;
    color: #222;
}

.logout-modal-footer button:hover,
.logout-modal-footer a:hover {
    border-radius: 40px;
}

.user-property-widget-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.user-property-widget-top span {
    padding: 0px 15px;
    color: #fff;
    background-color: #089748;
    border-radius: 40px;
    font-size: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.user-property-widget-top .dropdown-toggle::after {
    display: none;
}

.user-property-widget-top .dropdown-toggle {
    color: #000;
    font-weight: 600;
    font-size: 16px;
}

.user-property-widget-top .dropdown-menu li a {
    text-align: left;
    padding: 5px 0;
    font-size: 14px;
}

.user-property-widget {
    /* background-color: #f7f7f7; */
    padding: 10px;
    border-radius: 10px;
    border: 1px solid #ccc;
}

.user-property-widget-img {
    width: 100%;
    height: 250px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 10px 0;
    border-radius: 10px;
    overflow: hidden;
}

.user-property-widget-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.user-property-widget-info h3 {
    font-size: 20px;
    font-weight: 500;
    margin: 0;
}

.user-property-widget-info p {
    font-weight: 500;
    color: #686767;
    margin: 5px 0;
}

.user-property-widget-info p i {
    color: var(--theme-color);
    margin-right: 10px;
}

.user-property-widget-info ul {
    margin: 0;
    padding: 0;
    list-style: none;

}

.user-property-widget-info ul li {
    font-weight: 600;
    color: #000;
    margin: 3px 0;
    font-weight: 600;
}

.user-property-widget-info ul li span {
    font-weight: 500;
    color: #4e4e4e;
}

.user-property-img-box {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding-top: 10px;
    gap: 10px;
}

.user-property-img-box img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
}

.user-property-img-box a {
    width: 110px;
    height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--theme-color);
    color: #fff;
    border-radius: 40px;
    transition: 0.5s;
    border: 1px solid var(--theme-color);
}

.user-property-img-box a:hover {
    background-color: transparent;
    color: var(--theme-color);
}

.user-property-img input {
    height: 47px;
}

.user-property-img input::file-selector-button {
    background-color: #004A73;
    color: #fff;
}

.verify-number h6 {
    font-size: 18px;
    font-weight: 600;
    margin: 0;
    color: var(--theme-color);
}

.verify-number h3 {
    font-size: 20px;
    margin: 0 !important;
}

.verify-number a {
    text-align: center;
    margin: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #000;
    margin-top: 5px;
}


.over-scrol {

    width: 100%;
    overflow-y: auto;
}

.over-scrol::-webkit-scrollbar {
    width: 3px;
    height: 3px;
}

/* Track */
.over-scrol::-webkit-scrollbar-track {
    /*box-shadow: inset 0 0 5px grey; */
    border-radius: 10px;
}

/* Handle */
.over-scrol::-webkit-scrollbar-thumb {
    background: #696969;
    border-radius: 10px;
}

.order-table tr th {
    font-size: 15px !important;
    font-weight: 600 !important;
    color: #fff;
    /* background-color: #8FB135; */
    background-color: #991926;
    white-space: nowrap;
    padding: 15px 10px !important;
    text-align: center;
    /* min-width: 150px; */
    border: 1px solid #b0b0b061;
}

.order-table tr td {
    font-size: 15px !important;
    padding: 15px 10px;
    color: #000;
    text-align: center;
    vertical-align: middle;
    border: 1px solid #62616161;
}

.td-actions {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
}

.td-actions a,.td-actions button {
    white-space: nowrap;
    font-size: 14px !important;
    padding: 3px 8px;
    border-radius: 4px;
    transition: 0.5s;
    background-color: #9c1b30;
    text-decoration: none;
    color: #fff;

}
.td-actions button{
    border:0;
    background-color:#9c921b;
}

.td-actions a:hover,.td-actions button:hover {
    border-radius: 40px;
    text-decoration: none;
    background-color: var(--theme-color);
}

.td-actions a.td-edit {
    background-color: #197738;
}

.nowrap {
    white-space: nowrap;
}

.profile-container {
    width: 100%;
    padding: 20px;
    background-color: #fff;
    border-radius: 15px;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

.watchlist-table {
    border: 0;
}

.watchlist-table tr {
    border: 0;
}

.watchlist-table tr th {
    padding: 15px 13px !important;
    color: #222;
    border: 0;
    border-bottom: 1px solid #ccc;
    text-align: center;
    max-width: 200px;
    white-space: nowrap;
}

.watchlist-table tr td {
    vertical-align: middle;
    text-align: center;
    border: 0;
    border-bottom: 1px solid #ccc;
    padding: 15px 13px !important;
    font-family: var(--font-family);
    font-size: 15px;
    max-width: 200px;
}

.watchlist-table tr td a.wishlist-delete {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 1px solid #9d2727;
    color: #9d2727;
    background-color: #ec9c9c63;
    font-size: 14px;
    transition: 0.5s;
    display: flex;
    justify-content: center;
    align-items: center;
}

.watchlist-table tr td .wishlist-product-img {
    width: 100px;
    height: 60px;
    object-fit: cover;
    border-radius: 10px;
}

.watchlist-table tr td .wishlist-cart-btn {
    width: fit-content;
    height: fit-content;
    background-color: #004A73;
    color: #fff;
    border-radius: 5px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 7px 15px;
    font-size: 14px;
    font-weight: 600;
    border: 1px solid #004A73;
    transition: 0.5s;
    margin: auto;
    white-space: nowrap;
}

.user-testimonial-field textarea {
    border: 1px solid #2222228e;
}

.user-testimonial-field button {
    background-color: var(--theme-color);
    color: #fff;
    height: 40px;
    display: flex;
    padding: 5px 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 5px;
    font-size: 15px;
    width: 200px;
    border: 0;
    margin: 10px auto;
}

.user-testimonial-field button:hover {
    border-radius: 40px;
}

.nodata {
    background-color: #f7f7f7;
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    border: 1px solid #ccc;
}

.nodata p {
    margin: 0;
    font-weight: 600;
}

.user-profile-preview-two {
    padding-top: 20px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.user-profile-preview-two small {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    font-size: 14px;
    padding: 0 20px;
}

.user-profile-preview-two small a {
    color: #acacac;
    font-size: 22px;
}

.user-profile-preview-two small a:hover {
    color: var(--theme-color);
}

.user-profile-preview-two-img {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 30px 0;
}

.user-profile-preview-two-img img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    border: 1px solid #ccc;
}

.user-profile-preview-two-img h3 {
    font-size: 25px;
    font-weight: 500;
    margin: 0;
    margin-top: 10px;
}

.user-profile-preview-two-img p {
    margin: 0;
}

.user-profile-preview-two-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px 10px 20px;
    background-color: #F0FFF6;
}

.user-profile-preview-two-bottom p {
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    font-weight: 600;
    font-size: 13px;
    gap: 5px;
    color: #1c8228dc;
}

.dashboard-card-secondry {
    border: 1px solid #ccc;
    border-radius: 5px;
}
.dashboard-card-secondry  img{
    width:100%;
}
.dashboard-card-secondry-top {
    padding: 15px;
}

.dashboard-card-secondry-top div {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 10px;
}

.dashboard-card-secondry-top div h4 {
    font-size: 30px;
    margin: 0;
    font-weight: 400;
}

.dashboard-card-secondry-top div i {
    font-size: 30px;
}

.dashboard-card-secondry-top p {
    margin: 0;
    font-weight: 500;
    font-size: 15px;
}

.dashboard-card-secondry i.i-orange {
    color: #e67321 !important;
}

.dashboard-card-secondry i.i-blue {
    color: #499feb !important;
}

.dashboard-card-secondry i.i-purple {
    color: #ab34b8 !important;
}

.dashboard-card-secondry i.i-green {
    color: #49eb49 !important;
}

.dashboard-card-secondry:hover {
    background-color: #f7f7f7;
}



/* Chat-bx */
:root {
    --body-bg: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    --msger-bg: #fff;
    --border: 2px solid #ddd;
    --left-msg-bg: #ececec;
    --right-msg-bg: #2eb86d;
}





.msger {
    display: flex;
    flex-flow: column wrap;
    justify-content: space-between;
    width: 100%;
    height: calc(100% - 50px);
    border-radius: 5px;
}

.msger-header {
    display: flex;
    justify-content: space-between;
    padding: 10px;
    color: #666;
    border-bottom: 1px solid #ccc;
}

.msger-chat {
    /* flex: 1; */
    overflow-y: scroll;
    padding: 10px;
    height: 400px;
}

.msger-chat::-webkit-scrollbar {
    width: 3px;
}

.msger-chat::-webkit-scrollbar-track {
    background: #fff;
}

.msger-chat::-webkit-scrollbar-thumb {
    background: #bdbdbd;
}

.msg {
    display: flex;
    align-items: flex-end;
    margin-bottom: 10px;
}

.msg:last-of-type {
    margin: 0;
}

.msg-img {
    width: 50px;
    height: 50px;
    margin-right: 10px;
    background: #ddd;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    border-radius: 50%;
  
}

.msg-bubble {
    max-width: 450px;
    padding: 15px;
    border-radius: 15px;
    background: var(--left-msg-bg);
}

.msg-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.msg-info-name {
    margin-right: 10px;
    font-weight: 500;
    font-size: 13px;
    font-family: var(--font-main);
}

.msg-text {
    font-family: var(--font-main);
}

.msg-info-time {
    font-size: 0.85em;
}

.left-msg .msg-bubble {
    border-bottom-left-radius: 0;
}

.right-msg {
    flex-direction: row-reverse;
}

.right-msg .msg-bubble {
    background: var(--right-msg-bg);
    color: #fff;
    border-bottom-right-radius: 0;
}

.right-msg .msg-img {
    margin: 0 0 0 10px;

}

.msger-inputarea {
    display: flex;
    padding: 10px;
    border-top: var(--border);
    background: #fff;
}

.msger-inputarea * {
    padding: 10px;
    border: none;
    border-radius: 3px;
    font-size: 1em;
}

.msger-input {
    flex: 1;
    background: #f2f2f2 !important;
    outline: none;
    border: none;
    border-top-right-radius: 20px;
    border-bottom-right-radius: 20px;
}

.msger-send-btn {
    margin-left: 10px;
    background: var(--theme-color);
    color: #fff;
    font-weight: bold;
    cursor: pointer;
    min-width: 50px;
    height: 50px;
    border-radius: 50%;
    transition: background 0.23s;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 15px;
}

.msger-send-btn i {
    padding: 0;
}

.msger-send-btn:hover {
   background: var(--theme-color);
}

.msger-chat {
    background-color: #fcfcfe;

}

.chat-img-bx {
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    background: #fff;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    padding: 4px;
}

.chat-img-bx img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
}

.msger-header-title h3 {
    font-size: 17px;
    font-weight: 500;
    margin-left: 10px;
    margin-bottom: 0;
}

.file-attch {
    background-color: #f2f2f2;
    border-top-left-radius: 20px;
    border-bottom-left-radius: 20px;
}

.d-flex-end-btn{
    display:flex;
    justify-content:flex-end;
    align-items:flex-end;
    gap:5px
}


.d-flex-end-btn a{
    margin:unset;
}

.enq-table tr td, .enq-table tr th{
    font-size:16px;
    padding:15px;
    vertical-align:middle;
}







