<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    list-style: none;
    text-decoration: none;
    outline: none;
}

body {
    font-family: 'Raleway', sans-serif;
    background: #fff;
    background-color: #fefefe;
}

body::-webkit-scrollbar {
    width: 0;
}

/* globle styling */
img {
    width: 100%;
}

ul {
    list-style: none;
}

a {
    text-decoration: none;
    color: #000;
}

hr {
    width: 95vw;
    margin: 0 auto;
}

p {
    line-height: 30px;
}

/* header */
header {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    height: 80px;
    padding: 0 100px;
    background: #fff;
    box-shadow: 0 0 5px 2px rgba(50, 50, 50, 0.25);
}

.logo {
    font-size: 18px;
    font-weight: bold;
    color: #11101b;
}

.hamburger {
    display: none;
}

.nav-bar ul,
.social-icons ul {
    display: flex;
}

.nav-bar ul li:last-child {
    margin-right: 0;
}

.nav-bar ul li a,
.social-icons ul li a {
    display: block;
    color: #11101b;
    font-size: 18px;
    padding: 10px;
    border-radius: 50px;
    transition: all ease 0.2s;
    margin: 0 5px;
}

.nav-bar ul li a:hover,
.social-icons ul li a:hover {
    color: #11101b;
}

.nav-bar ul li a.active,
.social-icons ul li a.active {
    color: goldenrod;
}

.nav-bar ul .submenu {
    position: absolute;
    width: 200px;
    background: #ffff;
    border-radius: 5px;
    box-shadow: 0 20px 4px #00000020;
    margin-top: -50px;
    opacity: 0;
    z-index: -999;
    transition: all ease 0.5s;
}

.nav-bar ul li:hover .submenu {
    z-index: 99;
    opacity: 1;
    margin-top: 0;
}

.nav-bar ul .submenu li {
    margin: 0;
    width: 100%;
}

.nav-bar ul .submenu li a {
    padding: 15px 20px;
    width: 100%;
}

.notifications-total {
    position: absolute;
    top: 12px;
    margin-left: 10px;
    font-size: 10px;
    background-color: rgb(235, 210, 72);
    color: #fff;
    padding: .3rem;
    width: 20px;
    height: auto;
    border-radius: 100%;
    display: flex;
    justify-content: center;
}

/* main section */

main {
    padding: 100px 50px 50px 50px;
    display: flex;
    flex-direction: column;
}

.wapper {
    padding: 10px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.left-wapper,
.right-wapper {
    padding: 10px;
    background: #FDFEFE;
    border-radius: 5px;
    box-shadow: 0 0 5px 2px rgba(50, 50, 50, 0.25);
}

.left-wapper {
    width: 30%;
    height: fit-content;
}

.left-wapper h1,
.right-wapper div h2 {
    font-size: 25px;
    font-weight: normal;
    text-transform: capitalize;
    color: goldenrod;
}

.right-wapper div h2 {
    margin-bottom: 20px;
}

.main-menu {
    padding: 10px;
}

.main-menu .item:nth-child(1) {
    margin-bottom: 10px;
}

.main-menu li a {
    display: flex;
    flex-direction: row;
    align-items: center;
}

.main-menu li a svg {
    margin-right: 8px;
}

.menu-items {
    display: flex;
    flex-direction: column;
}

.menu-title {
    padding: 10px 0 10px 0;
    border-bottom: 1px dotted #ccc;
}

.leftsubmenu li {
    display: flex;
    flex-direction: column;
    padding: 10px 10px 10px 30px;
}

.leftsubmenu li a:not(:last-child) {
    padding-bottom: 10px;
}

.right-wapper {
    width: 65%;
    height: fit-content;
}

.right-wapper p {
    letter-spacing: 1px;
    font-weight: normal;
    color: #555454;
    font-size: 14px;
    margin-bottom: 10px;
}

/*.right-wapper div {
    border: 1px solid red;
}*/

.right-wapper div hr {
    width: 100%;
    height: 0.6px;
    border: none;
    background-color: #ccc;
    border-radius: 5px;
    margin-top: 10px;
    margin-bottom: 20px;
}

.track-wigdet,
.confirm-wigdet,
.courses-wigdet,
.payments-orders-wigdet,
.enrollments-wigdet,
.payments-courses-wigdet,
.chat-wigdet,
.profile-wigdet,
.customer-widget,
.all-orders-widget,
.products-manage-widget,
.products-category-widget,
.inventory-list-widget,
.suppliers-widget,
.returns-widget,
.purchases-widget,
.stores-widget,
.manage-store-widget {
    display: none;
}

.widget-form-search-button {
    background-color: goldenrod;
    color: #fff;
    border: goldenrod;
    border-radius: 5px;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    height: 31px;
    margin-left: 10px;
    padding-left: 10px;
    padding-right: 10px;
}

.widget-form-search-button {
    background-color: goldenrod;
    color: #fff;
    border: goldenrod;
    border-radius: 5px;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    height: 31px;
    margin-left: 10px;
    padding-left: 10px;
    padding-right: 10px;
}

.track-orders-form {
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    flex-wrap: wrap;
    row-gap: 20px;
}

.track-orders-form input {
    padding: 10px;
    font-size: 15px;
    height: 31px;
    width: auto;
    outline: none;
    border: 1px solid #b6b3b3;
    border-radius: 5px;
    margin-right: 10px;
}

.track-orders-form input:hover {
    box-shadow:0 10px 20px rgba(148, 147, 147, 0.6);
}

.track-orders-form select {
    margin-bottom: 10px;
    font-size: 15px;
    padding: 5px;
    outline: none;
    border: 1px solid #b6b3b3;
    border-radius: 5px;
}

.track-sub-title-links {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    height: fit-content;
    width: 100%;
}

.track-sub-title-item {
    width: 33.3%;
    text-align: center;
    overflow-x: auto;
}

.track-sub-title {
    letter-spacing: 1px;
    font-weight: normal;
    color: #555454;
    font-size: 15px;
}

.track-sub-title-item hr {
    width: 50px !important;
    height: 3px !important;
    border: none;
    background-color: goldenrod !important;
    border-radius: 5px;
    margin-top: 5px;
    margin-bottom: 0px !important;
}

.track-history {
    border-top: 0.6px dotted #ccc;
}

.track-list-details {
    display: flex;
    flex-direction: column;
    width: 100%;
    margin-top: 20px;
}

.track-history-list {
    height: 380px;
    overflow-y: auto;
}

.track-history-list::-webkit-scrollbar {
    width: 0px;
}

.track-history-item {
    display: flex;
    flex-direction: row;
}

.track-history-item-left {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 10%;
}

.line-down {
    width: 0.8px;
    height: 100%;
    background-color: goldenrod;
}

.track-history-item-left svg {
    background-color: goldenrod;
    color: whitesmoke;
    border-radius: 50%;
    padding: 5px;
    height: 30px;
    width: 30px;
}

.track-history-item-right {
    width: 90%;
    padding: 10px;
}

.track-history-title h3 {
    font-size: 17px;
    font-weight: bold;
    text-transform: capitalize;
    color: goldenrod;
    margin-bottom: 10px;
}

.track-history-title h3 span {
    font-size: 15px;
    font-style: italic;
    color: #555454;
    font-weight: normal;
}

.track-history-title p span {
    font-weight: bold;
    color: #555454;
}

.track-history-comment-form {
    display: flex;
    flex-direction: row;
    border-top: 0.6px dotted #ccc;
}

.track-history-comment-form input {
    padding: 10px;
    font-size: 15px;
    height: auto;
    width: 88.4%;
    outline: none;
    border: 1px solid #b6b3b3;
}

.track-history-comment-form button {
    outline: none;
    background-color: #c5c0c0;
    border: 0.5px solid #ccc;
    color: #252525;
    padding: 10px;
    height: auto;
    font-size: 15px;
    cursor: pointer;
}

.track-payment-details {
    border-top: 0.6px dotted #ccc;
    display: none;
    padding: 20px;
}

.track-payment-details h3 {
    font-size: 25px;
    font-weight: normal;
    text-transform: capitalize;
    margin-bottom: 10px;
    color: #555454;
}

.track-payment-sub-title {
    text-transform: uppercase;
    font-size: 20px;
    color: goldenrod !important;
}

.track-payment-order-number-status p span {
    font-weight: bold;
    color: goldenrod;
}

.track-payment-order-button {
    background-color: goldenrod;
    color: #fff;
    border: goldenrod;
    border-radius: 5px;
    padding: 10px;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    width: 100%;
}

.track-documents {
    border-top: 0.6px dotted #ccc;
    display: none;
}

.track-documents::-webkit-scrollbar {
    width: 0px;
}

.confirm-search .ordersCategory {
    margin-right: 7px;
}

.confrim-list {
    border-top: 0.6px dotted #ccc;
    margin-top: 20px;
    padding: 10px;
}

.confirm-item-level {
    font-weight: 600 !important;
    color: #808080 !important;
}

.confirm-item:not(:last-child) {
    border-bottom: 0.6px dotted #ccc;
}

.confirm-item-name {
    text-transform: uppercase;
    font-size: 20px;
    color: goldenrod !important;
}

.confirm-item-actions {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

.confirm-item-heading {
    font-size: 30px;
    font-weight: normal;
    text-transform: capitalize;
    margin-bottom: 10px;
    color: #555454;
}

.confirm-item-heading:first-child {
    margin-top: 10px;
}

.confrim-list p,
.course-list p,
.enrollment-list p {
    display: flex;
    flex-direction: row;
    align-items: center;
}

.confirm-item-actions {
    font-style: italic;
    font-size: 15px;
    font-weight: bold;
    color: #555454;
}

.confirm-item-status span {
    font-weight: bold;
    color: goldenrod;
}

.confirm-pagenation {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-content: center;
    flex-wrap: wrap;
    border-top: 0.6px dotted #ccc;
    padding: 10px 10px 0 10px;
}

.confirm-pagenation ul {
    display: flex;
    flex-direction: row;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.confirm-pagenation ul li {
    padding: 10px;
}

.confirm-pagenation ul li:not(:last-child) {
    border-right: 1px solid #ccc;
}

.track-orders-form div {
    display: flex;
    flex-direction: column;
}

.track-orders-form div label {
    margin-bottom: 10px;
}

.course-list {
    border-top: 0.6px dotted #ccc;
    margin-top: 20px;
}

.payments-order-list {
    margin-top: 20px;
    overflow-x: auto;
}

table {
    width: 100%;
}

thead tr th {
    color: #555454;
    padding: 5px;
    font-size: 16px;
}

tbody tr td {
    padding: 5px;
    font-size: 15px;
    color: #3a3833;
    text-align: center;
}

table button {
    background-color: goldenrod;
    border: goldenrod;
    border-radius: 5px;
    padding: 8px;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    width: 100%;
}

table button a {
    color: whitesmoke;
}

.confirm-item-level span,
.enrollment-list p span {
    margin-left: 5px;
    color: goldenrod;
}

.chat-wapper {
    border-top: 0.6px dotted #ccc;
}

.chat-user-form-title {
    text-align: center;
    padding-top: 10px;
}

.chat-user-form-title h4 {
    font-weight: bold;
    color: #47453e;
    font-size: 30px;
}

.chat-user-form-title hr {
    width: 40px !important;
    height: 5px !important;
    border: none;
    background-color: goldenrod !important;
    border-radius: 5px;
    margin-top: 10px;
    margin-bottom: 10px !important;
}

.chat-user-form {
    padding: 10px 20px;
    border: 0.6px dotted #ccc;
    width: 100%;
}

.form-col {
    display: flex;
    flex-direction: column;
    margin-bottom: 20px;
}

.form-col label {
    margin-bottom: 10px;
    font-size: 15px;
    font-weight: normal;
    color: #555454;
}

.form-col input {
    padding: 10px;
    font-size: 15px;
    height: auto;
    width: 100%;
    outline: none;
    border: 1px solid #b6b3b3;
    border-radius: 5px;
    margin-right: 10px;
}

.form-col select {
    font-size: 15px;
    padding: 5px;
    outline: none;
    border: 1px solid #b6b3b3;
    border-radius: 5px;
    color: #555454;
}

.form-col input:hover {
    box-shadow:0 10px 20px rgba(148, 147, 147, 0.6);
}

.form-button button {
    background-color: goldenrod;
    border: goldenrod;
    color: whitesmoke;
    border-radius: 5px;
    padding: 8px;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    width: 100%;
    margin-bottom: 10px;
}

.chat-live-box {
    display: none;
    border: 0.6px dotted #ccc;
}

.chat-live-box svg:not(.chat-live-box-buttons button svg) {
    color: #555454;
}

.chat-live-box-close,
.chat-live-session-btn {
    text-align: right;
    padding: 10px;
}

.chat-live-box-title-details {
    display: flex;
    flex-direction: row;
    align-items: center;
    flex-wrap: wrap;
    box-shadow:0 10px 20px rgba(148, 147, 147, 0.6);
}

.chat-live-box-user-img {
    width: 15%;
    padding: 10px;
    object-fit: fill;
}

.chat-live-box-user-img img {
    border-radius: 50%;
}

.chat-live-box-user-details {
    height: fit-content;
    width: 85%;
    padding: 10px;
}

.chat-live-box-user-details h5 {
    font-size: 20px;
    font-weight: bold;
    text-transform: capitalize;
    margin-bottom: 5px;
    color: #555454;
}

.chat-live-box-user-details p {
    margin: 0px;
}

.chat-live-box-user-details p span {
    font-weight: bold;
}

.chat-live-box-details {
    background-color: #f3f3f3;
    width: 100%;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
}

.chat-live-box-left-details {
    width: 60%;
}

.chat-live-box-left-items {
    width: 100%;
    height: 300px;
    overflow-y: auto;
}

.chat-live-box-left-items::-webkit-scrollbar,
.chat-live-box-right-details::-webkit-scrollbar {
    width: 0px;
}

.chat-live-box-right-details {
    width: 40%;
    height: 343px;
    border-left: 0.6px dotted #ccc;
    overflow-y: auto;
}

.chat-live-box-receiver {
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 10px 10px 20px 0px;
}

.chat-live-box-receiver-img {
    width: 15%;
    padding: 20px;
    object-fit: fill;
}

.chat-live-box-receiver-img img {
    border-radius: 50%;
}

.chat-live-box-receiver-message-details {
    width: 70%;
    background: #FDFEFE;
    padding: 5px;
    border-radius: 5px;
    box-shadow:0 10px 25px rgba(148, 147, 147, 0.6);
}

.chat-live-box-receiver-message-details .chat-message {
    display: flex;
    flex-direction: row;
    justify-content: start;
    align-items: center;
}

.chat-live-box-receiver-message-details p {
    margin: 0px;
    letter-spacing: 0.6px !important;
    display: flex;
    flex-direction: row;
    justify-content: end;
    align-items: center;
    flex-wrap: wrap;
}

.chat-live-box-receiver-message-details p span {
    margin-right: 20px;
    font-weight: bold;
}

.chat-live-box-sender {
    display: flex;
    justify-content: end;
    padding: 20px;
}

.chat-live-box-left-completion {
    height: 300px;
    width: 100%;
    overflow-y: auto;
    display: none;
}

.chat-live-box-left-completion::-webkit-scrollbar {
    width: 0px;
}

.chat-live-box-left-completion .chat-live-box-receiver {
    align-items: normal;
}

.chat-live-box-left-completion .chat-live-box-receiver-message-details p {
    justify-content: start;
}

.chat-live-box-left-completion a {
    color: goldenrod;
    font-weight: bold;
    margin-bottom: 10px;
}

.chat-live-box-rating {
    display: none;
}

.chat-live-box-left-completion .chat-live-box-receiver-buttons {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    flex-wrap: wrap;
    padding: 10px;
}

.chat-live-box-buttons {
    width: 100%;
    background: #FDFEFE;
}

.chat-live-box-form-buttons {
    width: 100%;
    display: flex;
    flex-direction: row;
}

.chat-live-box-buttons .form-inputs {
    width: 90%;
    display: flex;
    flex-direction: row;
}

.chat-live-box-form-buttons input {
    padding: 10px;
    font-size: 15px;
    height: auto;
    width: 70%;
    outline: none;
    border: 1px solid #b6b3b3;
}

.chat-live-box-form-buttons button {
    background-color: goldenrod;
    border: goldenrod;
    color: whitesmoke;
    padding: 8px;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    width: 30%;
    height: 100%;
}

.chat-live-box-form-buttons button svg {
    rotate: 45deg;
}

.form-attachments {
    width: 10%;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

.form-attachments svg {
    margin: 5px;
}

.attchmentBtn {
    display: none;
}

.chat-live-session-btn {
    display: none;
}

.chat-live-box-documents-list {
    border-top: 0.6px dotted #ccc;
}

.chat-live-box-documents-item {
    display: flex;
    flex-direction: row;
}

.chat-live-box-documents-item h6 {
    font-size: 16px;
    margin-top: 5px;
}

.chat-live-box-documents-item p {
    font-size: 13px !important;
}

.chat-live-box-documents-img {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 13%;
}

.chat-live-box-documents-img svg {
    height: 40px;
    width: 40px;
}

.chat-live-box-documents-img .line-down {
    background-color: #555454;
}

.chat-live-box-documents-details {
    width: 87%;
    padding: 5px;
}

.chat-live-box-documents-desc p {
    letter-spacing: 0.5px !important;
    margin: 0px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    flex-wrap: wrap;
}

.chat-live-box-documents-desc p span {
    font-weight: bold;
    font-style: italic;
}

.profile-wrapper-basic-info {
    height: fit-content;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    padding-top: 10px;
    border-top: 0.6px dotted #ccc;
}

.profile-wrapper-actions {
    padding: 0px 0px 20px 0px;
}

.profile-wrapper-actions button {
    background-color: goldenrod;
    border: goldenrod;
    color: whitesmoke;
    padding: 8px;
    font-size: 15px;
    font-weight: 500;
    border-radius: 5px;
    cursor: pointer;
    width: auto;
    height: fit-content;
}

.profile-wrapper-user-img {
    width: 18%;
    height: 150px;
    object-fit: contain;
}

.profile-wrapper-user-img img {
    width: 100%;
    height: 100%;
    border-radius: 5px;
}

.profile-wrapper-user-info {
    width: 82%;
    padding-left: 20px;
}

.profile-wrapper-section-title {
    font-size: 20px !important;
    font-weight: bold !important;
    margin-bottom: 10px !important;
}

.profile-wrapper-basic-info h6 {
    font-size: 16px;
    margin-bottom: 10px;
}

.profile-wrapper-basic-info p {
    margin: 0px;
}

.profile-wrapper-user-options {
    overflow: hidden;
    overflow-x: auto;
}

.profile-wrapper-user-options::-webkit-scrollbar {
    width: 0px;
}

.profile-wrapper-user-options .track-sub-title-links {
    flex-wrap: nowrap;
    margin-top: 10px;
    padding: 10px 0px 0px 0px;
    width: 100%;
}

.profile-wrapper-user-options .track-sub-title-links .track-sub-title-item {
    width: 25%;
    text-align: center;
    overflow-x: unset;
}

.profile-wrapper-user-options .track-sub-title-links .track-sub-title-item a {
    font-size: 13px;
}

.profile-wrapper-user-profiles,
.profile-wrapper-user-account-info,
.profile-wrapper-user-payments {
    display: none;
    width: 100%;
}

.profile-wrapper-user-addtional-info,
.profile-wrapper-user-profiles,
.profile-wrapper-user-account-info,
.profile-wrapper-user-payments {
    width: 100%;
    padding-top: 10px;
    border-top: 0.6px dotted #ccc;
}

.profile-wrapper-user-addtional-info-title {
    font-size: 20px !important;
    font-weight: bold !important;
    margin-bottom: 0px !important;
}

.profile-wrapper-user-addtional-info-sub-title {
    font-weight: bold !important;
}

.profile-wrapper-user-addtional-info ul li {
    margin-bottom: 10px;
    color: #555454;
}

.profile-wrapper-user-profiles-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    text-align: center;
}

.profile-wrapper-user-profiles .profile-wrapper-user-addtional-info-title,
.profile-wrapper-user-profiles p {
    text-align: center;
}

.profile-wrapper-user-profiles-items {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 20px;
}

.profile-wrapper-user-profiles-img {
    width: 100%;
    height: fit-content;
}

.profile-wrapper-user-profiles-img img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
}

.profile-wrapper-user-profiles-details p {
    margin-bottom: 0px;
}

.profile-wrapper-user-profiles-buttons a {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    background-color: transparent;
    border: none;
    color: #555454;
    padding: 8px;
    font-size: 15px;
    font-weight: 600;
    border-radius: 5px;
    cursor: pointer;
    width: 100%;
    height: fit-content;
}

.profile-wrapper-user-profiles-buttons button svg {
    width: 20px;
    height: 20px;
    margin-right: 5px;
}

.profile-wrapper-user-account-sides {
    display: flex;
    flex-direction: row;
}

.profile-wrapper-user-account-info-left,
.profile-wrapper-user-account-info-right {
    width: 50%;
}

.profile-wrapper-user-account-info-left p {
    line-height: 20px;
    letter-spacing: 1px;
    display: flex;
    flex-direction: row;
}

.profile-wrapper-user-account-info-left p .password-hidden {
    margin-right: 5px;
    font-size: 16px;
    font-weight: bold;
    font-style: normal;
}

.profile-wrapper-user-account-info-left .profile-wrapper-user-addtional-info-sub-title:not(:first-child) {
    margin-top: 20px;
}

.profile-wrapper-user-account-info-left p .password-hidden {
    margin-left: 0px;
}

.profile-wrapper-user-account-info-left span {
    font-style: italic;
    margin-left: 5px;
}

.profile-wrapper-user-account-info-progress-bar {
    background-color: transparent;
    border: 1px solid goldenrod;
    height: 12px;
    border-radius: 5px;
    text-align: center;
}

.profile-wrapper-user-account-info-progress-bar p {
    background-color: goldenrod;
    width: 50%;
    height: 100%;
    margin-bottom: 0px;
    font-weight: bold;
}

.profile-wrapper-user-account-info-right button {
    background-color: transparent;
    border: none;
    color: #555454;
    font-size: 15px;
    font-weight: 600;
    border-radius: 5px;
    cursor: pointer;
    width: fit-content;
    height: fit-content;
}

.profile-wrapper-user-payments-sides {
    display: flex;
    flex-direction: row;
}

.profile-wrapper-user-payments-left,
.profile-wrapper-user-payments-right {
    width: 50%;
}

.profile-wrapper-user-payments-left .profile-wrapper-user-addtional-info-sub-title {
    font-size: 17px;
    margin: 0px;
}

.profile-wrapper-user-payments-left .profile-wrapper-user-addtional-info-sub-title:not(:first-child) {
    margin-top: 20px;
}

.profile-wrapper-user-payments-left button {
    background-color: transparent;
    border: none;
    color: #555454;
    font-size: 14px;
    font-weight: 600;
    border-radius: 5px;
    cursor: pointer;
    width: fit-content;
    height: fit-content;
}

.profile-wrapper-user-payments-methods-list {
    width: 100%;
    height: 420px;
    display: block;
}

.profile-wrapper-user-payments-methods-actions {
    text-align: right;
}

.profile-wrapper-user-payments-methods-actions button {
    background-color: goldenrod;
    border: goldenrod;
    color: whitesmoke;
    padding: 8px;
    font-size: 13px;
    font-weight: 500;
    border-radius: 5px;
    cursor: pointer;
    width: auto;
    height: fit-content;
    display: none;
}

.profile-wrapper-user-payments-method-list-items {
    height: 400px;
    overflow-y: auto;
}

.profile-wrapper-user-payments-method-list-items::-webkit-scrollbar {
    width: 0px;
}

.profile-wrapper-user-payments-method-list-item {
    padding: 5px;
    margin: 10px;
}

.profile-wrapper-user-payments-methods-list-item-actions a {
    color: goldenrod;
    font-weight: bold;
}

.profile-wrapper-user-payments-method-list-item:not(:last-child) {
    border-bottom: 0.6px dotted #ccc;
}

.profile-wrapper-user-payments-methods-list-item-desc .profile-wrapper-user-addtional-info-sub-title {
    margin: 0px;
}

.profile-wrapper-user-payments-methods-list-item-actions {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    flex-wrap: wrap;
}

.profile-wrapper-user-payments-info-list {
    padding-left: 20px;
    height: 420px;
    overflow-y: auto;
    display: none;
}

.profile-wrapper-user-payments-info-list::-webkit-scrollbar {
    width: 0px;
}

.payment-info-item {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
}

.payment-info-item:not(:first-child) {
    margin-top: 10px
}

.payment-info-item:not(:last-child) {
    border-bottom: 0.6px dotted #ccc;
}

.payment-info-item-left {
    width: 60%;
}

.payment-info-item-right {
    width: 40%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.payment-info-item-right button {
    background-color: goldenrod;
    border: goldenrod;
    color: whitesmoke;
    padding: 8px;
    font-size: 13px;
    font-weight: 500;
    border-radius: 5px;
    cursor: pointer;
    width: auto;
    height: fit-content;
}

.profile-wrapper-user-payments-subscriptions-list {
    display: none;
    padding: 10px;
}

.profile-wrapper-user-payments-subscriptions-membership {
    padding-bottom: 10px;
    display: flex;
    flex-direction: row;
}

.profile-wrapper-user-payments-subscriptions-membership-left {
    width: 20%;
    text-align: center;
}

.profile-wrapper-user-payments-subscriptions-membership-left svg {
    width: 60px;
    height: 60px;
    color: #555454;
}

.profile-wrapper-user-payments-subscriptions-membership-right {
    width: 80%;
}

.profile-wrapper-user-payments-subscriptions-membership-right p {
    margin: 0px;
}

.profile-wrapper-user-payments-subscriptions-membership-right p:nth-child(2) {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.profile-wrapper-user-payments-subscriptions-search-buttons {
    display: flex;
    justify-content: end;
    border-top: 0.6px dotted #ccc;
}

.profile-wrapper-user-payments-subscriptions-search-form {
    display: flex;
    justify-content: end;
    padding-top: 20px;
    padding-bottom: 20px;
    width: 100%;
}

.profile-wrapper-user-payments-subscriptions-search-form input {
    padding: 7px;
    font-size: 15px;
    height: auto;
    width: fit-content;
    outline: none;
    border: 1px solid #b6b3b3;
    border-radius: 5px;
}

.plan-title {
    font-style: italic;
}

.profile-wrapper-user-payments-subscriptions-list-items {
    border-top: 0.6px dotted #ccc;
    width: 100%;
    height: 280px;
    padding: 10px;
    overflow-y: auto;
}

.profile-wrapper-user-payments-subscriptions-list-items::-webkit-scrollbar {
    width: 0px;
}

.profile-wrapper-user-payments-subscriptions-list-item:not(:first-child) {
    padding-top: 10px;
}

.profile-wrapper-user-payments-subscriptions-list-item:not(:last-child) {
    padding-bottom: 10px;
    border-bottom: 0.6px dotted #ccc;
}

.profile-wrapper-user-payments-subscriptions-list-item-right p {
    margin: 0px;
}

.profile-wrapper-user-payments-subscriptions-list-item-icons {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    flex-wrap: wrap;
    width: 100%;
    margin-top: 5px;
}

.profile-wrapper-user-payments-subscriptions-list-item-icons p {
    display: flex;
    justify-content: center;
}

.profile-wrapper-user-payments-subscriptions-list-item-icons p svg {
    margin-right: 5px;
}

.profile-wrapper-user-payments-subscriptions-list-item-icons p span {
    font-weight: bold;
    margin-left: 5px;
}

.profile-image-details-box {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    margin-top: 30px;
    border-bottom: 0.6px dotted #ccc;
}

.profile-image-details-box-left {
    width: 20%;
    object-fit: contain;
    padding: 0px 25px 25px 25px;
}

.profile-image-details-box-left img {
    width: 100%;
    height: fit-content;
    border-radius: 100%;
}

.profile-image-details-box-right {
    width: 80%;
}

.profile-image-details-box-right p {
    margin-bottom: 5px;
    display: flex;
    flex-direction: row;
    align-items: center;
}

.profile-image-details-box-right p span {
    width: fit-content;
    border: 1px solid goldenrod;
    background-color: goldenrod;
    color: #fff;
    font-weight: bold;
    line-height: 10px;
    padding: 8px;
    height: fit-content;
    border-radius: 5px;
    margin: 10px;
}

.profile-notifications-activity-box {
    background-color: #f3f3f3;
    height: 500px;
    display: flex;
    flex-direction: row;
}

.profile-notifications-box {
    width: 60%;
    border-right: 0.6px dotted #ccc;
}

.profile-activity-box {
    width: 40%;
}

.profile-activities-btn,
.profile-notifications-btn {
    padding: 10px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.profile-notifications-btn svg,
.profile-activities-btn svg {
    display: none;
    color: #6b5454;
}

.subscription-title {
    margin: 0px !important;
    padding: 0px !important;
}

.profile-notifications-list {
    padding: 20px;
    height: 450px;
    overflow-x: auto;
    border-top: 0.6px dotted #ccc;
}

.profile-notifications-list::-webkit-scrollbar {
    width: 0px;
}

.profile-notifications-email-list,
.profile-notifications-phone-list,
.profile-notifications-data-sharing-list,
.profile-notifications-account-delete {
    width: 100%;
    background: #FDFEFE;
    color: #555454;
    border-radius: 5px;
    box-shadow:0 10px 25px rgba(148, 147, 147, 0.6);
}

.profile-notifications-email-list,
.profile-notifications-phone-list,
.profile-notifications-data-sharing-list {
    margin-bottom: 20px;
}

.profile-notifications-email-list-title {
    border-bottom: 0.6px solid #ccc;
    padding: 10px;
}

.profile-notifications-email-list-title h6 {
    font-size: 18px;
}

.profile-notifications-email-input h6 {
    font-size: 16px;
    font-weight: normal;
    margin-top: 10px;
    margin-bottom: 10px;
}

.profile-notifications-email-input {
    padding: 10px;
}

.profile-notifications-email-input input {
    padding: 10px;
    font-size: 15px;
    height: auto;
    width: 100%;
    outline: none;
    border: 1px solid #b6b3b3;
    background: #f0efef;
    border-radius: 5px;
    cursor: not-allowed;
}

.profile-notifications-email-item label {
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 10px;
}

.profile-notifications-email-item label input[type="checkbox"] {
    display: none;
}

.profile-notifications-email-item label span {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 2px solid #ccc;
    border-radius: 4px;
    margin-right: 10px;
    position: relative;
}

.profile-notifications-email-item label input[type="checkbox"]:checked + span::after {
    content: "";
    width: 10px;
    height: 10px;
    background-color: #007bff;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 2px;
}

.profile-notifications-data-sharing-list p,
.profile-notifications-account-delete p {
    margin: 10px;
}

.profile-notifications-account-delete button {
    border: 1px solid red;
    background-color: rgb(248, 167, 167);
    color: red;
    width: fit-content;
    height: fit-content;
    font-size: 15px;
    padding: 10px;
    border-radius: 5px;
    margin: 0px 10px 10px 10px;
}

.profile-acttivties-list-items {
    height: 450px;
    overflow-x: auto;
    border-top: 0.6px dotted #ccc;
}

.profile-acttivties-list-items::-webkit-scrollbar {
    width: 0px;
}

.profile-acttivties-list-item-title {
    padding: 10px;
    color: #555454;
    border: 0.6px dotted #ccc;
}

.profile-acttivties-list-item-title h6 {
    font-size: 18px;
    font-weight: bold;
}

.customer-list-table,
.order-list-table,
.products-list-table,
.products-category-list-table,
.inventory-list-table,
.inventory-supplier-list-table,
.return-list-table,
.purchases-list-table,
.store-list-table,
.payments-courses-list {
    padding-top: 20px;
}

.home-wigdet-others-table {
    width: 100%;
    overflow-y: auto;
}

.home-wigdet-others-table::-webkit-scrollbar {
    width: 0px;
}

.home-wigdet-others-table table {
    border-collapse: collapse;
    border-radius: 8px;
    overflow: hidden;
}

.table-title {
    font-weight: bold !important;
    text-transform: capitalize !important;
}

.home-wigdet-others-table p {
    margin: 0px;
}

.home-wigdet-others-table thead tr th {
    text-align: left;
    padding: 10px;
    border: 1px solid #ccc;
    background-color: #c5c0c0;
    color: #fff;
}

.home-wigdet-others-table tr p span {
    font-style: italic;
    text-transform: capitalize;
}

.home-wigdet-others-table td {
    text-align: left;
    padding: 10px;
    border: 1px solid #ccc;
}

.home-wigdet-others-table tr:nth-child(even) {
    background-color: #f3f3f3;
}

.order-algin {
    text-align: center !important;
}

.customer-pagenation {
    border: none;
}

.product-search,
.product-category-search,
.inventory-search,
.inventory-supplier-search,
.purchases-search {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    flex-wrap: wrap-reverse;
}

.product-search button:nth-child(1),
.product-category-search button:nth-child(1),
.inventory-search button:nth-child(1),
.inventory-supplier-search button:nth-child(1),
.purchases-search button:nth-child(1) {
    background-color: goldenrod;
    border: goldenrod;
    color: whitesmoke;
    padding: 8px;
    font-size: 13px;
    font-weight: 500;
    border-radius: 5px;
    cursor: pointer;
    width: auto;
    height: fit-content;
}

.return-table-list p span {
    font-weight: bold !important;
}

.store-manage-heading {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    flex-wrap: wrap;
}

.store-manage-details-top {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
}

.store-manage-image {
    width: 30%;
    padding: 10px 20px 10px 10px;
    object-fit: contain;
}

.store-manage-image img {
    border-radius: 5px;
}

.store-manage-info {
    width: 70%;
}

.storage-manage-details-bottom {
    margin-top: 20px;
}

.store-manage-products {
    display: none;
    margin-top: 20px;
}

.store-manage-additional-info {
    margin-top: 20px;
}

.list-heading {
    display: flex;
    flex-direction: row;
    align-items: center;
}

.list-heading p {
    line-height: normal;
}

.store-manage-reviews {
    display: none;
    flex-direction: row;
    background-color: #f3f3f3;
    margin-top: 20px;
}

.store-manage-review-headings {
    padding: 10px 10px 0px 10px; 
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    border-bottom: 0.6px dotted #ccc;
}

.store-manage-review-headings span {
    font-size: 13px;
    font-weight: normal;
}

.store-manage-review-headings svg {
    height: 20px;
    width: 20px;
    color: #555454;
}

.store-manage-review-products-comments,
.store-manage-review-store-comments {
    display: none;
}

.store-manage-review-left {
    width: 60%;
    border-right: 0.6px dotted #ccc;
}

.store-manage-review-list {
    height: 400px;
    overflow-x: auto;
}

.store-manage-review-list::-webkit-scrollbar {
    width: 0px;
}

.store-manage-review-item {
    padding: 10px;
}

.store-manage-review-item:not(:last-child) {
    border-bottom: 0.6px dotted #ccc;
}

.review-item-heading {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.store-manage-review-item p {
    margin-bottom: 5px;
}

.store-manage-review-item p span {
    color: goldenrod;
}

.review-items-options {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
}

.review-items-options p,
.review-items-options a {
    display: flex;
    flex-direction: row;
    align-items: center;
}

.review-items-options a {
    height: fit-content;
    color: #555454;
}

.store-manage-review-buttons {
    width: 100%;
}

.store-manage-review-form-buttons {
    display: flex;
    flex-direction: row;
}

.store-manage-review-form-buttons .form-inputs {
    width: 85%;
    display: flex;
    flex-direction: row;
}

.store-manage-review-form-buttons .form-inputs input {
    padding: 7px;
    font-size: 15px;
    height: 35px;
    width: 85%;
    outline: none;
    border: 1px solid #b6b3b3;
    margin: 0px;
    color: #555454;
}

.store-manage-review-form-buttons .form-inputs button {
    width: 15%;
    height: 35px;
    background-color: goldenrod;
    border: goldenrod;
    color: whitesmoke;
}

.store-manage-review-form-buttons .form-inputs button svg {
    height: 19px;
    width: 19px;
}

.store-manage-review-form-buttons .form-attachments {
    width: 15%;
    background-color: white;
    border-bottom: 1px solid #ccc;
}

.store-manage-review-form-buttons .form-attachments svg {
    height: 19px;
    width: 19px;
    color: #555454;
}

.store-manage-review-right {
    width: 40%;
}

.store-manage-search-product {
    padding: 10px;
}

.searchProducts {
    padding: 7px;
    font-size: 14px;
    height: 30px;
    width: 100%;
    outline: none;
    border: 1px solid #b6b3b3;
    border-radius: 5px;
    color: #555454;
    font-size: 15px;
}

.store-manage-review-right .store-manage-review-list {
    height: 352px;
}

/* footer */
footer {
    background: #252525;
    color: #f3f3f3;
    padding: 30px;
}

.footer-container {
    display: flex;
    flex-direction: row;
}

footer h2 {
    padding: 10px 0;
    line-height: 1.3;
    font-size: 1rem;
    font-weight: bold;
}

.title-contact {
    color: #f3f3f3;
    font-size: 1rem;
    font-weight: bold;
    margin-top: 20px;
}

.footer-left,
.footer-left-one, 
.footer-right,
.footer-right-one {
    width: 25%;
    margin: 0 20px;
}

footer p {
    color: #808080;
    font-weight: 300;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.footer-left p {
    margin-bottom: 10px !important;
    font-size: 0.9rem;
}

.contact-details {
    margin-bottom: 20px;
}

.contact-details p {
    display: flex;
    flex-direction: row;
    align-items: center;
}

.contact-details p svg {
    width: 20px;
    height: 20px;
    margin-right: 10px;
    color:  #fff;
}

footer .copyright {
    margin-bottom: 0;
}

footer &gt; p {
    text-align: center;
    opacity: 0.8;
    margin-top: 20px;
}

footer ul li, footer ul li a {
    margin-bottom: 15px;
    color: #808080;
    list-style: none;
    font-weight: 300;
}

footer ul li a:hover {
    text-decoration: underline;
}

.social-icon,
.payment-methods {
    margin-bottom: 20px;
}

.footer-left .social-icon {
    display: flex;
    flex-direction: row;
    align-content: center;
    flex-wrap: wrap;
}

.social-icon span a {
    display: flex;
    flex-direction: row;
    align-items: center;
}

.footer-left svg {
    width: 15px;
    height: 15px;
}

.footer-left span {
    background-color: #555454;
    width: 30px;
    height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    align-content: center;
    border-radius: 50%;
    margin-right: 10px;
}

.footer-left span a {
    color: #eee;
}

.footer-left-one ul li {
    text-transform: uppercase;
    font-size: 14px;
}

.footer-right i {
    font-size: 1rem;
    color: #808080;
}

.footer-right input {
    font-size: 18px;
    border: none;
    background: transparent;
    outline: none;
    color: #808080;
    padding-right: 10px;
    width: 100%;
}

.footer-right div{
    display: flex;
    align-items: center;
    justify-content: start;
    width: 200px;
    padding: 10px 0;
    border-bottom: 1.6px solid #808080;
    margin-bottom: 20px;
}

.footer-right-one ul {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    width: 100%;
}

.footer-right-one ul li {
    list-style: none;
    font-weight: 300;
}

.footer-right-one ul img {
    border-radius: 3px;
    width: 100px;
    height: 100px;
}

/* popups modules */
.member-services-popup,
.delivery-options-popup,
.parcel-popup,
.success-popup,
.contact-us-popup,
.search-popup,
.orders-all-view-popup,
.edit-details-popup,
.storage-popup ,
.add-products-popup,
.add-product-category-popup,
.add-inventory-item-popup,
.add-supplier-popup,
.add-purchase-popup  {
    position: fixed;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.3);
    z-index: 9999;
    transition: 0.3s;
    transform: scale(1);
    display: none;
    justify-content: center;
    align-content: center;
    align-items: center;
}

.member-services-content,
.contact-us-content,
.search-content,
.storage-content {
    position: relative;
    height: 500px;
    width: 700px;
    overflow: hidden;
    overflow-y: auto;
    background: #fff;
    padding: 20px;
    border-radius: 5px;
    color: #555454;
}

.member-services-content::-webkit-scrollbar,
.storage-content::-webkit-scrollbar {
    width: 0px;
}

.member-close svg,
.delivery-close svg,
.contact-us-close svg,
.search-close svg,
.order-all-view-close svg,
.edit-details-close svg,
.storage-close svg,
.add-products-close svg,
.add-inventory-item-close svg,
.add-supplier-close svg,
.add-purchase-close svg {
    position: absolute;
    top: 0;
    right: 0;
    margin: 10px;
    cursor: pointer;
}

.member-title,
.delivery-title,
.contact-us-title,
.search-title,
.add-products-title,
.add-inventory-item-title,
.add-supplier-title,
.add-purchase-title {
    text-align: center;
    padding: 20px;
}

.member-title h2,
.delivery-title h2,
.contact-us-title h5,
.search-title h6,
.add-products-title h2,
.add-inventory-item-title h2,
.add-supplier-title h2,
.add-purchase-title h2 {
    font-weight: bold;
    color: #47453e;
    font-size: 30px;
    margin-bottom: 10px;
}

.member-title h2 span,
.delivery-title h2 span,
.add-products-title h2 span {
    text-transform: capitalize;
    color: goldenrod;
}

.member-title hr,
.delivery-title hr,
.contact-us-title hr,
.search-title hr,
.add-products-title hr,
.add-inventory-item-title hr,
.add-supplier-title hr,
.add-purchase-title hr {
    margin-block-end: 0px;
    margin-block-start: 0px;
    width: 70px;
    height: 5px;
    border: none;
    background-color: goldenrod;
    border-radius: 5px;
}

.member-middle {
    height: auto;
    overflow-x: hidden;
}

.member-middle p {
    color: #555454;
    font-size: 16px;
}

.member-service-list ul li {
    margin-bottom: 20px;
}

.member-service-list ul li a {
    font-weight: 550;
    font-size: 16px;
    color: #47453e;
}

.member-service-list ul li p {
    margin-top: 8px;
}

.member-service-delivery h2,
.member-service-list h2 {
    font-weight: bold;
    color: #47453e;
    font-size: 20px;
    margin-bottom: 20px;
}

.member-service-delivery div {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 10px;
}

.member-service-delivery div label {
    font-weight: bold;
    font-size: 16px;
    color: #47453e;
    margin-left: 7px;
}

.member-service-delivery p:not(:last-child) {
    margin-bottom: 20px;
}

.member-service-delivery p span,
.member-service-list ul li p span {
    color: goldenrod;
    cursor: pointer;
}

.member-service-delivery p a,
.member-service-list ul li p a {
    color: blue;
    font-weight: normal;
    cursor: pointer;
}

/* storage popup */
.storage-content {
    color: #555454;
}

.search-content::-webkit-scrollbar {
    width: 0px;
}

.storage-current-plan {
    padding-bottom: 10px;
    margin-bottom: 20px;
    border-bottom: 0.6px dotted #ccc;
}

.storage-current-plan p {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 10px;
}

.storage-current-plan p span:nth-child(1) {
    font-weight: bold;
}

.storage-current-plan p:nth-child(3) {
    font-style: italic;
}

.storage-list {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    padding: 0 40px 0 40px;
}

.storage-content h6 {
    font-size: 18px;
    font-weight: normal;
}

.storage-item {
    width: 250px;
    height: auto;
    border: 0.6px solid #ccc;
    border-radius: 5px;
    text-align: start;
    margin: 20px;
}

.storage-item-title {
    background-color: goldenrod;
    padding: 20px;
}

.storage-item-title h1 {
    font-weight: bold;
    color: #fff;
    font-size: 25px;
    text-transform: capitalize;
    margin-bottom: 10px;
}

.storage-item-title hr {
    width: 100%;
    height: 2px;
    border: none;
    background-color: #fff;
    border-radius: 5px;
    margin-inline-start: 0;
    margin-inline-end: 0;
    margin-bottom: 18px;
}

.storage-item-desc {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    text-align: left;
}

.storage-amount {
    font-size: 20px;
    letter-spacing: 1px;
    font-weight: normal;
    color: #fff;
    margin-bottom: 10px;
}

.storage-amount span {
    font-size: 40px;
    font-weight: 600;
}

.small-desc {
    font-size: 17px;
    letter-spacing: 1px;
    font-weight: normal;
    color: #fff;
    margin-bottom: 10px;
}

.storage-item-body {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 10px;
}

.storage-item-features ul li {
    padding: 10px;
}

.storage-item-features ul li p {
    display: flex;
    align-items: center;
    letter-spacing: 1px;
    font-weight: bold;
    color: #555454;
    font-size: 16px;
}

.storage-item-features ul li p svg {
    width: 30px;
    height: 30px;
    margin-right: 10px;
}

.storage-item-buttons {
    display: flex;
    align-content: center;
    justify-content: center;
    margin: 20px;
}

.storage-item-buttons button {
    background-color: #2f2f2f;
    border: none;
    padding: 15px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    color: #eee;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 10px 20px #2f2f2f77;
}

.storage-item-buttons span {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #eee;
}

.storage-item-buttons button svg {
    width: 30px;
    height: 30px;
    margin-right: 10px;
}

/* edit user details module */
.edit-details-content {
    position: relative;
    height: 500px;
    width: 400px;
    overflow: hidden;
    overflow-y: auto;
    background: #fff;
    padding: 10px;
    border-radius: 5px;
    color: #555454;
}

.edit-details-content::-webkit-scrollbar {
    width: 0px;
}

.edit-details-content p {
    margin-top: 10px;
}

.edit-details-form {
    border: 0.6px solid #ccc;
    width: 100%;
    padding: 10px;
}

.edit-details-form .edit-details-content-title {
    font-size: 15px;
    margin-bottom: 20px;
    color: #555454;
}

.edit-details-form .edit-details-content-title:not(:first-child) {
    margin-top: 30px;
    border-top: 0.6px dotted #ccc;
    padding-top: 10px;
}

.form-row {
    display: flex;
    flex-direction: row;
    margin-bottom: 15px;
}

.form-row div:nth-child(1) {
    width: 30%;
    height: fit-content;
}

.form-row div:nth-child(2) {
    width: 70%;
}

.form-row label {
    margin-bottom: 10px;
    font-size: 15px;
    font-weight: normal;
    color: #555454;
}

.form-row input {
    padding: 5px;
    font-size: 15px;
    height: auto;
    width: 100%;
    outline: none;
    border: 1px solid #b6b3b3;
    border-radius: 5px;
}

.form-row select {
    font-size: 15px;
    padding: 5px;
    outline: none;
    border: 1px solid #b6b3b3;
    border-radius: 5px;
    color: #555454;
    width: 100%;
}

.form-col textarea {
    font-size: 15px;
    padding: 5px;
    outline: none;
    border: 1px solid #b6b3b3;
    border-radius: 5px;
    color: #555454;
    width: 100%;
    height: 200px;
    resize: none;
}

.edit-details-form button {
    background-color: goldenrod;
    border: goldenrod;
    color: whitesmoke;
    padding: 8px;
    font-size: 15px;
    font-weight: 500;
    border-radius: 5px;
    cursor: pointer;
    width: 100%;
    height: auto;
}

/* delivery option module */
.delivery-options-content {
    position: relative;
    height: auto;
    width: 700px;
    background: #fff;
    padding: 20px;
    border-radius: 5px;
    color: #555454;
}

/* parcel module */
.parcel-popup-content {
    position: relative;
    height: auto;
    width: 600px;
    background: #fff;
    padding: 20px;
    border-radius: 5px;
    color: #555454;
}

.member-title p {
    margin-top: 20px;
}

.parcel-popup-content span {
    color: red;
}

.parcel-form {
    margin-bottom: 10px;
    padding: 10px;
    border: 1px solid lightgrey;
    border-radius: 10px;
    width: 100%;
    overflow-x: auto;
}

.parcel-form::-webkit-scrollbar,
.contact-us-content::-webkit-scrollbar {
    width: 0;
}

.parcel-form .form-col {
    width: 100%;
    margin-bottom: 20px;
}

.parcel-form .form-group {
    display: flex;
    flex-direction: column;
}

.parcel-form .form-row {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.parcel-form .form-row .form-group {
    width: 48%;
}

.parcel-form .form-group label {
    font-size: 16px;
    color: #47453e;
    margin-bottom: 10px;
}

.parcel-form .form-group label span {
    color: red;
}

.parcel-form .form-group input {
    padding: 5px;
    padding-left: 6px;
    padding-right: 6px;
    color: #555454;
    border: 1px solid lightgray;
    border-radius: 10px;
    font-size: 16px;
    outline: none;
}

.parcel-form .form-col textarea {
    resize: none;
    width: 100%;
    height: 60px;
    padding: 10px;
    font-size: 16px;
    border: 1px solid lightgray;
    border-radius: 10px;
    outline: none;
}

.parcel-form .form-col select {
    padding: 5px;
    padding-left: 6px;
    padding-right: 6px;
    border: 1px solid lightgray;
    border-radius: 10px;
    font-size: 16px;
    outline: none;
}

.parcel-form button {
    border: #3e8e41;
    background-color: #3e8e41;
    color: #fff;
    border-radius: 10px;
    font-size: 16px;
    padding: 13px;
    width: 100%;
}

/* success popup */
.success-popup-content {
    position: relative;
    height: auto;
    width: 700px;
    background: #fff;
    padding: 20px;
    border-radius: 5px;
    color: #555454;
}

/* edit user details module */
.edit-details-content {
    position: relative;
    height: 500px;
    width: 400px;
    overflow: hidden;
    overflow-y: auto;
    background: #fff;
    padding: 10px;
    border-radius: 5px;
    color: #555454;
}

.edit-details-content::-webkit-scrollbar {
    width: 0px;
}

.edit-details-content p {
    margin-top: 10px;
}

.edit-details-form {
    border: 0.6px solid #ccc;
    width: 100%;
    padding: 10px;
}

.edit-details-form .edit-details-content-title {
    font-size: 15px;
    margin-bottom: 20px;
    color: #555454;
}

.edit-details-form .edit-details-content-title:not(:first-child) {
    margin-top: 30px;
    border-top: 0.6px dotted #ccc;
    padding-top: 10px;
}

.form-row {
    display: flex;
    flex-direction: row;
    align-items: center;
    margin-bottom: 15px;
}

.form-row div:nth-child(1) {
    width: 30%;
    height: fit-content;
}

.form-row div:nth-child(2) {
    width: 70%;
}

.form-row label {
    margin-bottom: 10px;
    font-size: 15px;
    font-weight: normal;
    color: #555454;
}

.form-row input {
    padding: 5px;
    font-size: 15px;
    height: auto;
    width: 100%;
    outline: none;
    border: 1px solid #b6b3b3;
    border-radius: 5px;
}

.form-row select {
    font-size: 15px;
    padding: 5px;
    outline: none;
    border: 1px solid #b6b3b3;
    border-radius: 5px;
    color: #555454;
    width: 100%;
}

.form-col textarea {
    font-size: 15px;
    padding: 5px;
    outline: none;
    border: 1px solid #b6b3b3;
    border-radius: 5px;
    color: #555454;
    width: 100%;
    height: 200px;
    resize: none;
}

.edit-details-form button {
    background-color: goldenrod;
    border: goldenrod;
    color: whitesmoke;
    padding: 8px;
    font-size: 15px;
    font-weight: 500;
    border-radius: 5px;
    cursor: pointer;
    width: 100%;
    height: auto;
}

/* contact us popup */
.contact-us-form-content {
    color: #555454;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
}

.contact-us-form-left,
.contact-us-form-right {
    width: 50%;
    margin-top: 20px;
}

.contact-us-form-left ul li {
    display: flex;
    flex-direction: row;
    margin: 15px 0 20px 0;
}

.contact-us-form-left ul li .office-svg {
    width: 13%;
}

.contact-us-form-left ul li svg {
    width: 30px;
    height: 30px;
    padding: 5px;
    background: goldenrod;
    color: #fff;
}

.contact-us-form-left ul li .office-details {
    width: 87%;
}

.contact-us-form-left ul li span {
    font-weight: bold;
}

.contact-us-form {
    margin-bottom: 10px;
    padding: 10px;
    border: 1px solid lightgrey;
    border-radius: 10px;
    width: 100%;
    overflow-x: auto;
}

.contact-us-form::-webkit-scrollbar {
    width: 0;
}

.contact-us-form .form-col {
    width: 100%;
    margin-bottom: 20px;
}

.contact-us-form .form-group {
    display: flex;
    flex-direction: column;
}

.contact-us-form .form-row {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.contact-us-form .form-row .form-group {
    width: 48%;
}

.contact-us-form .form-group label {
    font-size: 16px;
    color: #47453e;
    margin-bottom: 10px;
}

.contact-us-form .form-group label span {
    color: red;
}

.contact-us-form .form-group input {
    padding: 5px;
    padding-left: 6px;
    padding-right: 6px;
    color: #555454;
    border: 1px solid lightgray;
    border-radius: 10px;
    font-size: 16px;
    outline: none;
}

.contact-us-form .form-col textarea {
    resize: none;
    width: 100%;
    height: 60px;
    padding: 10px;
    font-size: 16px;
    border: 1px solid lightgray;
    border-radius: 10px;
    outline: none;
}

.contact-us-form button {
    border: #3e8e41;
    background-color: #3e8e41;
    color: #fff;
    border-radius: 10px;
    font-size: 16px;
    padding: 13px;
    width: 100%;
}

/* search popup */
.search-content::-webkit-scrollbar {
    width: 0;
}

.search-form-box .form-col .form-group {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.search-form-box .form-group label {
    font-size: 16px;
    color: #47453e;
    margin-bottom: 10px;
}

.search-form-box .form-group label span {
    color: red;
}

.search-form-box .form-group input {
    padding: 5px;
    padding-left: 6px;
    padding-right: 6px;
    color: #555454;
    width: 60%;
    border: 1px solid lightgray;
    border-radius: 10px;
    font-size: 16px;
    outline: none;
}

.search-results {
    margin: 20px;
    color: #555454;
    height: 260px;
    overflow: auto;
}

.search-results::-webkit-scrollbar {
    width: 0;
}

.search-item {
    padding-bottom: 15px;
    border-bottom: 0.6px dotted #ccc;
}

.search-item:not(:last-child) {
    margin-bottom: 20px;
}

.search-item h6 {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 10px;
}

.search-item p {
    margin-bottom: 10px;
}

.search-item a {
    color: goldenrod;
    cursor: pointer;
}

.search-item a:hover {
    text-decoration: underline;
}

.search-pagenation {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-content: center;
    flex-wrap: wrap;
}

.search-pagenation ul {
    display: flex;
    flex-direction: row;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.search-pagenation ul li {
    padding: 10px;
}

.search-pagenation ul li:not(:last-child) {
    border-right: 1px solid #ccc;
}

/* Add product popup */
.add-products-content,
.add-product-category-content,
.add-inventory-item-content,
.add-supplier-content,
.add-purchase-content {
    position: relative;
    height: auto;
    width: 500px;
    overflow: hidden;
    overflow-y: auto;
    background: #fff;
    padding: 20px;
    border-radius: 5px;
    color: #555454;
}

.add-products-title p,
.member-title p,
.search-title p {
    margin-top: 10px;
    font-size: 14px;
    letter-spacing: 1px;
    line-height: normal;
    font-style: italic;
}

.add-products-form {
    border: 1px solid #ccc;
    border-radius: 5px;
    padding: 10px;
}

.add-products-form textarea {
    height: 100px;
}

.add-products-form button,
.add-inventory-item-form button,
.add-supplier-form button,
.add-purchase-form button {
    background-color: goldenrod;
    border: goldenrod;
    color: whitesmoke;
    padding: 8px;
    font-size: 15px;
    font-weight: 500;
    border-radius: 5px;
    cursor: pointer;
    width: 100%;
    height: auto;
}

/* add inventory popup */
.form-col-row {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.form-col-row .form-col {
    width: 47%;
}

.form-col-row .form-col label {
    margin-bottom: 10px;
}

.add-inventory-item-form {
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

/* add supplier popup */
.add-supplier-box {
    height: 300px;
    overflow-x: auto;
}

.add-supplier-box::-webkit-scrollbar {
    width: 0px;
}

.add-supplier-form {
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.add-supplier-form textarea {
    height: 80px;
}

/* add purcahse popup */
.add-purchase-form {
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.add-purchase-form textarea {
    height: 60px;
}

/* media query */
@media only screen and (max-width: 1320px){
    header {
        padding: 0 50px;
    }

    .logo {
        font-size: 18px;
    }

    .nav-bar ul li {
        margin: 0;
    }
    
    .nav-bar ul li a{
        font-size: 15px;
        margin: 0;
    }

    .profile-wrapper-user-profiles-list {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media only screen and (max-width: 1100px){
    header {
        padding: 0 30px;
    }

    .logo {
        font-size: 10px;
    }

    main {
        padding: 100px 30px 30px 30px;
    }

    .track-documents {
        height: 450px;
        overflow-y: auto;
    }

    .chat-live-box-receiver-img {
        display: none;
    }

    .chat-live-box-receiver {
        padding: 20px;
    }

    .profile-wrapper-user-img {
        width: 25%;
    }

    .profile-wrapper-user-info {
        width: 75%;
    }

    .profile-wrapper-user-payments-subscriptions-membership-left svg {
        height: 40px;
        width: 40px;
    }
    
    .store-manage-image,
    .store-manage-info,
    .store-manage-review-left,
    .store-manage-review-right {
        width: 100%;
    }

    .store-manage-image,
    .store-manage-review-right {
        display: none;
    }
    
    .store-manage-review-products-comments {
        display: block;
    }

    .store-manage-review-right {
        padding: 0px;
    }

    .footer-right-one ul {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media only screen and (max-width: 912px){
    .hamburger {
        display: block;
        cursor: pointer;
    }

    .hamburger svg {
        width: 40px;
        height: 40px;
        color: #11101b;
        margin: 6px 0;
    }

    .logo {
        font-size: 18px;
    }

    .nav-bar {
        height: 0;
        position: absolute;
        top: 80px;
        left: 0;
        right: 0;
        width: 100vw;
        background: #fefefe;
        transition: 0.2s;
        overflow: hidden;
    }

    .social-icons {
        height: 0;
        position: absolute;
        top: 420px;
        left: 0;
        right: 0;
        width: 100vw;
        background: #fefefe;
        transition: 0.2s;
        overflow: hidden;
    }

    .nav-bar.active,
    .social-icons.active {
        height: auto;
    }

    .nav-bar ul,
    .social-icons ul {
        display: block;
        width: fit-content;
        margin: 0 auto 0 auto;
        text-align: center;
        transition: 0.5s;
        opacity: 0;
    }

    .nav-bar ul li a,
    .social-icons ul li a {
        margin-bottom: 12px;
    }

    .nav-bar.active ul,
    .social-icons.active ul {
        opacity: 1;
    }

    .notifications-total {
        top: 120px;
    }

    .profile-wrapper-user-img {
        width: 30%;
    }

    .profile-wrapper-user-info {
        width: 70%;
    }
}

@media only screen and (max-width: 800px) {
    .footer-container {
        flex-wrap: wrap;
    }
}

@media only screen and (max-width: 768px) {
    .track-documents {
        border-top: 0.6px dotted #ccc;
        height: auto;
    }

    .profile-wrapper-user-img {
        width: 35%;
    }

    .profile-wrapper-user-info {
        width: 65%;
    }
    
    .profile-wrapper-user-payments-subscriptions-membership-left {
        width: 100%;
        display: none;
    }

    .profile-wrapper-user-payments-subscriptions-search-buttons {
        justify-content: unset;
    }

    .profile-wrapper-user-payments-subscriptions-search-form input {
        width: 100% !important;
    }
}

@media only screen and (max-width: 540px) {
    .nav-bar {
        overflow: hidden;
    }

    .wapper {
        display: flex;
        flex-direction: column;
    }

    .left-wapper,
    .right-wapper {
        width: 100%;
    }

    .left-wapper {
        margin-bottom: 20px;
    }

    .track-orders-form {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }

    .track-orders-form input,
    .confirm-search .ordersCategory {
        margin-right: 0px;
    }

    .track-history-item-left{
        display: none;
    }

    .track-history-comment-form {
        display: flex;
        flex-direction: column;
    }

    .track-history-comment-form input {
        width: 100%;
        margin-bottom: 10px;
    }

    .track-orders-form input {
        width: 100%;
    }

    .track-history-comment-form button {
        width: 100%;
    }

    .chat-live-box-user-img {
        display: none;
    }

    .chat-live-box-user-details {
        width: 100%;
    }

    .chat-live-box-left-details,
    .chat-live-box-right-details {
        width: 100%;
        border: none;
    }

    .chat-live-box-right-details {
        display: none;
    }

    .attchmentBtn,
    .chat-live-session-btn {
        display: block;
    }

    .form-inputs {
        width: 80%;
    }

    .form-attachments {
        width: 20%;
    }

    .profile-wrapper-user-img,
    .profile-wrapper-user-info {
        width: 100%;
    }

    .profile-wrapper-user-img {
        height: fit-content;
        padding: 30px 50px 30px 50px;
        border-bottom: 0.6px dotted #ccc;
    }

    .profile-wrapper-user-img img {
        border-radius: 100%;
    }

    .profile-wrapper-user-info {
        padding-left: 0px;
        text-align: center;
    }

    .profile-wrapper-user-options .track-sub-title-links {
        width: 500px;
    }

    .profile-wrapper-user-profiles-list {
        grid-template-columns: repeat(1, 1fr);
    }

    .profile-wrapper-user-account-sides {
        display: flex;
        flex-direction: column;
    }

    .profile-wrapper-user-account-info-left,
    .profile-wrapper-user-account-info-right {
        width: 100%;
    }

    .profile-wrapper-user-account-info-right,
    .profile-wrapper-user-payments-right {
        border-top: 0.6px dotted #ccc;
        margin-top: 10px;
    }

    .profile-wrapper-user-payments-sides {
        display: flex;
        flex-direction: column;
    }

    .widget-form-search-button {
        margin-left: 0px;
    }
    
    .profile-wrapper-user-payments-left,
    .profile-wrapper-user-payments-right {
        width: 100%;
    }

    .chat-user-form .form-inputs {
        width: 100%;
    }

    .profile-wrapper-user-payments-right {
        padding-top: 10px;
    }

    .payment-info-item-left,
    .payment-info-item-right {
        width: 100%;
    }

    .payment-info-item-right {
        padding-bottom: 20px;
    }

    .profile-wrapper-user-payments-subscriptions-list {
        padding: 0px;
    }

    .profile-wrapper-user-payments-subscriptions-membership-left {
        width: 100%;
        display: none;
    }

    .profile-wrapper-user-payments-subscriptions-membership-right {
        width: 100%;
    }

    .home-wigdet-summary-list {
        display: flex;
        flex-direction: column;
    }

    .home-wigdet-summary-item {
        width: 100%;
    }

    .profile-image-details-box-left,
    .profile-image-details-box-right {
        width: 100%;
        align-items: center;
    }

    .profile-image-details-box-right p {
        text-align: center;
    }

    .profile-notifications-box,
    .profile-activity-box {
        width: 100%;
    }

    .profile-activity-box {
        display: none;
    }
    
    .profile-activities-btn svg {
        display: block;
    }

    .profile-notifications-list {
        border-top: 0.6px dotted #ccc;
    }

    .footer-container {
        display: flex;
        flex-direction: column;
        flex-wrap: nowrap;
    }

    .profile-notifications-email-item label span {
        height: 30px;
        width: 30px;
    }

    .footer-left, 
    .footer-left-one, 
    .footer-right, 
    .footer-right-one {
        width: 100%;
        margin: 0 20px;
    }

    .form-group .form-item {
        width: 100%;
    }

    .form-group .form-item {
        width: 100%;
    }

    .member-services-content,
    .delivery-options-content,
    .contact-us-content,
    .search-content,
    .storage-content,
    .add-product-category-content,
    .add-products-content,
    .add-supplier-content,
    .add-inventory-item-content,
    .add-purchase-content {
        width: 400px;
    }

    .delivery-options-content {
        width: 500px;
    }

    .parcel-popup-content {
        width: 400px;
    }

    .parcel-form .form-row .form-group,
    .contact-us-form .form-row .form-group {
        width: 100%;
    }

    .contact-us-form-left,
    .contact-us-form-right {
        width: 100%;
    }

    .contact-us-form-left {
        margin-top: 0;
    }

    .contact-us-form-left ul li .office-details {
        padding-left: 10px;
    }

    .form-row {
        display: flex;
        flex-direction: column;
    }
    
    .form-row div:nth-child(1),
    .form-row div:nth-child(2) {
        width: 100%;
        height: fit-content;
    }
}

@media only screen and (max-width: 460px) {
    .track-orders-form,
    .store-manage-heading-right,
    .product-search button:nth-child(1), 
    .product-category-search button:nth-child(1), 
    .inventory-search button:nth-child(1), 
    .inventory-supplier-search button:nth-child(1), 
    .purchases-search button:nth-child(1) {
        width: 100%;
    }

    .product-search button:nth-child(1), 
    .product-category-search button:nth-child(1), 
    .inventory-search button:nth-child(1), 
    .inventory-supplier-search button:nth-child(1), 
    .purchases-search button:nth-child(1) {
        margin-top: 10px;
    }
    
    .delivery-options-content {
        width: 400px;
    }

    .parcel-popup-content {
        width: 300px;
    }

    .member-services-content,
    .delivery-options-content,
    .contact-us-content,
    .search-content,
    .edit-details-content,
    .storage-content,
    .add-product-category-content,
    .add-products-content,
    .add-supplier-content,
    .add-inventory-item-content,
    .add-purchase-content {
        width: 300px;
    }

    .form-col-row .form-col {
        width: 100%;
    }

    .track-sub-title {
        font-size: 13px;
    }
}

@media only screen and (max-width: 390px) {
    .chat-live-box-right-details {
        display: none;
    }

    .chat-live-box-receiver-message-details p {
        flex-wrap: wrap-reverse;
    }

    .chat-live-box-receiver-message-details p span {
        margin-right: 4px;
    }
}</pre></body></html>