/*============================================================================================
	User Sidebar CSS
==============================================================================================*/
:root {
    --ud-primary-color: #333;
    --ud-secondary-color: #222;
    --ud-yellow-color: #ffc107;
    --ud-text-gray-color: #606060;
    --ud-title-color: #222;
    --ud-white-color: #ffffff;
    --ud-white-color-2: #f9f9f9;
    --ud-white-color-3: #f5f5f5;
    --ud-border-color: #f0ecf6;
    --ud-alert-color: #f14c4d;
    --ud-warning-color: #fd841f;
    --ud-success-color: #21bf73;
    --ud-info-color: #1b9c85;
    --ud-hints-color: #767a7a;
    --ud-box-shadow-1: 0px 48px 72px 0px rgba(32, 38, 46, 0.12);
    --ud-box-shadow-2: 0px 12px 24px 0px rgba(32, 38, 46, 0.08);
    --ud-box-shadow-3: 0px 2px 2px 0px rgba(32, 38, 46, 0.08);
}
body {
    background: var(--ud-white-color);
}
a {
    text-decoration: none;
}

table tbody tr td {
    font-size: 15px;
}

ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.getcom-user-sidebar {
    background: var(--ud-white-color);
    box-shadow: 16px 16px 48px 0px rgba(32, 38, 46, 0.08);
    border-radius: 16px 16px 8px 8px;
    margin-left: 38px;
    margin-top: -108px;
    position: sticky;
    top: 10%;
}
.user-sidebar-head {
    background: var(--ud-primary-color);
    border-radius: 16px 16px 0px 0px;
    display: flex;
    align-items: center;
    padding: 16px 16px 20px 16px;
    gap: 12px;
}
.user-sidebar-profile img {
    width: 72px;
    height: 72px;
    border-radius: 16px;
    object-fit: cover;
    border: 6px solid var(--ud-white-color);
    max-width: 72px;
}
.user-sidebar-profile-info h5 {
    color: var(--ud-white-color-3);
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 4px;
    display: -webkit-box;
    overflow: hidden;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}
.user-sidebar-profile-info p {
    margin: 0;
    color: var(--ud-white-color);
    font-size: 13px;
    font-weight: 500;
    line-height: 150%;
}
.user-sidebar-profile-btn {
    margin-top: 20px;
}
.user-sidebar-profile-btn a {
    background: var(--ud-primary-color);
    border-radius: 8px;
    font-size: 14px;
    color: var(--ud-white-color);
    font-weight: 600;
    padding: 12px;
    display: inline-block;
    line-height: 150%;
    width: 100%;
    text-align: center;
    transition: all 0.4s ease;
}
.user-sidebar-profile-btn a:hover {
    background: var(--ud-secondary-color);
    color: var(--ud-white-color) !important;
}
.user-sidebar-profile-btn a i {
    margin-right: 6px;
    font-size: 18px;
    position: relative;
    top: 4px;
}
.user-sidebar-menus {
    padding: 20px 16px 24px 16px;
}
.user-sidebar-menu-list li {
    margin-bottom: 8px;
    display: block;
    border-radius: 8px;
}
.user-sidebar-menu-list li:last-child {
    margin: 0;
}
.user-sidebar-menu-list li a {
    padding: 12px;
    display: block;
    border-radius: 8px;
    color: #767a7a;
    font-weight: 600;
    line-height: 150%;
    font-size: 14px;
    position: relative;
}
.user-sidebar-menu-list li a::before {
    position: absolute;
    font-family: uicons-regular-rounded !important;
    content: "\f17d";
    font-size: 16px;
    top: 14px;
    right: 12px;
    opacity: 0;
    visibility: hidden;
}
.user-sidebar-menu-list li.active a::before {
    opacity: 1;
    visibility: visible;
}
.user-sidebar-menu-list li.active a {
    background: var(--ud-primary-color);
    color: var(--ud-white-color);
}
.user-sidebar-menu-list li i {
    font-size: 20px;
    margin-right: 8px;
    position: relative;
    top: 4px;
}
.user-sidebar-menu-list li.active,
.user-sidebar-menu-list li a:hover {
    background: var(--ud-primary-color);
    color: var(--ud-white-color);
}

/*============================================================================================
	End User Sidebar CSS
==============================================================================================*/

/*============================================================================================
	User Dashboard Body CSS
==============================================================================================*/
.getcom-user-body {
    padding-bottom: 80px;
    padding-top: 0;
}
.getcom-user-body-bg img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 0px 0px 16px 16px;
}

/* User DashBoard  */
.dasboard-data-card {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 24px;
    gap: 24px;
    z-index: -1;
    position: relative;
}
.single-data-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 22px 20px;
    position: relative;
    border-radius: 12px;
    z-index: 2;
}
.single-data-card::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 12px;
    z-index: -1;
}
.single-data-card.card-1::before {
    background-image: url("../img/dashboard-data-card-images/card-bg-1.png");
}
.single-data-card.card-2::before {
    background-image: url("../img/dashboard-data-card-images/card-bg-2.png");
}
.single-data-card.card-3::before {
    background-image: url("../img/dashboard-data-card-images/card-bg-3.png");
}
.single-data-card.card-4::before {
    background-image: url("../img/dashboard-data-card-images/card-bg-4.png");
}
.single-data-card.card-5::before {
    background-image: url("../img/dashboard-data-card-images/card-bg-5.png");
}
.single-data-card.card-6::before {
    background-image: url("../img/dashboard-data-card-images/card-bg-6.png");
}
.data-card-info h3 {
    color: var(--ud-primary-color);
    margin: 0;
    font-weight: 700;
    font-size: 24px;
}
.data-card-info p {
    color: #767a7a;
    font-weight: 500;
    font-size: 18px;
    margin: 0;
    line-height: 150%;
}
.data-card-icon img {
    width: 72px;
    height: 72px;
    object-fit: contain;
}

/* Recent Order Table */

.dashboard-my-order-tab .list-group {
    flex-direction: row;
    justify-content: center;
    gap: 12px;
    margin-bottom: 16px;
}

.dashboard-my-order-tab .list-group-item.active {
    background-color: var(--ud-primary-color);
    color: var(--ud-white-color);
}

.dashboard-my-order-tab .list-group-item {
    padding: 14px 32px;
    background-color: #fff4f1;
    border: none !important;
    color: var(--ud-primary-color);
    font-weight: 500;
    border-radius: 4px !important;
    width: 50%;
    text-align: center;
    font-weight: 600;
    background: #e6f6f3;
}
.recent-order-table-area {
    margin-top: 40px;
    background: var(--ud-white-color-3);
}
.recent-order-table-data.table {
    margin: 0;
}
.recent-order-table-data.table tbody {
    vertical-align: middle;
}
.recent-order-table-data.table tbody tr {
    border: 12px solid var(--ud-white-color-3);
}
.recent-order-table-data.table img {
    width: 40px;
    height: 40px;
    border-radius: 4px;
    object-fit: cover;
}
.dashboard-head-widget {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: var(--ud-primary-color);
    padding: 12px 16px;
    border-radius: 4px;
}
.dashboard-head-widget-title {
    margin: 0;
    font-size: 20px;
    color: var(--ud-white-color);
    font-weight: 700;
    line-height: 150%;
}
.dashboard-head-widget-btn .theme-btn {
    background: var(--ud-white-color-3);
    color: var(--ud-primary-color) !important;
    padding: 8px 16px;
    height: auto;
    font-size: 13px;
    font-weight: 700;
    line-height: 150%;
    border-radius: 4px;
}
.dashboard-head-widget-btn .theme-btn:hover {
    background: var(--ud-secondary-color) !important;
    color: var(--ud-white-color) !important;
}
.dashboard-head-widget-btn .theme-btn i {
    margin: 0;
    margin-right: 6px;
}
.dashboard-head-widget.style-2 {
    background: var(--ud-white-color);
    box-shadow: 0px 16px 48px 0px rgba(32, 38, 46, 0.08);
    margin-bottom: 24px;
    padding: 8px 16px;
    position: relative;
    position: sticky;
    top: 52px;
    z-index: 22;
}
.dashboard-head-widget.style-2 .dashboard-head-widget-title {
    color: var(--ud-title-color);
}
.dashboard-head-widget.style-2 .dashboard-head-widget-title span {
    font-size: 14px;
    font-weight: 600;
    color: var(--ud-hints-color);
    margin-left: 4px;
    position: relative;
    top: -1px;
}

.dashboard-head-widget-select {
    display: flex;
    align-items: center;
    gap: 12px;
    white-space: nowrap;
}
.dashboard-head-widget-select span {
    color: var(--ud-hints-color);
    font-weight: 700;
}
.recent-order-table-data .product-img {
    width: 48px;
    height: 48px;
    object-fit: cover;
    border-radius: 12px;
    margin-left: 4px;
    background: var(--ud-white-color);
}
.recent-order-table-data .product-id {
    color: var(--ud-title-color);
    font-weight: 600;
    line-height: 150%;
    margin-left: 12px;
}
.recent-order-table-data .product-date {
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 150%;
    color: var(--ud-hints-color);
    margin-left: 6px;
}
.recent-order-table-data .product-status-btn {
    font-size: 13px;
    font-weight: 700;
    line-height: 120%;
    display: inline-block;
}
.recent-order-table-data .product-status-btn.pending {
    color: var(--ud-primary-color);
}
.recent-order-table-data .product-status-btn.complete {
    color: var(--ud-success-color);
}
.recent-order-table-data .product-status-btn.cancelled {
    color: var(--ud-alert-color);
}
.recent-order-table-data .product-status-btn.in-progress {
    color: var(--ud-warning-color);
}
.recent-order-table-data .product-status-btn.on-hold {
    color: var(--ud-hints-color);
}
.recent-order-table-data.table tbody tr td {
    font-weight: 600;
    color: var(--ud-hints-color);
    line-height: 150%;
    padding: 4px;
    background: var(--ud-white-color);
}
.recent-order-table-data .product-quantity,
.recent-order-table-data .product-price,
.recent-order-table-data .product-total-price,
.recent-order-table-data .product-size,
.recent-order-table-data .product-color {
    font-size: 15px;
    color: var(--dark-color);
    margin-left: 4px;
}

.view-order-btn {
    background: var(--ud-white-color);
    color: var(--ud-primary-color) !important;
    padding: 8px 16px;
    border-radius: 4px;
    font-size: 13px;
    font-weight: 700;
    line-height: 150%;
    float: right;
    margin-right: 10px;
    white-space: nowrap;
    transition: all 0.4s ease;
}
.view-order-btn:hover {
    background: var(--ud-primary-color);
    color: var(--ud-white-color) !important;
}

/* Group Order  */
.table-responsive.order-group {
    border: 1px solid var(--ud-border-color);
    padding: 16px 16px 8px 16px;
    border-radius: 8px;
    margin-top: 24px;
}
.order-group-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid var(--ud-border-color);
    margin-bottom: 4px;
    padding-bottom: 12px;
}
.order-group-info ul {
    list-style: none;
}

.order-group-info li {
    list-style: none;
    padding: 0;
    font-size: 15px;
    color: var(--dark-color);
    font-weight: 600;
}

.order-group-info {
    padding: 0;
    margin: 0;
}

.order-group-info li span {
    font-weight: 400;
}

.order-group-info li {
    line-height: 120%;
    margin-bottom: 8px;
}

.order-group-info li:last-child {
    margin: 0;
}

.order-group-head .view-order-btn {
    background: var(--ud-primary-color) !important;
    color: var(--ud-white-color) !important;
    margin: 0;
    transition: all 0.4s ease;
}
.order-group-head .view-order-btn:hover {
    background: var(--ud-secondary-color) !important;
}
/* Wishlist Items */
.wishlist-items-area {
    margin-top: 40px;
}
.dashboard-wishlist-inner {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 20px;
}
.wishlist-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border: 1px solid var(--ud-border-color);
    border-radius: 8px;
    padding: 12px;
}
.wishlist-card-data {
    display: flex;
    align-items: center;
    gap: 16px;
}
.wishlist-card-img {
    position: relative;
}
.wishlist-card-img img {
    width: 72px;
    height: 72px;
    background: var(--ud-white-color);
    border-radius: 12px;
    object-fit: cover;
    max-width: 72px;
}
.wishlist-card-remove span {
    width: 24px;
    height: 24px;
    line-height: 28px;
    background: #fef1f1;
    border-radius: 100%;
    display: inline-block;
    text-align: center;
    color: var(--ud-alert-color);
    top: ;
    font-size: 16px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    cursor: pointer;
    transition: all 0.4s ease;
}
.wishlist-card-remove span:hover {
    background: var(--ud-alert-color);
    color: var(--ud-white-color);
}
.wishlist-card-btn a {
    width: 36px;
    height: 36px;
    border: ;
    background: var(--ud-primary-color);
    text-align: center;
    border-radius: 8px;
    color: var(--ud-white-color) !important;
    line-height: 40px;
    font-size: 20px;
    display: block;
}
.wishlist-card-btn a:hover {
    background: var(--ud-secondary-color);
    color: var(--ud-white-color) !important;
}
.wishlist-card-info h6 {
    font-size: 16px;
    margin-bottom: 4px;
    line-height: 150%;
    color: var(--ud-title-color);
    display: -webkit-box;
    overflow: hidden;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}
.wishlist-card-info p {
    color: var(--ud-primary-color);
    font-size: 13px;
    line-height: 150%;
    font-weight: 700;
    margin: 0;
}
.wishlist-card-info p span {
    font-weight: 600;
    color: var(--ud-hints-color);
    font-size: 13px;
    line-height: 150%;
    margin-left: 4px;
}

/* My Order Page */
.dashboard-my-order .recent-order-table-data.table tbody tr td {
    background: var(--ud-white-color-2);
}
.dashboard-my-order .recent-order-table-data.table tbody tr {
    border: 6px solid var(--ud-white-color);
}
.dashboard-my-order-bottom {
    text-align: center;
    margin-top: 32px;
}
.load-more-btn {
    background: var(--ud-white-color-3);
    padding: 8px 16px;
    color: var(--ud-primary-color) !important;
    font-weight: 700;
    line-height: 150%;
    border-radius: 4px;
}
.load-more-btn:hover {
    background: var(--ud-primary-color);
    color: var(--ud-white-color) !important;
}

/* Order Details Page */
.order-details-info-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}
.order-details-info-order-id-parent {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 20px;
    font-weight: 500;
    line-height: 120%;
    margin-bottom: 12px;
}
.order-details-info-order-id-parent span {
    font-weight: 600;
}
.order-details-info-status {
    background: var(--ud-primary-color);
    font-size: 13px;
    font-weight: 700;
    line-height: 150%;
    padding: 2px 8px;
    border-radius: 4px;
    color: var(--ud-white-color);
}
.order-details-info-date-time {
    line-height: 14px;
}
.order-details-info-date-time li {
    display: inline-block;
    margin-right: 6px;
    font-size: 13px;
    color: var(--ud-hints-color);
    line-height: 150%;
    font-weight: 500;
}
.order-details-info-head-button .theme-btn {
    padding: 8px 11px;
    height: auto;
    font-size: 13px;
    font-weight: 700;
    line-height: 150%;
    border-radius: 4px;
}

/* Order Details Information Card Data */
.order-details-info-card-group {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 20px;
}
.order-d-info-single-card {
    border: 1px solid var(--ud-border-color);
    padding: 16px 16px 20px 16px;
    border-radius: 16px;
    background: var(--ud-white-color);
}
.order-d-info-single-card-head-icon {
    width: 48px;
    height: 48px;
    line-height: 48px;
    background: var(--ud-white-color-3);
    border-radius: 100%;
    text-align: center;
}
.order-d-info-single-card-head-icon img {
    width: 32px;
    height: 32px;
    object-fit: contain;
}
.order-d-info-single-card-head {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
}
.order-d-info-single-card-title {
    margin: 0;
    font-size: 18px;
    font-weight: 600;
    line-height: 150%;
}
.order-d-info-single-card-data-list li {
    display: flex;
    font-size: 16px;
    font-weight: 500;
    line-height: 150%;
    color: var(--ud-hints-color);
    margin-bottom: 12px;
    gap: 30px;
}

.order-d-info-single-card-data-list li:last-child {
    margin: 0;
}
.order-d-info-single-card-data-list li span {
    width: 30%;
}
.order-d-info-single-card-data-list li strong {
    color: var(--dark-color);
    font-weight: 600;
    width: 70%;
    display: block;
    text-align: left;
    font-size: 15px;
}
.order-d-info-single-card-data-list li .paid-status {
    color: var(--ud-success-color) !important;
}

.order-d-info-single-card-text {
    margin: 0;
    font-weight: 600;
}
.order-d-info-tracking-card {
    text-align: center;
    padding: 16px 16px 20px 16px;
}
.order-d-info-tracking-card-img {
    display: inline-block;
}
.order-d-info-tracking-card-img img {
    width: 180px;
    height: 108px;
    object-fit: contain;
}
.order-d-info-tracking-card-content {
    margin-top: 12px;
}
.order-d-info-tracking-card-content h6 {
    font-size: 18px;
    font-weight: 700;
    line-height: 150%;
    margin: 0;
}
.order-d-info-tracking-card-content .theme-btn {
    margin-top: 12px !important;
    padding: 7px 16px;
    height: auto;
    font-size: 16px;
    font-weight: 600;
}

/* Order Summary */
.order-summary {
    margin-top: 40px;
}
.order-summary-head {
    background: var(--ud-white-color-3);
    padding: 12px 16px;
    border-radius: 8px;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.order-summary-btn .theme-btn {
    padding: 8px 16px;
    height: auto;
    background: var(--ud-primary-color);
}
.order-summary-btn .theme-btn:hover {
    background: var(--ud-secondary-color);
}
.order-summary-btn .theme-btn i {
    margin: 0;
    font-size: 16px;
    margin-right: 8px;
}
.order-summary-head-title {
    margin: 0;
    font-weight: 600;
    font-size: 20px;
    line-height: 150%;
    display: flex;
    align-items: center;
}
.order-summary-head-title img {
    width: 32px;
    height: 32px;
    margin-right: 8px;
    object-fit: contain;
}
.order-summary-table-data.table thead tr th {
    font-size: 16px;
    font-weight: 600;
    line-height: 150%;
}
.order-summary-table-data.table thead tr th:nth-child(1) {
    padding-left: 14px;
}
.order-summary-table-data.table tbody tr td {
    background: var(--ud-white-color-2) !important;
}
.order-summary-table-data.table tbody tr {
    border: 12px solid var(--ud-white-color) !important;
}

.order-summary-total-list li {
    font-size: 16px;
    color: var(--ud-hints-color);
    font-weight: 600;
    line-height: 150%;
    margin-bottom: 24px;
    display: block;
}
.order-summary-total-list li span {
    margin-left: 4px;
}
.order-summary-total-list li:last-child {
    margin: 0;
}
.order-summary-total-list li strong {
    float: right;
    color: var(--ud-title-color);
    font-weight: 600;
    width: 50%;
    text-align: right;
}
.order-summary-total-list .total-price {
    background: var(--ud-white-color-3);
    padding: 8px 16px;
    border-radius: 4px;
    font-size: 20px;
}
.order-summary-total-list .total-price strong {
    color: var(--ud-primary-color);
    font-weight: 700;
}

.multivendor-order-summery {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.ors-paid {
    border: 1px solid var(--ud-border-color);
    border-radius: 8px;
    padding: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.ors-paid img {
    width: 48px;
    height: 48px;
    object-fit: contain;
}

.ors-paid-list li {
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 150%;
    color: var(--ud-hints-color);
    margin-bottom: 4px;
}

.ors-paid-list li span {
    color: var(--ud-secondary-color);
    margin-left: 6px;
}

.ors-paid-list li:last-child {
    margin: 0;
}

.order-summary-total {
    width: 312px;
}

/* Multivendor Order Details */
.menu-collapse {
    background: var(--ud-white-color-3);
    border-radius: 8px;
}
.menu-collapse-button {
    background-color: var(--ud-white-color-3);
    width: 100%;
    text-align: left;
    padding: 12px 14px;
    display: block;
    border-radius: 8px;
    color: #767a7a;
    font-weight: 600;
    line-height: 150%;
    font-size: 16px;
    position: relative;
    transition: all 0.4s ease;
}

.menu-collapse-button::after {
    font-family: uicons-regular-rounded !important;
    content: "\f13e";
    font-size: 20px;
    transition: all 0.4s ease;
    position: absolute;
    right: 12px;
    top: 13px;
}

.menu-collapse-button.active::after {
    content: "\f13c";
}

.menu-collapse-button:hover {
    background-color: var(--ud-primary-color);
    color: var(--ud-white-color);
}

.menu-collapse-list {
    padding: 0 14px;
    overflow: hidden;
    transition: max-height 0.4s ease;
    padding-left: 34px;
    max-height: 0;
}
.menu-collapse-button.active {
    background: #f5f5f5 !important;
    color: var(--ud-primary-color) !important;
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0;
}
.menu-collapse-list li {
    border-radius: 6px;
    margin-bottom: 6px;
}
.menu-collapse-list li:first-child {
    margin-top: 6px;
}
.menu-collapse-list li:last-child {
    margin-bottom: 12px;
}
.menu-collapse-list li a {
    padding: 8px;
    font-size: 14px;
    position: relative;
    display: flex;
    align-items: center;
}
.menu-collapse-list li a::before {
    position: absolute;
    font-family: uicons-regular-straight !important;
    content: "\f17d";
    font-size: 16px;
    top: 10px;
    right: 12px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
}
.menu-collapse-list li i {
    top: 1px;
}
.menu-collapse-list li.active a::before {
    opacity: 1;
    visibility: visible;
}

.menu-collapse-list li.active a {
    color: var(--ud-white-color);
}

.order-details-info-date-time strong {
    font-weight: 600;
    color: #767a7a;
    line-height: 150%;
    font-size: 14px;
}
.order-details-info-date-time span {
    margin-left: 4px;
    font-size: 14px;
    line-height: 150%;
    font-weight: 400;
}
.order-details-info-head {
    align-items: center;
    border: 1px solid var(--ud-border-color);
    border-radius: 8px;
    padding: 12px 20px;
}

.order-details-info-order-id-parent {
    line-height: 150%;
    margin-bottom: 4px;
}
.order-details-info-status {
    font-weight: 600;
}

.od-info-head-duration li {
    font-size: 18px;
    line-height: 150%;
    font-weight: 500;
    margin-bottom: 4px;
}
.od-info-head-duration li:last-child {
    margin: 0;
    font-size: 14px;
}
.od-info-head-duration li span {
    font-weight: 600;
    margin-left: 6px;
    color: var(--ud-secondary-color);
}
.order-d-info-single-card-data-list li {
    font-size: 14px;
    margin-bottom: 5px;
}

.od-package-wrapper {
    margin-top: 20px;
}

.od-package-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: var(--ud-white-color-3);
    border-radius: 12px 12px 0px 0px;
    padding: 16px 20px;
}

.od-package-head-left {
    display: flex;
    align-items: center;
    gap: 8px;
}

.od-package-head-left img {
    width: 40px;
    height: 40px;
    object-fit: contain;
    max-width: 40px;
}

.od-package-head-left-info h5 {
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 150%;
    margin: 0;
}

.od-package-head-left-info p {
    margin: 0;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 150%;
}

.od-package-head-left-info p span {
    color: var(--ud-primary-color);
    margin-left: 4px;
    font-weight: 600;
}

.single-od-package {
    border: 1px solid var(--ud-border-color);
    border-radius: 12px 12px 4px 4px;
    margin-bottom: 16px;
    overflow: hidden;
}
.single-od-package:last-child {
    margin: 0;
}
.od-package-head-right a {
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 150%;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.od-package-head-right a i {
    position: relative;
    top: 2px;
}

.od-package-head-right p {
    margin: 0;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 150%;
    color: var(--ud-hints-color);
}

.od-package-head-left-info p {
    color: var(--ud-hints-color);
}

.od-package-head-right p span {
    color: var(--ud-secondary-color);
    margin-left: 6px;
}

.od-package-head-right a {
    margin-bottom: 2px;
}
.od-package-head-right a:hover {
    color: var(--ud-secondary-color);
}
.od-package-item {
    display: grid;
    align-items: center;
    gap: 24px;
    margin: 16px 0px;
    padding: 0px 20px;
    grid-template-columns: repeat(2, 1fr);
}
.od-package-item-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    align-items: center;
}
.od-package-info {
    display: flex;
    align-items: center;
    gap: 16px;
}
.od-package-info img {
    width: 64px;
    height: 64px;
    max-width: 64px;
    border: 1px solid var(--ud-border-color);
    border-radius: 12px;
    object-fit: contain;
}

.od-package-info a {
    margin: 0;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 150%;
    color: var(--ud-secondary-color);
    display: -webkit-box;
    overflow: hidden;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}
.od-package-info a:hover {
    color: var(--ud-primary-color);
}
.single-od-package-item p {
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: 150%;
    color: var(--ud-secondary-color);
    margin: 0;
}

.single-od-package-item p span {
    margin-left: 4px;
}

.od-package-footer {
    padding: 16px 20px;
    border-top: 1px solid var(--ud-border-color);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.od-package-fotter-left a,
.od-package-fotter-right .review-btn {
    padding: 8px 16px;
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: 150%;
    border-radius: 4px;
    transition: all 0.4s ease;
}

.cancel-order-btn {
    background: #ffb84c;
    color: var(--ud-secondary-color);
}
.cancel-order-btn:hover {
    background: var(--ud-secondary-color);
    color: var(--ud-white-color);
}
.retrun-policy-btn {
    background: var(--ud-white-color-3);
}
.retrun-policy-btn:hover {
    background: var(--ud-primary-color);
    color: var(--ud-white-color);
}
.od-package-fotter-left {
    display: flex;
    align-items: center;
    gap: 12px;
}
.od-package-fotter-right .review-btn {
    background: var(--ud-primary-color);
    color: var(--ud-white-color);
}
.od-package-fotter-right .review-btn:hover {
    background: var(--ud-secondary-color);
    color: var(--ud-white-color);
}

.order-summary-total h4 {
    text-align: center;
    border-bottom: 1px solid var(--ud-border-color);
    padding: 12px 20px;
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: 150%;
    margin-bottom: 20px;
    border-radius: 4px;
}
.order-summary {
    margin-top: 24px;
}

.order-details-info-status.cancelled {
    background: #f14c4d;
}
.order-details-info-status.return {
    background: #21bf73;
}
.single-od-package-item.cancelled span,
.single-od-package-item.return span {
    display: inline-block;
    border-radius: 4px;
    background: #fdeaea;
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: 150%;
    padding: 2px 6px;
    color: #f14c4d;
}
.single-od-package-item.return span {
    background: #21bf731f;
    color: #21bf73;
}
.single-od-package .order-details-info-head {
    border: none;
    border-bottom: 1px solid var(--ud-border-color);
    border-radius: 0;
}

/* Write Review Modal */
.write-review-modal-body.modal-body {
    padding: 0;
}
.write-review-form .form-group {
    margin-bottom: 16px;
}
.write-review-form .form-group label {
    margin-bottom: 8px;
}
.write-review-ratting.star {
    line-height: 150%;
}

.write-review-form .form-group span {
    margin-bottom: 8px;
    line-height: 120%;
    font-size: 16px;
}
.star label {
    font-size: 38px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    cursor: pointer;
    display: inline-flex;
    gap: 8px;
    margin: 0 !important;
}
.write-review-form .form-group textarea {
    width: 100%;
    height: 156px;
}
.write-review-form .form-group textarea:focus {
    border: 1px solid var(--ud-primary-color);
}
.write-review-message span {
    text-align: right;
    margin: 0 !important;
    display: block;
    font-size: 14px !important;
}
.library-photo-input span {
    margin: 0 !important;
}
.create-sell-form .v-register-upload .library-photo-input span {
    color: var(--ud-secondary-color) !important;
}
.write-review-form .library-photo-input {
    height: 48px;
}
.write-review-form #remove-icon {
    top: 5px;
}
.write-review-form .upload-image-list img {
    width: 64px;
    height: 64px;
    object-fit: contain;
    border-radius: 6px;
    border: 1px solid var(--ud-primary-color);
    margin-top: 24px;
}
.write-review-form .upload-image-list .remove-icon {
    width: 24px;
    height: 24px;
    line-height: 24px;
    background: var(--ud-primary-color);
    color: var(--ud-white-color);
    border-radius: 100%;
    text-align: center;
    font-size: 8px;
    cursor: pointer;
    transition: all 0.4s ease;
    position: absolute;
    right: -18px;
    top: 2px;
}
.write-review-form .upload-image-list .remove-icon:hover {
    background: var(--ud-secondary-color);
}
.upload-image-list-widget {
    width: 72px;
    height: 72px;
}

/* Cancelled Order & Refund Policy Modal */

.cancelled-order-modal.write-review-modal .modal-dialog {
    max-width: 536px;
    width: 536px;
}
.cancelled-order-modal.write-review-modal .modal-content {
    border-radius: 12px;
    padding: 0;
}
.can-order-modal-form-inner {
    padding: 16px 24px;
}
.can-order-modal-head {
    padding: 12px 24px;
}

.can-order-modal-head h4 {
    margin: 0;
    font-weight: 600;
    line-height: 150%;
    font-size: 20px;
}

.can-order-modal-head {
    border-bottom: 1px solid var(--ud-border-color);
}

.can-order-select-option .form-check-label {
    border: 1px solid var(--ud-border-color);
    width: 100%;
    padding: 12px;
    border: 2px solid var(--ud-border-color);
    border-radius: 6px;
    cursor: pointer;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 150%;
    margin: 0 !important;
}

.can-order-select-option .form-check-input:focus {
    box-shadow: none;
    border: 2px solid var(--ud-primary-color);
}

.can-order-select-option .form-check-input:checked[type="checkbox"]::before {
    position: absolute;
    content: "";
    width: 10px;
    height: 10px;
    background: var(--ud-primary-color);
    border-radius: 100%;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.can-order-modal-form .form-group {
    margin-bottom: 12px;
}

.can-order-modal-form .form-group label {
    margin-bottom: 8px;
    margin-left: 12px;
}

.can-order-modal-form .form-group textarea {
    width: 100%;
    height: 144px;
    background: var(--ud-white-color-3);
    border: none;
    color: var(--ud-title-color);
    font-size: 16px;
    border: 1px solid transparent;
    border-radius: 6px;
}
.can-order-modal-form .form-group textarea:focus {
    border: 1px solid var(--ud-primary-color);
}
.can-order-modal-form .form-group:last-child {
    margin: 0;
}

.can-order-modal-footer {
    border-top: 1px solid var(--ud-border-color);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 24px;
}

.can-order-modal-close-btn button {
    background: var(--ud-white-color-3);
    padding: 8px 16px;
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: 150%;
    color: var(--ud-title-color);
    border-radius: 4px;
}

.cancelled-order-modal .theme-btn {
    padding: 8px 16px;
    font-size: 14px;
    height: auto;
    line-height: 150%;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.4s ease;
}

.can-order-modal-close-btn button:hover {
    background: var(--ud-primary-color);
    color: var(--ud-white-color);
}

.can-order-modal-close-btn button {
    transition: all 0.4s ease;
}

.cancelled-order-modal .form-check-input {
    width: 24px;
    height: 24px;
    margin-top: 0;
    border: 2px solid var(--ud-primary-color);
    border-radius: 100% !important;
    box-shadow: none;
    outline: none;
    position: relative;
    cursor: pointer;
    margin-right: 4px;
}

.cancelled-order-modal .form-check-input:checked {
    background-color: transparent;
    border-color: var(--ud-primary-color);
}

.cancelled-order-modal .form-check-input:checked[type="checkbox"] {
    background-image: none;
}

.rp-modal-options input[type="radio"] {
    -webkit-appearance: none;
    appearance: none;
    background-color: var(--form-background);
    margin: 0;
    font: inherit;
    color: currentColor;
    width: 24px;
    height: 24px;
    min-width: 24px;
    border: 2px solid var(--ud-primary-color);
    border-radius: 50%;
    transform: translateY(-0.075em);
    display: grid;
    place-content: center;
    cursor: pointer;
}

.rp-modal-options input[type="radio"]::before {
    content: "";
    width: 10px;
    height: 10px;
    border-radius: 50%;
    transition: 120ms transform ease-in-out;
    background: var(--ud-primary-color);
    transform: scale(0);
}

.rp-modal-options input[type="radio"]:checked::before {
    transform: scale(1);
}
.rp-modal-options {
    margin: 0 !important;
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
}

.rp-modal-options {
    border: 2px solid var(--ud-border-color);
    border-radius: 6px;
    padding: 12px;
}

.rp-modal-option-input h5 {
    margin-bottom: 4px;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 150%;
}

.rp-modal-option-input p {
    margin: 0;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 150%;
}

/* Order Tracking Page */
.order-tracking-card-group {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    margin-top: 32px;
    gap: 24px;
}
.single-order-tracking-card {
    position: relative;
    z-index: 2;
    border-radius: 16px;
    padding: 24px;
    text-align: center;
}
.single-order-tracking-card::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: -1;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 16px;
}
.single-order-tracking-card.card-1::before {
    background-image: url("../img/order-tracking/card-bg-1.png");
}
.single-order-tracking-card.card-2::before {
    background-image: url("../img/order-tracking/card-bg-2.png");
}
.single-order-tracking-card.card-3::before {
    background-image: url("../img/order-tracking/card-bg-3.png");
}
.order-tracking-card-icon img {
    width: 72px;
    height: 72px;
    object-fit: contain;
}
.order-tracking-card-icon {
    margin-bottom: 16px;
}
.order-tracking-card-info h6 {
    font-size: 20px;
    margin-bottom: 4px;
    font-weight: 700;
    line-height: 150%;
}
.order-tracking-card-info p {
    margin: 0;
    color: var(--ud-hints-color);
    font-weight: 500;
    line-height: 150%;
}

/* Guest Order Tracking */
.guest-order-tracking-area {
    margin-top: 40px;
}
.guest-order-tracking-hero {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 72px 0px;
}
.guest-order-tracking-hero-info {
    text-align: center;
}
.guest-order-tracking-hero-info h2 {
    font-size: 31px;
    margin-bottom: 24px;
}
.guest-order-tracking-hero-info .form-group input {
    width: 100%;
}
.guest-order-tracking-hero-info form input {
    width: 100%;
    height: 56px;
    border: 1px solid var(--ud-primary-color);
    border-radius: 6px;
    padding-right: 124px;
    font-weight: 600;
}
.guest-order-tracking-hero-info .form {
    position: relative;
}
.guest-order-tracking-hero-info form {
    position: relative;
}
.guest-order-tracking-hero-info form .theme-btn {
    position: absolute;
    right: 8px;
    top: 8px;
    padding: 8px 12px;
    border-radius: 4px;
    height: auto;
    background: var(--ud-primary-color);
}
.guest-order-tracking-hero-info form .theme-btn:hover {
    background: var(--ud-secondary-color);
}
.product-summary-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0;
    background: var(--ud-white-color-2);
    border-bottom: 1px solid #0074e433;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}
.product-summary-subtotal span {
    font-size: 20px;
    line-height: 150%;
    font-weight: 500;
}
.product-summary .order-summary-table-data.table tbody tr td {
    background: var(--ud-white-color-3) !important;
}

.product-summary .recent-order-table-data.table tbody tr td:first-child {
    padding-left: 16px;
}
.product-summary .recent-order-table-data.table tbody tr td:last-child {
    padding-right: 16px;
}
.product-summary .recent-order-table-data.table img {
    width: 34px;
    height: 34px;
}
.product-summary .recent-order-table-data.table tbody tr td {
    font-size: 14px;
    font-weight: 500;
}
.product-summary.order-summary {
    background: var(--ud-white-color-2);
}
.product-summary .order-summary-table-data.table tbody tr {
    border: 6px solid var(--ud-white-color-2) !important;
    border-left: none !important;
    border-right: none !important;
}
.product-summary .table-responsive {
    padding-bottom: 0;
}

.seperator-group {
    position: relative;
    display: flex;
    align-items: center;
    gap: 4px;
    justify-content: center;
}
.seperator {
    background: var(--ud-primary-color);
    height: 4px;
    border-radius: 32px;
}
.seperator-1,
.seperator-3 {
    width: 10px;
}
.seperator-2 {
    width: 30px;
}

@media only screen and (max-width: 767px) {
    .product-summary .order-summary-head-title {
        font-size: 14px;
        line-height: 120%;
    }
    .product-summary-subtotal span {
        font-size: 14px;
        display: block;
        line-height: 120%;
    }
}

/* Order Status */
.order-status-area {
    margin-top: 24px;
}
.order-status-section-head {
    text-align: center;
}
.order-status-s-head-title {
    display: inline-block;
    margin: 0;
    font-weight: 700;
    font-size: 25px;
    margin-bottom: 12px;
}
.order-status-card-group {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0px 24px;
}
.single-order-status-card {
    border: 1px solid var(--ud-border-color);
    border-radius: 16px;
    padding: 24px 52px 24px 24px;
    display: flex;
    gap: 12px;
    height: fit-content;
    position: relative;
}
.single-order-status-card::before,
.single-order-status-card::after {
    position: absolute;
    content: "";
    width: 47px;
    height: 55px;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}
.single-order-status-card::before {
    right: -52px;
    top: 22px;
}
.single-order-status-card::after {
    left: -52px;
    bottom: 8px;
}
.single-order-status-card.card-1::before,
.single-order-status-card.card-3::before {
    background-image: url("../img/order-tracking/arrow-1.svg");
}
.single-order-status-card.card-2::after,
.single-order-status-card.card-4::after {
    background-image: url("../img/order-tracking/arrow-2.svg");
}
.single-order-status-card.card-1 {
    margin-top: 40px;
}
.single-order-status-card.card-2 {
    margin-top: 120px;
}
.single-order-status-card.card-4 {
    margin-top: 84px;
}
.order-status-card-icon,
.order-status-card-icon-cross {
    width: 56px;
    height: 56px;
    background: linear-gradient(0deg, #0079ff 0%, #01a6ff 100%), #0074e4;
    border-radius: 100%;
    text-align: center;
    line-height: 62px;
    color: var(--ud-white-color-2);
    font-size: 24px;
    min-width: 56px;
}
.order-status-card-icon-cross {
    background: var(--ud-white-color-3);
    color: var(--ud-primary-color);
    font-size: 18px;
}
.order-status-card-info h6 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 4px;
    color: var(--ud-title-color);
    line-height: 150%;
}
.order-status-card-info p {
    color: var(--ud-hints-color);
    font-weight: 500;
    font-size: 13px;
    margin: 0;
    line-height: 150%;
}
.order-status-card-info ul {
    line-height: 14px;
    margin-top: 8px;
}
.order-status-card-info ul li {
    display: inline-block;
    margin-right: 4px;
    font-size: 13px;
    line-height: 150%;
    font-weight: 500;
}
.order-status-card-info ul li:last-child {
    margin: 0;
}

/* Promo/Coupon Page */
.promo-coupon-group-widget {
    margin-top: 40px;
}
.promo-coupon-group-widget.card-left {
    margin-right: 56px;
}
.promo-coupon-group-widget.card-right {
    margin-left: 56px;
}
.promo-coupon-group-widget-head {
    background: var(--ud-white-color-3);
    padding: 12px 16px;
    border-radius: 12px 12px 0px 0px;
}
.promo-coupon-group-widget-head-title {
    margin: 0;
    font-size: 18px;
    font-weight: 700;
    line-height: 150%;
}
.promo-coupon-card {
    margin-top: 20px;
    display: flex;
    gap: 12px;
    border: 1px solid var(--ud-border-color);
    padding: 16px;
    border-radius: 8px;
}
.promo-coupon-card-info {
    width: 100%;
}
.promo-coupon-card,
.promo-coupon-card-overlay {
    margin-top: 20px;
    display: flex;
    gap: 12px;
    transition: all 0.4s ease;
    justify-content: space-between;
    width: 100%;
}
.promo-coupon-card.applied-coupon-card {
    position: relative;
    cursor: pointer;
}
.promo-coupon-card-overlay {
    opacity: 0.5;
    margin: 0;
}
.promo-coupon-card.applied-coupon-card:hover {
    background: #ebf5ff;
}
.promo-coupon-card-icon {
    width: 56px;
    height: 56px;
    min-width: 56px;
    background: var(--ud-white-color-3);
    text-align: center;
    line-height: 53px;
    border-radius: 16px;
}
.promo-coupon-card-icon img {
    width: 32px;
    height: 32px;
    object-fit: contain;
}
.promo-coupon-card-info-content {
    display: flex;
    justify-content: space-between;
}
.promo-coupon-card-info-content-main h6 {
    font-size: 16px;
    font-weight: 700;
    line-height: 150%;
    margin-bottom: 4px;
}
.promo-coupon-card-info-content-main p {
    font-size: 13px;
    font-weight: 700;
    line-height: 150%;
    margin: 0;
}
.promo-coupon-card-info-content-main p span {
    color: var(--ud-hints-color);
    font-weight: 500;
    margin-left: 4px;
}
.promo-coupon-card-info-btn span {
    padding: 4px 12px;
    border-radius: 24px;
    display: inline-block;
    font-size: 13px;
    font-weight: 700;
    line-height: 150%;
}
.promo-coupon-card-info-btn .active-btn {
    background: var(--ud-white-color-3);
    color: var(--ud-primary-color);
}
.promo-coupon-card-info-btn .expired-btn {
    background: #fef1f1;
    color: var(--ud-alert-color);
}
.promo-coupon-card-info-btn .applied-btn {
    background: rgba(237, 250, 244, 1);
    color: var(--ud-success-color);
}
.promo-couponcode {
    position: relative;
    display: inline-block;
    margin-top: 16px;
}
.promo-couponcode .copy-text {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    background: var(--ud-white-color-3);
    padding: 8px 12px;
    border-radius: 8px;
    gap: 8px;
}
.promo-couponcode .copy-text input.text {
    padding: 0;
    font-size: 16px;
    color: var(--dark-color);
    border: none;
    outline: none;
    background: transparent;
    font-weight: 700;
    width: 94px;
    height: 24px;
}
.promo-couponcode .copy-text button {
    color: var(--ud-primary-color);
    font-size: 20px;
    border: none;
    outline: none;
    border-radius: 10px;
    cursor: pointer;
    background: transparent;
    padding: 0;
    position: relative;
}
.promo-couponcode .copy-text button:active {
    background: var(--ud-primary-color);
}
.promo-couponcode .copy-text button::before {
    content: "Copied";
    position: absolute;
    top: -38px;
    right: -14px;
    background: var(--ud-primary-color);
    padding: 6px 10px;
    border-radius: 20px;
    font-size: 13px;
    display: none;
    color: var(--ud-white-color);
    font-weight: 600;
}
.promo-couponcode .copy-text button::after {
    content: "";
    position: absolute;
    top: -20px;
    right: 30%;
    width: 10px;
    height: 10px;
    background: var(--ud-primary-color);
    transform: rotate(45deg);
    display: none;
}
.promo-couponcode .copy-text.active button:before,
.promo-couponcode .copy-text.active button:after {
    display: block;
}

/* Applied Coupon Card */
.promo-coupon-card.applied-coupon-card:hover .applied-coupon-card-remove {
    opacity: 1;
    visibility: visible;
}
.applied-coupon-card-remove {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
}
.applied-coupon-card-remove span {
    background: var(--ud-alert-color);
    padding: 8px 16px;
    display: inline-block;
    font-size: 13px;
    font-weight: 700;
    line-height: 150%;
    color: var(--ud-white-color);
    border-radius: 4px;
}

/* Add Coupon Widget */
.add-coupon-code-widget {
    position: absolute;
    right: 16px;
    top: 60px;
    z-index: 999;
    transition: all 0.4s ease;
    display: none;
}
.add-coupon-code-widget.active {
    display: block;
}
.add-coupon-code-form {
    border-radius: 16px;
    background: var(--ud-white-color);
    padding: 24px;
    box-shadow: var(--ud-box-shadow-1);
    border: 1px solid var(--ud-border-color);
}

.add-coupon-code-form label {
    font-size: 13px;
    margin-bottom: 8px;
    line-height: 150%;
    font-weight: 600;
    color: var(--ud-title-color);
    margin-left: 12px;
}
.add-coupon-code-form input {
    width: 376px;
    padding: 12px !important;
    font-size: 16px;
    font-weight: 600 !important;
    border: 1px solid var(--ud-border-color);
    border-radius: 8px;
}
.add-coupon-code-form input:focus {
    border: 1px solid var(--ud-primary-color);
    box-shadow: none;
}

.add-coupon-code-form .form-control::placeholder {
    color: #767a7a8c !important;
}
.add-coupon-code-form .theme-btn {
    width: 100%;
    display: block;
    height: 48px;
    line-height: 10px;
    margin-top: 16px !important;
}

/* Address Card */
.dashboard-address-widget {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0px 24px;
    margin-right: 112px;
}
.address-card {
    margin-top: 32px;
    border: 1px solid var(--ud-border-color);
    background: var(--ud-white-color);
    padding: 16px 20px 20px 16px;
    border-radius: 12px;
}
.address-card-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
}
.address-card-head-title {
    display: flex;
    align-items: center;
    gap: 12px;
}
.address-card-head-icon {
    width: 40px;
    height: 40px;
    line-height: 35px;
    background: var(--ud-white-color-3);
    border-radius: 100%;
    text-align: center;
}
.address-card-head-icon img {
    width: 20px;
    height: 20px;
    object-fit: contain;
}
.address-card-head-title h4 {
    margin: 0;
    font-size: 20px;
    font-weight: 700;
    line-height: 150%;
}
.address-card-content-list li {
    display: flex;
    font-size: 16px;
    font-weight: 500;
    line-height: 150%;
    color: var(--ud-hints-color);
    margin-bottom: 12px;
    gap: 30px;
}
.address-card-content-list li:last-child {
    margin: 0;
}
.address-card-content-list li span {
    width: 30%;
}
.address-card-content-list li strong {
    color: var(--dark-color);
    font-weight: 600;
    width: 70%;
    display: block;
}

/* Add New Address Widget  */
.add-new-address-widget {
    position: absolute;
    right: 16px;
    top: 60px;
    z-index: 999;
    transition: all 0.4s ease;
    display: none;
}
.add-new-address-widget.active {
    display: block;
}
.add-new-address-form {
    background: var(--ud-white-color);
    border-radius: 16px;
    box-shadow: var(--ud-box-shadow-1);
    border: 1px solid var(--ud-border-color);
    padding: 24px;
}
.add-new-address-form label {
    font-size: 13px;
    font-weight: 600;
    line-height: 150%;
    margin-bottom: 8px;
    margin-left: 12px;
}
.add-new-address-form .form-group {
    margin-bottom: 16px;
}
.add-new-address-form .form-group input,
.add-new-address-form .form-control {
    width: 376px;
    height: 48px;
    padding: 12px !important;
    line-height: 24px;
}
.add-new-address-form .form-control {
    font-size: 16px;
    font-weight: 600;
}

.select-form-inner {
    position: relative;
}
.select-form-icon {
    position: absolute;
    right: 12px;
    top: 13px;
}
.select-form-icon i {
    font-size: 20px;
}
.add-new-address-form-btn.theme-btn {
    width: 100%;
    display: block;
    height: 48px;
    line-height: 12px;
}
.address-card .dropdown-toggle i {
    color: var(--ud-primary-color);
    font-size: 18px;
}
.address-card .dropdown-menu.show {
    background: var(--ud-white-color);
    border: 1px solid var(--ud-border-color);
    padding: 12px 20px;
    box-shadow: 0px 16px 48px 0px rgba(32, 38, 46, 0.08);
    border-radius: 8px;
    transform: translate3d(-164px, -3.6px, 0px) !important;
}
.address-card .dropdown-item {
    padding: 0;
    color: var(--ud-hints-color);
    font-size: 13px;
    font-weight: 600;
    line-height: 150%;
    margin-bottom: 12px;
}
.address-card .dropdown-item:hover {
    background-color: transparent !important;
    color: var(--ud-primary-color);
}
.address-card .dropdown-item:focus {
    background: transparent !important;
}
.address-card .dropdown-item:last-child {
    margin: 0;
}

/* Edit Address Modal */
.theme-btn.demo-req-btn {
    border: none;
}
.theme-btn.demo-req-btn:focus {
    box-shadow: none;
}
.edit-address-modal,
.write-review-modal {
    z-index: 999999;
}
.edit-address-modal .modal-dialog,
.write-review-modal .modal-dialog {
    max-width: 696px;
    width: 696px;
    margin: auto;
    margin-top: 40px;
}
.edit-address-modal .modal-header,
.write-review-modal .modal-header {
    border: none;
    padding: 0;
    justify-content: center;
}
.edit-address-modal .modal-content,
.write-review-modal .modal-content {
    background: #fff;
    border-radius: 24px;
    border: none;
    padding: 28px 24px;
    position: relative;
}
.edit-address-modal-title {
    color: var(--ud-title-color);
    font-weight: 700;
    font-size: 31px;
    line-height: 120%;
    position: relative;
    padding-bottom: 16px;
    margin-bottom: 10px;
}
.edit-address-modal-title::before {
    position: absolute;
    content: "";
    width: 96px;
    height: 4px;
    background: var(--ud-primary-color);
    left: 50%;
    transform: translate(-50%);
    bottom: 0;
}
.edit-address-modal-close,
.write-review-modal-close {
    position: absolute;
    right: -24px;
    top: -15px;
    width: 32px;
    height: 32px;
    background: #fff;
    color: var(--ud-primary-color);
    border-radius: 100%;
    text-align: center;
    line-height: 39px;
    font-size: 22px;
    cursor: pointer;
    transition: all 0.4s ease;
    padding: 0 !important;
    opacity: 1 !important;
}
.edit-address-modal-close:hover,
.write-review-modal-close:hover {
    background: var(--ud-primary-color);
    color: #fff;
}

.edit-address-modal-body {
    padding: 0;
}
.edit-address-modal-form .form-group {
    margin-bottom: 20px;
}
.edit-address-modal-form .form-group .form-label {
    font-weight: 500;
    color: #767a7a;
    margin-bottom: 8px;
    margin-left: 16px;
}
.edit-address-modal-form .form-group input,
.edit-address-modal-form .form-group textarea,
.edit-address-modal-form .form-group .form-control {
    width: 100%;
    height: 48px;
    background: var(--ud-white-color-3) !important;
    border: 1px solid var(--ud-border-color);
}

.edit-address-modal-form .select-form .form-control {
    padding: 12px 16px;
    font-weight: 500 !important;
    background: var(--ud-white-color-3) !important;
    line-height: 24px;
    border-radius: 8px;
}
.nice-select .list {
    width: 100%;
    transform: none !important;
}

.edit-address-modal-form .form-group input,
.edit-address-modal-form .form-group textarea {
    background: var(--ud-primary-color) !important;
    border-radius: 8px;
    padding: 12px 16px;
}
.edit-address-modal-form .form-group textarea {
    height: 150px !important;
}
.edit-address-modal-form .form-group input:focus,
.edit-address-modal-form .form-group textarea:focus,
.edit-address-modal-form .form-group .form-control:focus {
    border: 1px solid var(--ud-primary-color) !important;
    box-shadow: none !important;
}
.select-form-inner {
    position: relative;
}
.select-form-icon i {
    position: absolute;
    right: 12px;
    top: 12px;
    color: var(--ud-primary-color);
    font-size: 24px;
}
.edit-address-modal-form-btn.theme-btn {
    margin-top: 20px !important;
    padding: 16px 24px;
    width: 100%;
    text-align: center;
    display: block;
    height: 50px;
    line-height: 100% !important;
    border: none !important;
}
.edit-address-modal-form-btn.theme-btn:focus {
    box-shadow: none;
}
.modal-backdrop.show {
    background: var(--ud-secondary-color);
    opacity: 0.6;
    z-index: 999;
}
.demo-request-info-check {
    margin-top: 14px;
}
.demo-request-info-check .form-check-input:checked {
    background-color: var(--ud-primary-color);
    border-color: transparent;
}
.demo-request-info-check .form-check-input:focus {
    border-color: 1px solid var(--ud-primary-color);
    outline: 0;
    box-shadow: none;
}
.demo-request-info-check .form-check-input {
    border: 1px solid var(--ud-primary-color);
    margin-top: 5px;
}
.demo-request-info-check .form-check-label {
    font-size: 15px;
}
.edit-address-modal-inner {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 8px 24px #164b771c;
    padding: 40px;
}
@media only screen and (max-width: 767px) {
    .edit-address-modal .modal-dialog,
    .write-review-modal .modal-dialog {
        width: auto;
    }
    .edit-address-modal-title {
        font-size: 20px;
        padding-bottom: 24px;
    }
    .edit-address-modal-form .form-group input,
    .edit-address-modal-form .form-group textarea,
    .edit-address-modal-form .form-group .form-control {
        height: 44px;
    }
    .edit-address-modal-form .form-group .form-label {
        font-size: 14px;
    }
    .edit-address-modal-form .select-form .form-control {
        font-size: 14px;
        line-height: 14px;
    }
    .edit-address-modal-form .form-group textarea {
        height: 120px !important;
    }
    .edit-address-modal-form-btn.theme-btn.btn.btn-primary {
        padding: 12px 24px;
        height: 44px;
    }
    .edit-address-modal-close,
    .write-review-modal-close {
        right: 6px;
        top: 6px;
        background: var(--ud-primary-color);
        color: var(--ud-white-color-2);
    }
    .edit-address-modal-close:hover,
    .write-review-modal-close:hover {
        background: var(--ud-secondary-color);
        color: #fff;
    }
}

/* Payment Page */
.payment-card-group {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0px 24px;
}
.payment-single-card {
    margin-top: 32px;
    position: relative;
    border-radius: 16px;
    padding: 24px;
    text-align: center;
    z-index: 2;
}
.payment-single-card::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    border-radius: 16px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: -1;
}
.payment-single-card.card-1::before {
    background-image: url("../img/payment/card-bg-1.png");
}
.payment-single-card.card-2::before {
    background-image: url("../img/payment/card-bg-2.png");
}
.payment-single-card.card-3::before {
    background-image: url("../img/payment/card-bg-3.png");
}
.payment-card-icon {
    margin-bottom: 16px;
}
.payment-card-icon img {
    width: 72px;
    height: 72px;
    object-fit: contain;
}
.payment-card-info h4 {
    font-size: 20px;
    font-weight: 700;
    line-height: 150%;
    margin-bottom: 4px;
}
.payment-card-info p {
    margin: 0;
    color: var(--ud-hints-color);
    font-weight: 500;
    line-height: 150%;
}
.payment-history {
    margin-top: 34px;
}
.payment-history-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0px 16px;
}
.payment-history-head-select span {
    font-weight: 700;
    line-height: 150%;
    font-size: 16px;
    color: var(--ud-hints-color);
}
.payment-history-head-select .form-select {
    background-image: none;
}
.payment-history-head-select {
    position: relative;
}
.payment-history-head-select i {
    position: absolute;
    right: 12px;
    font-size: 16px;
    top: 10px;
}
.payment-history-head-select .form-select {
    min-width: 224px;
}
.payment-history-head-title {
    margin: 0;
    font-size: 20px;
    font-weight: 700;
    line-height: 150%;
}
.payment-history-head-select {
    display: flex;
    align-items: center;
    gap: 12px;
    white-space: nowrap;
}
.payment-history-table-data.table {
    margin-top: 16px;
    margin-bottom: 0;
}
.service-booking-table-data.table {
    margin-top: 24px;
    margin-bottom: 0;
}
.payment-history-table-data thead th,
.service-booking-table-data thead th {
    background: var(--ud-primary-color);
    padding: 12px 16px;
    font-size: 16px;
    line-height: 150%;
    font-weight: 700;
    color: var(--ud-white-color);
}
.service-booking-table-data thead th {
    padding: 10px 16px !important;
    font-size: 15px !important;
}
.service-booking-table-data thead th,
.service-booking-table-data tbody tr,
.service-booking-table-data tbody tr td {
    white-space: nowrap !important;
}
.service-booking-table-data tbody td span {
    display: block;
    margin-top: 4px;
    font-size: 12px;
    font-weight: 500;
    line-height: 120%;
    color: #2c3333;
}
.service-booking-table-data tbody tr td {
    font-weight: 600 !important;
    font-size: 14px !important;
}
.service-booking-table-data tbody td p {
    margin: 0;
    color: var(--ud-title-color);
}
.service-booking-table-data tbody td.pending-status {
    color: var(--ud-warning-color);
}
.service-booking-table-data tbody td.complete-status {
    color: var(--ud-success-color);
}
.attachnment-item-buttons a {
    padding: 8px 12px;
    border-radius: 32px;
    display: inline-block;
    line-height: 120%;
    font-size: 12px;
}
.attachnment-item-buttons a:hover {
    background: var(--ud-secondary-color);
    color: var(--ud-white-color);
}
.attachnment-item-buttons .view-btn {
    background: #ffb84c;
    color: var(--ud-title-color);
    margin-right: 6px;
}
.attachnment-item-buttons .download-btn {
    background: var(--ud-primary-color);
    color: var(--ud-white-color);
}

.payment-history-table-data thead th:first-child,
.service-booking-table-data thead th:first-child {
    border-radius: 4px 0px 0px 4px;
}
.bs-action-menu {
    text-align: center;
}
.bs-action-menu .dropdown-menu.show {
    transform: translate(-70px, -2.6px) !important;
}

.bs-action-menu .dropdown-item {
    font-size: 12px;
}
.bs-action-menu .dropdown-item:hover {
    background: var(--ud-primary-color);
    color: var(--ud-white-color);
}

.payment-history-table-data thead th:last-child,
.service-booking-table-data thead th:last-child {
    border-radius: 0px 4px 4px 0px;
}
.payment-history-table-data thead th:nth-child(1) {
    width: 24%;
}
.payment-history-table-data thead th:nth-child(2) {
    width: 22%;
}
.payment-history-table-data thead th:nth-child(3) {
    width: 22%;
}
.payment-history-table-data thead th:nth-child(4) {
    width: 18%;
}
.payment-history-table-data thead th:nth-child(5) {
    width: 14%;
}

/* Doctor Appoinment Table Column Sizes */
.service-booking-table-data thead th:nth-child(1) {
    width: 11%;
}
.service-booking-table-data thead th:nth-child(2) {
    width: 11%;
}
.service-booking-table-data thead th:nth-child(3) {
    width: 11%;
}
.service-booking-table-data thead th:nth-child(4) {
    width: 11%;
}
.service-booking-table-data thead th:nth-child(5) {
    width: 11%;
}
.service-booking-table-data thead th:nth-child(6) {
    width: 11%;
}
.service-booking-table-data thead th:nth-child(7) {
    width: 11%;
}
.service-booking-table-data thead th:nth-child(8) {
    width: 11%;
}
.service-booking-table-data thead th:nth-child(9) {
    width: 11%;
}

.payment-history-table-data tbody tr td,
.service-booking-table-data tbody tr td {
    background: var(--ud-white-color-2);
    font-size: 16px;
    font-weight: 500;
    line-height: 150%;
    padding: 12px 16px;
    vertical-align: middle;
}
.payment-history-table-data tbody tr td:first-child,
.service-booking-table-data tbody tr td:first-child {
    padding: 0px 0px 0px 10px;
}
.payment-history-table-data tbody tr,
.service-booking-table-data tbody tr {
    border: 12px solid var(--ud-white-color);
}
.payment-history-table-data .view-order-btn {
    float: initial;
    margin-right: 0;
}

/* Pagination CSS */
.pagination-area {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 40px;
}
.pagination-list li {
    display: inline-block;
    margin-right: 12px;
}
.pagination-list li:last-child {
    margin: 0;
}
.pagination-list li a {
    width: 40px;
    height: 40px;
    line-height: 40px;
    background: var(--ud-white-color-3);
    text-align: center;
    color: var(--ud-primary-color);
    font-weight: 700;
    border-radius: 8px;
    transition: all 0.4s ease;
    display: block;
}
.pagination-list li.active a,
.pagination-list li a:hover {
    background-color: var(--ud-primary-color);
    color: var(--ud-white-color);
}
.pagination-btn .theme-btn {
    padding: 8px 16px;
    height: 40px;
    margin-right: 20px;
}
.pagination-btn .theme-btn:last-child {
    margin: 0;
}

/* Product Review Page */
.single-product-review-card {
    display: grid;
    grid-template-columns: 30% 20% 32% 18%;
    align-items: center;
    padding: 17px 16px;
    background: var(--ud-white-color-2);
    margin-top: 16px;
    border-radius: 4px;
    position: relative;
}
.product-review-card-info {
    display: flex;
    align-items: center;
    gap: 12px;
}
.product-review-card-info h6 {
    font-size: 16px;
    font-weight: 600;
    line-height: 150%;
    margin: 0;
}
.product-review-card-img img {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    object-fit: cover;
}
.product-review-list li {
    display: inline-block;
}
.product-review-list li img {
    margin-right: 8px;
    width: 24px;
    height: 24px;
}
.product-review-main span {
    font-weight: 600;
    line-height: 150%;
    font-size: 13px;
}
.product-review-text p {
    margin: 0;
    font-size: 13px;
    font-weight: 600;
    line-height: 150%;
    display: -webkit-box;
    overflow: hidden;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}
.product-review-buttons-group {
    text-align: right;
}
.product-review-buttons-group .product-review-btn {
    width: 40px;
    height: 40px;
    line-height: 40px;
    border-radius: 8px;
    text-align: center;
    font-size: 16px;
    margin-right: 12px;
    display: inline-block;
    transition: all 0.4s ease;
    cursor: pointer;
    padding: 0;
}
.product-review-buttons-group .product-review-btn:last-child {
    margin: 0;
}
.product-review-btn.edit-btn {
    background: var(--ud-white-color-3);
    color: var(--ud-primary-color);
}
.product-review-btn.edit-btn:hover {
    background: var(--ud-primary-color);
    color: var(--ud-white-color);
}
.product-review-btn.delete-btn {
    background: #fef1f1;
    color: var(--ud-alert-color);
}
.product-review-btn.delete-btn:hover {
    background: var(--ud-alert-color);
    color: var(--ud-white-color);
}
.product-review-edit-widget {
    position: absolute;
    right: 12%;
    border-radius: 16px;
    background: var(--ud-white-color);
    box-shadow: 0px 48px 72px 0px rgba(32, 38, 46, 0.12);
    padding: 20px 24px;
    z-index: 88;
    top: 26%;
}

.product-review-edit-widget .product-review-text textarea {
    width: 376px;
    border-radius: 4px;
    border: 1px solid var(--ud-border-color);
    height: 144px;
    padding: 14px 12px;
    font-weight: 600;
    font-size: 13px;
    line-height: 150%;
}
.product-review-edit-widget .product-review-list-title {
    font-size: 13px;
    margin-bottom: 8px;
    display: block;
}

.product-review-edit-widget .product-review-text label {
    font-size: 13px;
    font-weight: 600;
    line-height: 150%;
    margin-bottom: 8px;
    margin-left: 12px;
}
.product-review-edit-widget .product-review-text textarea:focus {
    border: 1px solid var(--ud-primary-color);
}
.product-review-edit-widget .product-review-main {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 14px;
    margin-left: 12px;
}
.product-review-edit-widget-btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 12px;
}
.product-review-edit-widget-btn .theme-btn {
    padding: 8px 14px;
    height: 36px;
    font-size: 13px;
    border-radius: 4px;
    margin: 0 !important;
}

.pr-review-card {
    border: 1px solid var(--ud-border-color);
    border-radius: 12px 12px 4px 4px;
    background: var(--ud-white-color);
    margin-bottom: 16px;
}
.pr-review-card:last-child {
    margin: 0;
}
.pr-review-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    border-bottom: 1px solid var(--ud-border-color);
    padding: 12px 16px;
}

.pr-review-head-left {
    width: 50%;
}

.pr-review-product {
    display: flex;
    align-items: center;
    gap: 12px;
    display: ;
}

.pr-review-product-img img {
    width: 64px;
    height: 64px;
    max-width: 64px;
    border: 1px solid var(--ud-border-color);
    border-radius: 8px;
    object-fit: cover;
}

.pr-review-product-info a {
    color: var(--ud-title-color);
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 150%;
    display: -webkit-box;
    overflow: hidden;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    margin-bottom: 2px;
}
.pr-review-product-info a:hover {
    color: var(--ud-primary-color);
}
.pr-review-product-info-list li {
    display: inline-block;
    margin-right: 4px;
    font-size: 12px;
    font-style: normal;
    font-weight: 500;
    line-height: 150%;
    color: var(--ud-hints-color);
}

.pr-review-product-info-list li:last-child {
    margin: 0;
}

.pr-review-product-info-list li span {
    font-weight: 600;
    color: var(--ud-title-color);
    margin-left: 4px;
}

.pr-review-product-info-list {
    line-height: 150%;
}

.pr-review-head-right {
    width: 50%;
    text-align: right;
}

.pr-review-head-right a {
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: 150%;
    margin-bottom: 2px;
}

.pr-review-head-right p {
    margin: 0;
    font-size: 12px;
    font-style: normal;
    font-weight: 500;
    line-height: 150%;
    color: var(--ud-hints-color);
}

.pr-review-head-right p span {
    color: var(--ud-title-color);
    font-weight: 600;
    margin-left: 4px;
}

.pr-review-body {
    display: grid;
    grid-template-columns: 20% 32% 20% 20%;
    gap: 24px;
    padding: 16px;
    align-items: center;
}

.pr-review-image-wrapper {
    display: flex;
    align-items: center;
    gap: 8px;
}

.pr-review-img img {
    width: 48px;
    height: 48px;
    max-width: 48px;
}

.pr-review-img a {
    width: 48px;
    height: 48px;
    max-width: 48px;
    object-fit: cover;
    display: ;
}

/* Support Ticket Page */
.support-ticket-table-data.table tr td {
    background: var(--ud-white-color-3);
    vertical-align: middle;
    padding: 12px;
    white-space: nowrap;
}
.support-ticket-table-data.table tr td:first-child {
    border-radius: 4px 0px 0px 4px;
}
.support-ticket-table-data.table tr td:last-child {
    border-radius: 0px 4px 4px 0px;
}
.support-ticket-number {
    color: var(--ud-primary-color);
    font-weight: 700;
    line-height: 150%;
}
.support-ticket-number img {
    width: 32px;
    height: 32px;
    display: inline-block;
    margin-right: 6px;
}
.support-ticket-date {
    font-size: 16px;
    font-weight: 500;
    color: var(--ud-hints-color);
    line-height: 150%;
    display: block;
}
.support-ticket-text {
    font-weight: 500;
    color: var(--dark-color);
    display: block;
}
.open-ticket-btn {
    background: var(--ud-primary-color);
    color: var(--ud-white-color);
    padding: 8px 12px;
    border-radius: 4px;
    font-size: 13px;
    font-weight: 700;
    line-height: 150%;
    float: right;
}
.open-ticket-btn:hover {
    background: var(--ud-secondary-color);
    color: var(--ud-white-color);
}
.support-ticket-status-btn {
    padding: 4px 8px;
    display: inline-block;
    border-radius: 4px;
    font-size: 13px;
    font-weight: 700;
    line-height: 150%;
    color: var(--ud-white-color);
}
.support-ticket-status-btn.hold {
    background: var(--ud-hints-color);
}
.support-ticket-status-btn.closed {
    background: var(--ud-alert-color);
}
.support-ticket-status-btn.open {
    background: var(--ud-success-color);
}
.support-ticket-status-btn.cancelled {
    background: var(--ud-primary-color);
}
.support-ticket-table-data.table tbody tr {
    border-top: 16px solid var(--ud-white-color);
    border-bottom: 16px solid var(--ud-white-color);
}

/* Create Ticket Page */
.create-ticket-inner {
    background: var(--ud-white-color);
    border-radius: 16px;
    box-shadow: var(--ud-box-shadow-3);
    padding: 40px;
    margin-top: 32px;
}
.create-ticket-form .form-group {
    margin-bottom: 20px;
}
.create-ticket-form .form-group label {
    color: var(--ud-title-color);
    font-size: 13px;
    font-weight: 600;
    line-height: 150%;
    margin-bottom: 8px;
    margin-left: 12px;
}
.create-ticket-form .form-group input,
.create-ticket-form .form-group textarea {
    font-weight: 500;
    padding: 16px 12px;
    font-size: 16px;
}
.form-control:focus {
    border: 1px solid var(--ud-primary-color);
}
.create-ticket-form .form-group textarea {
    height: 240px;
    border-radius: 6px;
}

.create-ticket-form .form-group.select-form select {
    height: 48px;
    font-weight: 600;
    border-radius: 6px;
}
.create-ticket-form-upload-image input {
    display: none;
}
.create-ticket-form .nice-select {
    line-height: 24px;
}
.create-ticket-form-upload-image .library-photo-input label {
    margin: 0 !important;
    display: block;
    text-align: center;
    background: var(--ud-white-color-3);
    padding: 12px;
    color: var(--ud-primary-color) !important;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.4s ease;
    font-weight: 600 !important;
    height: 48px;
    line-height: auto !important;
    font-size: 16px !important;
    border-color: var(--ud-primary-color) !important;
}
.create-ticket-form-upload-image .library-photo-input label i {
    margin-right: 8px;
    color: var(--ud-primary-color) !important;
}
.create-ticket-form-upload-image .library-photo-input label:hover {
    background: var(--ud-primary-color);
    color: var(--ud-white-color) !important;
    border: 2px dashed transparent !important;
}
.create-ticket-form-upload-image .library-photo-input label:hover i {
    color: var(--ud-white-color) !important;
}
.create-ticket-form-btn {
    border-top: 1px solid var(--ud-border-color);
    padding-top: 32px;
}
.create-ticket-form-btn .theme-btn {
    padding: 16px 40px;
}
.create-ticket-form-upload-image .upload-image-list {
    display: flex;
    align-items: center;
    gap: 16px;
    position: relative;
}
.create-ticket-form-upload-image .image-item {
    position: relative;
    margin-top: 20px;
}
.create-ticket-form-upload-image .image-item img {
    width: 72px;
    max-width: 72px;
    height: 72px;
    border-radius: 16px;
}
.create-ticket-form-upload-image .remove-btn {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    padding: 0;
    width: 20px;
    height: 20px;
    background: var(--ud-alert-color);
    color: var(--ud-white-color);
    border-radius: 100%;
    line-height: 24px;
    font-size: 16px;
}

/* Ticket Conversation */
.ticket-converstion-main {
    background: var(--ud-white-color);
    border-radius: 16px;
    box-shadow: var(--ud-box-shadow-3);
    padding: 32px;
    margin-top: 32px;
}
.ticket-converstion-widget.admin-conversation {
    margin-left: 414px;
}
.ticket-converstion-widget {
    display: flex;
    gap: 8px;
    width: 504px;
    margin-bottom: 40px;
}
.ticket-converstion-widget-img img {
    width: 48px;
    height: 48px;
    border-radius: 100%;
    max-width: 48px;
}
.ticket-converstion-info-body {
    background: var(--ud-white-color-2);
    border-radius: 16px;
    padding: 8px 12px;
    margin-top: 12px;
}
.ticket-converstion-info-body-images {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 20px;
}
.ticket-converstion-info-body-single-img img {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    max-width: 56px;
}
.ticket-converstion-widget-info-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.ticket-converstion-widget-info-head h5 {
    margin: 0;
    font-size: 16px;
    font-weight: 600;
    line-height: 150%;
}
.ticket-converstion-widget-info-date {
    display: flex;
    align-items: center;
    gap: 12px;
}
.ticket-converstion-widget-info-date span {
    color: var(--ud-hints-color);
    font-size: 13px;
    font-weight: 400;
    line-height: 150%;
    display: block;
}
.ticket-converstion-widget-more-btn {
    background: transparent !important;
    padding: 0;
    color: var(--ud-hints-color) !important;
    font-size: 16px;
    position: relative;
    top: 1px;
}
.ticket-converstion-widget-more-btn:hover {
    color: var(--ud-secondary-color) !important;
}
.ticket-converstion-info-body-text {
    margin: 0;
    font-weight: 500;
    line-height: 150%;
}
.ticket-converstion-widget.admin-conversation
    .ticket-converstion-info-body-text {
    text-align: right;
}
.tooltip {
    transform: translate3d(987.4px, 354.6px, 0px) !important;
}
.tooltip .tooltip-arrow::before {
    top: -9px;
    border-right-color: #2c3333 !important;
    right: 0;
}
.tooltip-inner {
    padding: 8px 12px;
    font-size: 13px;
    font-weight: 600;
    line-height: 140%;
    background: #2c3333;
}

.ticket-converstion-info-body-images.admin-images
    .ticket-converstion-info-body-single-img
    img {
    width: 100%;
    height: 220px;
    max-width: 100%;
}
.ticket-converstion-navigation {
    position: relative;
}
.ticket-converstion-navigation #upload-img {
    display: none;
}
.ticket-converstion-navigation-tools {
    position: absolute;
    right: 12px;
    top: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
}
.ticket-c-navigation-emoji i,
.ticket-c-navigation-attachment i {
    font-size: 24px;
    color: var(--ud-hints-color);
    position: relative;
    top: 4px;
    cursor: pointer;
    transition: all 0.4s ease;
}
.ticket-c-navigation-emoji i:hover,
.ticket-c-navigation-attachment i:hover {
    color: var(--ud-secondary-color);
}
.ticket-c-navigation-send-btn {
    background: var(--ud-primary-color);
    width: 48px;
    height: 48px;
    line-height: 12px;
    border-radius: 16px;
    font-size: 20px;
    padding: 0;
    color: var(--ud-white-color);
}
.ticket-c-navigation-send-btn:hover {
    background: var(--ud-secondary-color);
}
.ticket-converstion-navigation textarea {
    width: 100%;
    height: 72px;
    background: var(--ud-white-color-3);
    border: 1px solid transparent;
    padding: 24px 150px 24px 16px;
    border-radius: 16px;
    resize: none;
}
.ticket-converstion-navigation textarea::-webkit-scrollbar {
    width: 2px !important;
    height: 2px !important;
    display: block;
}
.ticket-converstion-navigation textarea::-moz-scrollbar {
    width: 2px !important;
    height: 2px !important;
    display: block;
}
.ticket-converstion-navigation textarea::-ms-scrollbar {
    width: 2px !important;
    height: 2px !important;
}

.ticket-converstion-navigation .upload-image-list {
    display: flex;
    align-items: center;
    gap: 12px;
}
.ticket-converstion-navigation .image-item {
    position: relative;
    width: 56px;
    height: 56px;
    max-width: 56px;
    margin-top: 20px;
}
.ticket-converstion-navigation .image-item img {
    width: 56px;
    height: 56px;
    max-width: 56px;
    border-radius: 12px;
    object-fit: cover;
}
.ticket-converstion-navigation .remove-btn {
    background: var(--ud-alert-color);
    border-radius: 100%;
    width: 20px;
    height: 20px;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    position: absolute;
    line-height: 24px;
    padding: 0;
}
#slideshowAnim {
    background: #40128bd1 !important;
}
.ticket-converstion-widget-info {
    width: 100%;
}
.support-ticket-close {
    text-align: center;
    margin-top: 40px;
}
.support-ticket-close-icon img {
    width: 140px;
    height: 120px;
    object-fit: contain;
}
.support-ticket-close-cont-text {
    margin: 0;
    margin-top: 14px;
    font-weight: 600;
}
.support-ticket-close-cont-btn {
    margin-top: 14px;
}
.support-ticket-close-cont-btn .theme-btn {
    padding: 8px 12px;
    height: 36px;
    font-size: 13px;
}

/* Manage Profile Page */
.manage-profile-card {
    background: var(--ud-white-color);
    box-shadow: 0px 16px 48px 0px rgba(32, 38, 46, 0.08);
    padding: 32px;
    border-radius: 16px;
    margin: 0px 56px;
    position: relative;
}
.manage-profile-img {
    display: inline-flex;
    align-items: flex-end;
    gap: 12px;
}
.manage-profile-img img {
    width: 80px;
    height: 80px;
    border-radius: 16px;
    object-fit: cover;
    border: 4px solid var(--ud-white-color);
    box-shadow: var(--ud-box-shadow-3);
}

.manage-profile-img-btn .theme-btn.secondary-btn {
    padding: 6px 8px;
    height: auto;
    font-size: 13px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 4px;
    line-height: 150%;
    border-radius: 6px;
}
.manage-profile-img-btn .theme-btn.secondary-btn i {
    margin: 0;
    position: relative;
    top: -1px;
    font-size: 16px;
}
.manage-profile-form {
    margin-top: 24px;
}
.manage-profile-form label {
    font-size: 13px;
    font-weight: 600;
    margin-left: 12px;
    margin-bottom: 8px;
    line-height: 150%;
    display: block;
}
.manage-profile-form .form-group {
    margin-bottom: 20px;
    position: relative;
}
.manage-profile-form .form-group input {
    border-radius: 4px;
}
.form-input-with-input-text input {
    padding-right: 150px !important;
}
.manage-profile-form-btm-widget {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.manage-profile-form-btm-title {
    display: block;
    border-bottom: 1px solid var(--ud-border-color);
    margin-bottom: 16px;
    padding-bottom: 16px;
    font-weight: 700;
    line-height: 150%;
}
.manage-profile-form-btm-widget-icon {
    display: flex;
    align-items: center;
    gap: 6px;
}
.manage-profile-form-btm-widget-icon img {
    width: 32px;
    height: 32px;
    object-fit: contain;
}
.manage-profile-form-btm-widget-icon p {
    font-size: 16px;
    margin: 0;
    font-weight: 700;
    line-height: 150%;
}
.manage-profile-form-btm-widget-btn {
    background: var(--ud-white-color-3) !important;
    color: var(--ud-primary-color) !important;
    border-radius: 16px;
    padding: 4px 12px;
    display: inline-block;
    font-size: 13px;
    font-weight: 600;
    line-height: 150%;
}
.manage-profile-form-btm-widget-btn:hover {
    background: var(--ud-primary-color) !important;
    color: var(--ud-white-color) !important;
}
.manage-profile-form-button {
    margin-top: 32px;
    text-align: center;
}
.manage-profile-form-button .theme-btn {
    padding: 12px 24px;
    height: 56px;
    width: 100%;
    text-align: center;
    display: block;
    text-transform: capitalize;
}
.form-input-with-input-text {
    position: relative;
}
.manage-profile-form-input-text {
    position: absolute;
    right: 10px;
    top: 10px;
    padding: 4px 12px;
    border-radius: 16px;
    background: var(--ud-white-color-3);
    color: var(--ud-primary-color);
    font-size: 13px;
    font-weight: 600;
    line-height: 150%;
}
.manage-profile-form-input-text.btn.btn-primary:hover {
    background: var(--ud-primary-color) !important;
}
.manage-profile-form-widget {
    position: absolute;
    width: 424px;
    border: 1px solid var(--ud-border-color);
    background: var(--ud-white-color);
    box-shadow: var(--ud-box-shadow-1);
    padding: 24px;
    border-radius: 16px;
    right: 0px;
    z-index: 44;
    top: 76px;
}
.manage-profile-form-widget .theme-btn {
    width: 100%;
    display: block;
    height: 48px;
    line-height: 14px;
}
.manage-profile-form-otp {
    text-align: center;
    margin-top: 16px;
}
.manage-profile-form-otp span {
    font-size: 13px;
    color: var(--ud-hints-color);
    margin-bottom: 6px;
    display: block;
    line-height: 150%;
    font-weight: 500;
}
.manage-profile-form-otp p {
    font-size: 16px;
    color: var(--ud-title-color);
    font-weight: 700;
    margin: 0;
}
.manage-profile-form-otp p a {
    color: var(--ud-primary-color);
    font-weight: 600;
    margin-left: 2px;
}
.manage-profile-form-otp-btn {
    margin-top: 6px !important;
}
.manage-profile-form-otp-btn .theme-btn {
    display: inline-block;
    width: auto;
    border-radius: 16px;
    padding: 4px 12px;
    height: 28px;
    font-size: 13px;
    font-weight: 700;
}

.manage-profile-form-widget .otp-input input {
    width: 48px !important;
    height: 48px !important;
    margin-right: 16px !important;
    text-align: center;
}
.manage-profile-form-widget .otp-input input:focus {
    border: 1px solid var(--ud-primary-color);
}
.manage-profile-form-widget .otp-input input:last-child {
    margin: 0 !important;
}
.manage-profile-form-widget.success-widget {
    text-align: center;
    padding: 64px 24px;
}
.manage-profile-form-success-icon img {
    width: 120px;
    height: 120px;
    object-fit: contain;
}
.manage-profile-form-success-title {
    margin: 0;
    font-size: 18px;
    font-weight: 500;
    margin-top: 16px;
}

/* Change Password Page  */
.change-password-card {
    background: var(--ud-white-color);
    box-shadow: 0px 16px 48px 0px rgba(32, 38, 46, 0.08);
    border-radius: 16px;
    padding: 32px;
    margin: 0px 56px;
}
.change-password-form .form-group {
    margin-bottom: 20px;
}
.change-password-form .form-group label {
    font-size: 13px;
    font-weight: 600;
    line-height: 150%;
    margin-bottom: 8px;
    margin-left: 12px;
}
.form-group-password {
    position: relative;
}
.change-password-form .form-group input {
    padding-right: 44px;
}

.change-password-form-btn.theme-btn {
    height: 56px;
    width: 100%;
    text-align: center;
    display: block;
    text-transform: capitalize;
}
.mobile-menu-sidebar-icon {
    display: none;
}
.ticket-converstion-info-body-images.admin-images {
    display: block;
}

.mp-tab-menu {
    margin: 0px 56px;
}

.mp-tab-menu.tab-menu {
    margin: 0px 56px;
    margin-bottom: 12px;
}

.manage-profile-tab {
    margin-top: 32px;
}

.manage-profile-tab .list-group {
    flex-direction: row;
    justify-content: center;
    background: var(--ud-white-color-3);
    border-radius: 6px;
}

.manage-profile-tab .list-group-item {
    padding: 16px 32px;
    background-color: var(--ud-white-color-3);
    border: none !important;
    width: 100%;
    text-align: center;
    font-weight: 600;
    line-height: 150%;
    border-radius: 6px !important;
    font-size: 16px;
}
.manage-profile-tab .tab-content > .active {
    padding: 0;
}
.manage-profile-tab .list-group-item.active {
    background-color: var(--ud-primary-color) !important;
}
.manage-profile-tab .tab-content > .tab-pane {
    overflow: visible;
}
.manage-profile-card {
    position: relative;
}

.manage-profile-img {
    z-index: 2;
    position: ;
}

.manage-profile-cover {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1;
}
.manage-profile-img {
    z-index: 2;
    position: relative;
    margin-top: 48px;
}
.manage-profile-cover img {
    width: 100%;
    height: 120px;
    border-radius: 4px 4px 16px 16px;
}

.manage-profile-img-btn.mp-cover-btn button {
    position: absolute;
    right: 12px;
    bottom: 12px;
}
.change-password-card .form-group-password i {
    top: 13px;
}

/* Responsive Sidebar   */
.mobile-menu-sidebar-icon {
    background: var(--ud-secondary-color);
    color: var(--ud-white-color);
    width: 48px;
    height: 48px;
    border-radius: 8px 0px 0px 8px;
    position: fixed;
    z-index: 999;
    right: 0;
    top: 50%;
    transform: translate(0, -50%);
    font-size: 24px;
    line-height: 48px;
    text-align: center;
    padding: 0;
}
.mobile-menu-sidebar-icon:focus {
    background: var(--ud-primary-color);
}
.mobile-menu-sidebar-icon:hover {
    background: var(--ud-secondary-color);
}
.mobile-menu-sidebar-close {
    width: 32px;
    height: 32px;
    background: transparent;
    border-radius: 100%;
    text-align: center;
    line-height: 32px;
    font-size: 20px;
    color: var(--ud-white-color);
    cursor: pointer;
    position: absolute;
    right: 16px;
    top: 16px;
    border: 1px solid var(--ud-white-color) !important;
    transition: all 0.4s ease;
    padding: 0;
}
.mobile-menu-sidebar-close:hover {
    background: var(--ud-white-color);
    border: 1px solid transparent;
    color: var(--ud-primary-color);
}

.table-responsive {
    padding-bottom: 12px;
}
.table-responsive::-webkit-scrollbar {
    width: 4px !important;
    height: 4px !important;
    display: block;
}
.table-responsive::-moz-scrollbar {
    width: 4px !important;
    height: 4px !important;
    display: block;
}
.table-responsive::-ms-scrollbar {
    width: 4px !important;
    height: 4px !important;
}

.mgTop24 {
    margin-top: 24px;
}
.nice-select {
    margin: 0;
    background-image: none;
    border: 1px solid var(--ud-border-color) !important;
    width: 100%;
    height: 48px;
    line-height: 40px;
    margin-bottom: 16px;
}
.nice-select.form-select:focus {
    box-shadow: none;
}
.nice-select.form-control:focus {
    border: 1px solid var(--ud-primary-color) !important;
}
.nice-select .list {
    width: 100%;
    transform: none !important;
}
.nice-select .option:hover {
    background-color: var(--ud-primary-color);
    color: var(--ud-white-color);
}
.create-ticket-form .form-group.select-form {
    margin-bottom: 24px;
}
#myDiv {
    display: none;
    padding: 20px;
    border: 1px solid #ccc;
    margin-top: 10px;
}

input[type="color"],
input[type="date"],
input[type="datetime-local"],
input[type="datetime"],
input[type="email"],
input[type="month"],
input[type="number"],
input[type="password"],
input[type="range"],
input[type="search"],
input[type="tel"],
input[type="text"],
input[type="time"],
input[type="url"],
input[type="week"],
textarea {
    color: #2424245c;
    border: 1px solid var(--ud-border-color);
    border-radius: 8px;
    padding: 12px 16px;
    font-weight: 500;
    height: 48px;
    font-size: 16px;
}
.form-control:focus {
    box-shadow: none;
}
#dropdown-basic {
    background: transparent;
    color: var(--dark-color);
    padding: 0;
    vertical-align: bottom;
    white-space: nowrap;
    font-weight: 600;
}
#dropdown-basic::after {
    display: none;
}
.pagination-btn {
    display: flex;
    align-items: center;
}
.theme-btn {
    display: inline-flex;
    align-items: center;
    padding: 16px 24px;
    background: var(--ud-primary-color);
    font-weight: 500;
    border-radius: 8px;
    line-height: 26px;
    height: 56px;
    margin-right: 16px;
    font-size: 16px;
    transition: all 0.4s ease;
}
.theme-btn,
.theme-btn:hover {
    color: var(--ud-white-color) !important;
}
.theme-btn:hover {
    background: var(--ud-secondary-color);
}
.theme-btn i {
    font-size: 16px;
    margin-left: 8px;
    position: relative;
    top: 2px;
}
.theme-btn:last-child {
    margin: 0;
}
.theme-btn.secondary-btn i {
    color: var(--ud-primary-color);
    transition: all 0.4s ease;
}
.theme-btn.secondary-btn {
    display: inline-flex;
    background: var(--ud-white-color-3);
    color: var(--ud-primary-color) !important;
}
.theme-btn.secondary-btn:hover {
    background: var(--ud-primary-color);
    color: var(--ud-white-color) !important;
}
.theme-btn.secondary-btn:hover i {
    color: var(--ud-white-color);
}
.theme-btn.icon-right i {
    margin: 0 8px 0 0;
}
.section-bottom-btn .theme-btn {
    padding: 12px 24px;
    height: 48px;
}
#uploaded-image {
    width: 68px;
    height: 68px;
    border: 1px solid var(--ud-primary-color);
    border-radius: 6px;
    margin-top: 20px !important;
    object-fit: cover;
}
#remove-icon {
    position: absolute;
    left: 56px;
    width: 24px;
    height: 24px;
    background: var(--ud-primary-color);
    border-radius: 100%;
    color: var(--ud-white-color);
    line-height: 26px;
    font-size: 10px;
    top: 8px;
    text-align: center;
    cursor: pointer;
    transition: all 0.4s ease;
}
#remove-icon:hover {
    background: var(--ud-secondary-color);
}

.table {
    width: 100%;
}

button {
    border: none !important;
    box-shadow: none !important;
    background: transparent;
    padding: 0;
}
.modal-dialog {
    margin: 0;
}
.modal-content {
    border: none;
}

/* Reward Page */
.reward-hero {
    background: #fafcff;
    border-radius: 16px;
    margin-top: 24px;
    padding: 0px 32px;
}
.reward-hero-inner {
    display: flex;
    align-items: center;
    gap: 64px;
}
.reward-hero-card {
    display: flex;
    align-items: center;
    gap: 16px;
}
.reward-hero-card-icon {
    width: 98px;
    height: 98px;
    background: var(--ud-white-color);
    box-shadow: 0px 2px 2px 0px rgba(32, 38, 46, 0.08);
    border-radius: 24px;
    text-align: center;
    line-height: 98px;
    min-width: 98px;
}
.reward-hero-card-icon img {
    width: 64px;
    height: 64px;
    object-fit: contain;
}
.reward-hero-card-info {
    width: 132px;
}
.reward-hero-card-info h4 {
    color: var(--ud-primary-color);
    font-size: 39px;
    font-weight: 700;
    line-height: 120%;
    display: -webkit-box;
    overflow: hidden;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}
.reward-hero-card-info p {
    font-size: 18px;
    font-weight: 600;
    color: var(--black-color);
    display: -webkit-box;
    overflow: hidden;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    margin: 0;
    white-space: nowrap;
}
.reward-hero-banner img {
    width: 288px;
    height: 162px;
    border-radius: 16px;
    object-fit: cover;
    max-width: 288px;
}
.reward-achivements {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    margin: 48px 32px 0px 32px;
}
.reward-achivements::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 6px;
    background: var(--ud-white-color-3);
    border-radius: 8px;
    left: 0;
    bottom: 41px;
}
.reward-a-card {
    text-align: center;
    position: relative;
}
.reward-a-card::before {
    position: absolute;
    content: "";
    width: 16px;
    height: 16px;
    border-radius: 100%;
    background: var(--ud-primary-color);
    bottom: 36px;
    left: 50%;
    transform: translate(-50%, 0);
}
.reward-a-card:nth-child(1)::before {
    left: 8px;
}
.reward-a-card:nth-child(4)::before {
    left: initial;
    right: -8px;
}
.achivement-progress-line {
    width: 80px;
    height: 6px;
    background: var(--ud-primary-color);
    position: absolute;
    bottom: 41px;
    border-radius: 6px;
}
.reward-a-card-icon img {
    width: 48px;
    height: 48px;
    object-fit: contain;
}
.reward-a-card-top p {
    margin: 0;
    color: var(--black-color);
    font-size: 18px;
    font-weight: 700;
    line-height: 150%;
    margin-top: 4px;
}
.reward-a-card-bottom {
    margin-top: 40px;
}
.reward-a-card-bottom span {
    line-height: 150%;
    display: block;
    font-weight: 600;
}

/* Create Sell  */

.create-sell-form {
    display: none;
}
.d-create-sell-main {
    margin-top: 40px;
}
.create-sell-terms-widget {
    background: #f5f5f5;
    padding: 32px;
    border-radius: 12px;
    text-align: center;
}

.create-sell-terms-widget .theme-btn {
    padding: 10px 32px;
    height: auto;
    font-size: 15px;
}
.create-sell-terms-widget h4 {
    font-size: 24px;
    line-height: 120%;
    margin-bottom: 16px;
}

.create-sell-terms-widget p {
    margin: 0;
}

.create-sell-terms-widget .form-check {
    margin: 0;
    margin-top: 16px;
}
.create-sell-terms-widget .theme-btn {
    margin-top: 16px;
}

.create-sell-terms-widget button:disabled {
    opacity: 0.8;
    cursor: no-drop;
}
.create-sell-terms-widget .form-check {
    padding: 0;
    cursor: pointer;
}
.create-sell-terms-widget .form-check-input {
    box-shadow: none;
    border: 1px solid var(--border-color);
    margin-top: 4px;
}
.create-sell-terms-widget .form-check-label {
    cursor: pointer;
    font-size: 16px;
}
.create-sell-terms-widget .form-check-input:checked {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
}

.create-sell-form {
    background: #f5f5f5;
    padding: 32px;
    border-radius: 12px;
}

.create-sell-form .form-group input,
.create-sell-form .form-group textarea {
    width: 100%;
    height: 48px;
    color: var(--ud-primary-color);
}
.create-sell-form .form-group textarea {
    height: 180px;
}
.create-sell-form .form-group input:focus,
.create-sell-form .form-group textarea:focus {
    border: 1px solid var(--secondary-color);
}
.create-sell-form .form-group input label {
    margin-bottom: 12px;
}

.create-sell-form .form-group label {
    margin-bottom: 8px;
    margin-left: 12px;
    font-size: 15px;
}

.create-sell-form .form-group {
    margin-bottom: 24px;
}

.create-sell-form .form-group select {
    display: block;
    width: 100%;
    height: 48px;
    padding: 12px;
    border: 1px solid var(--border-color);
    background: var(--white-color);
    border-radius: 8px;
    font-size: 15px;
}
.create-sell-form .form-group-widget {
    background: #fff;
    padding: 24px;
    border-radius: 12px;
    margin-bottom: 24px;
}

.create-sell-form-btn {
    width: 100%;
    text-align: center;
    display: block;
}

/* Responsive CSS */
@media only screen and (min-width: 1200px) and (max-width: 1320px) {
    .reward-hero-inner {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 24px;
    }
    .reward-hero-banner img {
        width: 100%;
        object-fit: contain;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
    .getcom-user-sidebar {
        display: none;
    }
    .mobile-menu-sidebar-icon {
        display: block;
    }
    .getcom-user-sidebar.user-mobile-menu-sidebar {
        display: block;
        margin: 0;
        position: initial;
    }
    .user-sidebar-menus {
        overflow-y: auto;
        height: calc(100vh - 18rem);
    }
    .user-sidebar-profile-btn {
        padding: 0px 16px;
    }
    .user-sidebar-menu-list {
        padding-right: 12px;
        padding-left: 0;
    }
    .user-sidebar-menu-list::-webkit-scrollbar {
        width: 4px !important;
        height: 4px !important;
        display: block;
    }
    .user-sidebar-menu-list::-moz-scrollbar {
        width: 4px !important;
        height: 4px !important;
        display: block;
    }
    .user-sidebar-menu-list::-ms-scrollbar {
        width: 4px !important;
        height: 4px !important;
    }
    .getcom-user-body-bg {
        display: none;
    }
    .user-sidebar-head {
        border-radius: 0px 0px 8px 8px;
    }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
    .getcom-user-sidebar {
        display: none;
    }
    .mobile-menu-sidebar-icon {
        display: block;
    }
    .getcom-user-sidebar.user-mobile-menu-sidebar {
        display: block;
        margin: 0;
        position: initial;
    }
    .user-sidebar-menus {
        overflow-y: auto;
        height: calc(100vh - 18rem);
    }

    .user-sidebar-menu-list {
        padding-right: 12px;
        padding-left: 0;
    }
    .user-sidebar-menu-list::-webkit-scrollbar {
        width: 4px !important;
        height: 4px !important;
        display: block;
    }
    .user-sidebar-menu-list::-moz-scrollbar {
        width: 4px !important;
        height: 4px !important;
        display: block;
    }
    .user-sidebar-menu-list::-ms-scrollbar {
        width: 4px !important;
        height: 4px !important;
    }
    .getcom-user-body-bg {
        display: none;
    }
    .data-card-icon img {
        width: 64px;
        height: 64px;
    }
    .data-card-info h3 {
        font-size: 36px;
    }
    .data-card-info p {
        font-size: 16px;
    }
    .data-card-icon {
        margin-top: 12px;
    }
    .single-data-card {
        display: block;
    }
    .recent-order-table-data.table tbody tr {
        white-space: nowrap;
    }
    .recent-order-table-data .product-id {
        margin-right: 70px;
    }
    .dashboard-wishlist-inner {
        grid-template-columns: repeat(2, 1fr);
    }
    .user-sidebar-head {
        border-radius: 0px 0px 8px 8px;
    }
    .order-details-info-card-group {
        grid-template-columns: repeat(2, 1fr);
    }
    .order-tracking-area.mgTop24 {
        overflow: hidden;
    }
    .order-tracking-card-info h6 {
        font-size: 18px;
    }
    .promo-coupon-group-widget.card-left {
        margin-right: 0;
    }
    .promo-coupon-group-widget.card-right {
        margin-left: 0;
    }
    .promo-coupon-card-info {
        margin-top: 12px;
    }
    .promo-coupon-card,
    .promo-coupon-card-overlay {
        display: block;
    }
    .dashboard-address-widget {
        margin-right: 0;
    }
    .address-card-content-list li span {
        width: 50%;
    }
    .payment-history-table-data tbody tr td {
        white-space: nowrap;
    }
    .payment-history-table-data tbody tr td {
        white-space: nowrap;
    }
    .single-product-review-card {
        gap: 4px;
    }
    .product-review-list li img {
        margin-right: 4px;
        width: 20px;
        height: 20px;
    }
    .product-review-card-info {
        gap: 8px;
    }
    .support-ticket-number {
        margin-right: 20px;
    }
    .support-ticket-table-data.table {
        margin: 0;
    }
    .dashboard-head-widget-btn {
        white-space: nowrap;
    }
    .ticket-converstion-widget.admin-conversation {
        margin-left: 0;
        float: right;
    }
    .manage-profile-card {
        margin: 0;
        margin-top: 16px;
    }
    .dashboard-head-widget.style-2 {
        position: relative;
        top: 0px;
    }

    .change-password-card {
        margin: 0;
        margin-top: 56px;
    }
    .reward-hero-inner {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 24px;
    }
    .reward-hero-banner img {
        width: 100%;
        object-fit: contain;
    }
    .reward-hero-card-icon {
        width: 74px;
        height: 74px;
        line-height: 74px;
        min-width: 74px;
    }
    .reward-hero-card-icon img {
        width: 44px;
        height: 44px;
    }
    .reward-hero-card-info h4 {
        font-size: 28px;
    }
    .reward-hero-card-info p {
        font-size: 16px;
    }

    .pr-review-body {
        grid-template-columns: auto auto auto auto;
    }
}

@media only screen and (max-width: 767px) {
    .getcom-user-sidebar {
        display: none;
    }
    .mobile-menu-sidebar-icon {
        display: block;
    }
    .getcom-user-sidebar.user-mobile-menu-sidebar {
        display: block;
        margin: 0;
        position: initial;
    }
    .getcom-user-sidebar.user-mobile-menu-sidebar .user-sidebar-head {
        border-radius: 0px 0px 8px 8px;
    }
    .getcom-user-body-bg {
        display: none;
    }
    .user-sidebar-profile-btn {
        padding: 0px 16px;
    }

    .user-sidebar-menus {
        overflow-y: auto;
        height: calc(100vh - 18rem);
    }
    .user-sidebar-menu-list {
        padding-right: 12px;
        padding: 0;
    }
    .user-sidebar-menu-list::-webkit-scrollbar {
        width: 4px !important;
        height: 4px !important;
        display: block;
    }
    .user-sidebar-menu-list::-moz-scrollbar {
        width: 4px !important;
        height: 4px !important;
        display: block;
    }
    .user-sidebar-menu-list::-ms-scrollbar {
        width: 4px !important;
        height: 4px !important;
    }

    .dasboard-data-card {
        grid-template-columns: repeat(1, 1fr);
    }
    .data-card-info h3 {
        font-size: 30px;
    }
    .data-card-icon img {
        width: 64px;
        height: 64px;
    }
    .dashboard-head-widget-title {
        font-size: 14px;
    }
    .dashboard-head-widget-btn .theme-btn {
        padding: 6px 10px;
        font-size: 12px;
    }
    .dashboard-wishlist-inner {
        grid-template-columns: repeat(1, 1fr);
    }
    .wishlist-card-info h6 {
        font-size: 14px;
    }
    .recent-order-table-data.table tbody tr {
        white-space: nowrap;
    }
    .recent-order-table-data .product-id {
        margin-right: 60px;
        font-size: 14px;
    }
    .recent-order-table-data .product-status-btn {
        font-size: 12px;
    }
    .recent-order-table-data.table tbody tr td {
        font-size: 14px;
    }
    .view-order-btn {
        padding: 4px 12px;
        font-size: 12px;
    }
    .dashboard-head-widget-select span {
        font-size: 14px;
    }
    .form-select {
        font-size: 14px;
    }
    .load-more-btn {
        font-size: 14px;
    }
    .promo-coupon-group-widget.card-left {
        margin-right: 0;
    }
    .promo-coupon-group-widget-head-title {
        font-size: 16px;
    }
    .promo-couponcode .copy-text input.text {
        font-size: 14px;
    }
    .promo-coupon-group-widget.card-right {
        margin-left: 0;
    }
    .add-coupon-code-widget {
        width: 100%;
    }
    .add-coupon-code-form input {
        width: 100%;
        height: 44px !important;
    }
    .add-coupon-code-form .theme-btn {
        height: 44px;
    }
    .add-coupon-code-form {
        width: 100%;
        padding: 16px;
    }
    .dashboard-address-widget {
        margin-right: 0;
        display: block;
    }
    .address-card-head-title h4 {
        font-size: 16px;
    }
    .address-card-content-list li {
        font-size: 12px;
    }
    .address-card-content-list li span {
        width: 50%;
    }
    .address-card .dropdown-menu.show {
        transform: translate3d(-24px, -3.6px, 0px) !important;
    }
    .dashboard-head-widget-btn .theme-btn i {
        font-size: 12px;
        margin-right: 4px;
    }
    .add-new-address-form {
        width: 100%;
    }
    .add-new-address-widget {
        width: 100%;
    }
    .add-new-address-form .form-group input,
    .add-new-address-form .form-control {
        width: 100%;
        height: 44px;
    }
    .add-new-address-form-btn.theme-btn {
        height: 44px;
    }
    .add-new-address-form .form-control {
        font-size: 14px;
    }
    .payment-card-group {
        display: block;
    }
    .payment-card-icon img {
        width: 64px;
        height: 64px;
    }
    .payment-history-head-title {
        font-size: 18px;
        font-weight: 800;
        position: relative;
        padding-left: 12px;
    }
    .payment-history-head-title::before {
        position: absolute;
        content: "";
        width: 4px;
        height: 20px;
        background: var(--ud-primary-color);
        border: ;
        top: 4px;
        left: 0;
    }
    .payment-history-head-select {
        margin-top: 12px;
    }
    .payment-history-head-select .form-select {
        min-width: 100%;
    }
    .payment-history-head-select span {
        font-size: 14px;
        margin-bottom: 8px;
        display: block;
    }
    .payment-history-head {
        display: block;
    }
    .payment-history-head-select {
        display: block;
    }
    .payment-history-head-select i {
        top: initial;
        bottom: 6px;
    }
    .payment-history-table-data tbody tr {
        white-space: nowrap;
    }
    .payment-history-table-data tbody tr td {
        font-size: 14px;
    }
    .payment-history-table-data thead th {
        font-size: 14px;
    }
    .payment-history-table-data tbody tr {
        white-space: nowrap;
    }
    .payment-history-table-data tbody tr td {
        font-size: 14px;
    }
    .payment-history-table-data thead th {
        font-size: 14px;
    }
    .pagination-btn {
        margin-top: 16px;
        display: none;
    }
    .pagination-list li a {
        width: 36px;
        height: 36px;
        line-height: 36px;
        font-size: 14px;
    }
    .pagination-area {
        display: block;
    }
    .single-product-review-card {
        display: block;
    }
    .product-review-buttons-group {
        text-align: left;
    }

    .product-review-buttons-group .product-review-btn {
        width: 36px;
        height: 36px;
        line-height: 38px;
    }
    .product-review-buttons-group .product-review-btn {
        width: 36px;
        height: 36px;
        line-height: 36px;
        font-size: 14px;
        padding: 0;
    }
    .product-review-edit-widget {
        right: 0;
        padding: 16px;
        top: 254px;
        width: 100%;
    }
    .product-review-edit-widget .product-review-text textarea {
        width: 100%;
    }
    .product-review-list li img {
        width: 24px;
        height: 24px;
    }
    .support-ticket-table-data.table tr td {
        font-size: 14px;
    }
    .support-ticket-number {
        margin-right: 21px;
    }
    .support-ticket-date {
        font-size: 14px;
    }
    .open-ticket-btn {
        padding: 6px 10px;
        font-size: 12px;
    }
    .support-ticket-status-btn {
        font-size: 12px;
    }
    .support-ticket-table-data.table {
        margin: 0;
    }
    .create-ticket-inner {
        padding: 16px;
    }
    .create-ticket-form .form-group input,
    .create-ticket-form .form-group textarea {
        font-size: 14px;
    }
    .create-ticket-form .form-group.select-form {
        width: 100%;
    }
    .create-ticket-form .form-group.select-form select {
        font-size: 14px;
    }
    .create-ticket-form .form-group textarea {
        height: 120px;
    }
    .create-ticket-form-upload-image label {
        font-size: 14px !important;
    }
    .create-ticket-form-upload-image .image-item img {
        width: 64px;
        max-width: 64px;
        height: 64px;
    }
    .create-ticket-form-upload-image .upload-image-list {
        display: inline-flex;
    }
    .ticket-converstion-widget {
        width: 100%;
    }
    .ticket-converstion-info-body {
        width: 100%;
    }
    .ticket-converstion-main {
        padding: 16px;
    }
    .ticket-converstion-info-body-images {
        display: grid;
        gap: 8px;
        grid-template-columns: repeat(4, 1fr);
    }
    .ticket-converstion-info-body-single-img img {
        width: 50px;
        height: 50px;
        max-width: 50px;
    }
    .ticket-converstion-widget.admin-conversation {
        margin-left: 24px;
    }
    .ticket-converstion-widget-info-head {
        display: block;
    }
    .ticket-converstion-info-body-images.admin-images
        .ticket-converstion-info-body-single-img
        img {
        height: 120px;
    }
    .ticket-converstion-navigation textarea {
        font-size: 14px;
        padding: 24px 114px 24px 16px;
    }
    .ticket-c-navigation-emoji i,
    .ticket-c-navigation-attachment i {
        font-size: 18px;
    }
    .ticket-c-navigation-send-btn {
        width: 40px;
        height: 40px;
        line-height: 46px;
        font-size: 18px;
    }
    .tooltip {
        transform: translate3d(183px, 246.6px, 0px) !important;
    }
    .manage-profile-card {
        padding: 16px;
        margin: 0;
    }
    .manage-profile-img img {
        width: 90px;
        height: 90px;
    }
    .manage-profile-img-btn .theme-btn.secondary-btn {
        font-size: 12px;
    }
    .manage-profile-form-widget {
        width: 100%;
        padding: 16px;
    }
    .manage-profile-form-widget .theme-btn {
        height: 44px;
    }
    .manage-profile-form .form-group input {
        height: 44px;
        font-size: 14px;
    }

    .dashboard-head-widget.style-2 {
        position: relative;
        top: 0;
    }

    .manage-profile-form-button .theme-btn {
        height: 48px;
        padding: 12px;
        line-height: 14px;
        font-size: 14px;
    }
    .manage-profile-form-widget .otp-input input {
        width: 40px !important;
        height: 40px !important;
        margin-right: 6px !important;
        padding: 4px;
    }
    .manage-profile-form-success-icon img {
        width: 80px;
        height: 80px;
    }
    .form-input-with-input-text input {
        padding-right: 120px !important;
    }
    .change-password-card {
        margin: 0;
    }
    .change-password-form .form-group input {
        height: 44px;
    }
    .form-group-password i {
        font-size: 20px;
    }

    .manage-profile-tab .list-group-item {
        padding: 12px 32px;
        font-size: 14px;
        white-space: nowrap;
    }
    .mp-tab-menu.tab-menu {
        margin: 0;
    }
    .mp-tab-menu.tab-menu {
        margin-bottom: 12px;
    }
    .change-password-form-btn.theme-btn {
        height: 48px;
        line-height: 14px;
        padding: 12px;
        font-size: 14px;
    }
    .user-sidebar-menu-list li a {
        display: flex;
        line-height: 24px;
        font-size: 14px;
    }
    .user-sidebar-menu-list li i {
        font-size: 18px;
        top: 2px;
    }
    .order-details-info-order-id-parent span {
        display: block;
        font-size: 16px;
    }
    .order-details-info-status {
        display: inline-block;
    }
    .order-details-info-order-id-parent {
        font-size: 18px;
    }
    .order-d-info-single-card-title {
        font-size: 16px;
    }
    .order-d-info-single-card-head-icon img {
        width: 26px;
        height: 26px;
    }
    .order-d-info-single-card-data-list li {
        font-size: 14px;
    }
    .order-d-info-tracking-card {
        margin-top: 24px;
    }
    .order-d-info-single-card {
        margin-top: 24px;
    }
    .order-d-info-tracking-card-content .theme-btn {
        font-size: 14px;
    }
    .order-details-info-head-button {
        display: flex;
        align-items: center;
        white-space: nowrap;
        margin-top: 12px;
    }
    .order-details-info-card-group {
        display: block;
    }
    .order-details-info-head {
        display: block;
    }
    .order-summary-head-title {
        font-size: 16px;
    }
    .order-summary-table-data.table thead tr th {
        font-size: 14px;
    }
    .order-summary-total {
        float: initial;
        width: 100%;
    }
    .order-summary-total-list li {
        font-size: 14px;
    }
    .order-summary-total-list .total-price {
        font-size: 16px;
    }
    .dashboard-head-widget-btn {
        margin-top: 0px;
    }
    .dashboard-head-widget.style-2 .dashboard-head-widget-btn {
        margin-top: 0;
        white-space: nowrap;
    }
    .order-tracking-card-icon img {
        width: 64px;
        height: 64px;
    }
    .order-tracking-card-info h6 {
        font-size: 18px;
    }
    .order-tracking-card-group {
        grid-template-columns: repeat(1, 1fr);
    }
    .order-status-area {
        margin-top: 40px;
    }
    .order-status-s-head-title {
        font-size: 20px;
    }
    .order-status-card-group {
        grid-template-columns: repeat(1, 1fr);
    }
    .single-order-status-card.card-2 {
        margin-top: 32px;
    }
    .single-order-status-card {
        padding: 24px;
        margin-top: 32px;
    }
    .single-order-status-card.card-4 {
        margin-top: 40px;
    }
    .single-order-status-card::before {
        display: none;
    }
    .order-status-card-icon,
    .order-status-card-icon-cross {
        width: 50px;
        height: 50px;
        line-height: 55px;
        font-size: 20px;
        min-width: 50px;
    }
    .order-status-card-info {
        margin-top: 12px;
    }
    .pagination-area {
        padding: 0;
    }
    .pagination-list {
        text-align: center;
    }
    .add-new-address-widget {
        right: 0;
    }
    .add-coupon-code-widget {
        right: 0;
    }
    .create-ticket-form-upload-image .image-item {
        width: 64px;
    }
    .reward-hero-inner {
        display: block;
    }
    .reward-hero-banner img {
        width: 100%;
        height: 116px;
        object-fit: contain;
    }
    .reward-hero-card-info h4 {
        font-size: 24px;
    }
    .reward-hero-card-info p {
        font-size: 14px;
    }
    .reward-hero-card-icon {
        width: 68px;
        height: 68px;
        line-height: 68px;
        min-width: 68px;
    }
    .reward-hero-card-icon img {
        width: 44px;
        height: 44px;
    }
    .reward-achivements {
        margin: 48px 0px 0px 0px;
    }
    .reward-a-card-top p {
        font-size: 14px;
    }
    .reward-a-card-icon img {
        width: 32px;
        height: 32px;
    }
    .reward-a-card-bottom span {
        font-size: 14px;
    }
    .reward-a-card-bottom {
        margin-top: 38px;
    }
    .reward-a-card::before {
        width: 12px;
        height: 12px;
        bottom: 38px;
    }
    .reward-a-card:nth-child(1)::before {
        left: 6px;
    }
    .reward-a-card:nth-child(4)::before {
        right: -6px;
    }
    .reward-hero-banner {
        margin: 24px 0px;
    }
    .reward-hero {
        padding: 24px;
    }
    .order-summary-btn .theme-btn {
        padding: 4px 12px;
        font-size: 14px;
    }
    .order-summary-btn .theme-btn i {
        display: none;
    }

    .order-group-info li {
        font-size: 14px;
    }

    .od-package-item {
        gap: 12px;
        grid-template-columns: repeat(1, 1fr);
    }

    .od-package-info p {
        margin-top: 8px;
    }

    .od-info-head-duration li {
        font-size: 14px;
        margin-top: 4px;
    }
    .od-package-head {
        display: block;
    }
    .od-package-head-right {
        margin-top: 4px;
        margin-left: 48px;
    }

    .od-package-footer {
        display: block;
    }
    .multivendor-order-summery {
        display: block;
    }
    .od-package-head-right {
        margin-top: 4px;
        margin-left: 48px;
    }

    .od-package-fotter-right {
        margin-top: 18px;
    }

    .order-details-info-order-id-parent {
        display: block;
    }
    .order-details-info-status {
        display: inline-block;
    }

    .order-details-info-head .od-package-head-right {
        margin: 0;
        margin-top: 4px;
    }

    .od-package-head-right a {
        font-size: 14px;
        margin-top: 4px;
    }

    .pr-review-body {
        grid-template-columns: repeat(1, 1fr);
    }

    .pr-review-head-left {
        width: 100%;
    }

    .pr-review-head-right {
        width: 100%;
        text-align: left;
        margin-top: 8px;
    }

    .pr-review-product-info {
        margin-top: 8px;
    }

    .pr-review-head {
        display: block;
    }
    .pr-review-product {
        display: block;
    }
    .pr-review-body {
        gap: 12px;
    }

    .od-package-item-list {
        gap: 6px;
        align-items: center;
        background: var(--ud-white-color-3);
        padding: 8px 12px;
        border-radius: 6px;
    }
    .single-od-package-item p {
        font-size: 12px;
        white-space: nowrap;
    }

    .cancelled-order-modal.write-review-modal .modal-dialog {
        max-width: 100%;
        width: 100%;
    }

    .can-order-select-option .form-check-label {
        font-size: 14px;
        position: relative;
        padding-left: 44px;
    }

    .cancelled-order-modal .form-check-input {
        position: absolute;
        left: 12px;
        top: 20px;
    }

    .can-order-modal-form .form-group textarea {
        height: 124px;
    }
    .create-sell-form {
        padding: 24px;
    }
}

/*============================================================================================
	End User Dashboard Body CSS
==============================================================================================*/

/*==============================================================================================
	  Faq Area
================================================================================================*/
.faq-area {
    margin-top: 40px;
}
.single-faq-widget {
    border-radius: 8px;
    background: #ffffff;
    box-shadow: 0px 16px 48px #20262e0d;
    margin-bottom: 24px;
}
.single-faq-widget:last-child {
    margin: 0;
}
.single-faq-widget .accordion-button {
    background: var(--ud-white-color);
    padding: 14px 52px 14px 20px;
    border-radius: 8px;
    border: 1px solid var(--ud-border-color) !important;
    color: var(--ud-title-color);
}
.single-faq-widget .accordion-button h3 {
    font-weight: 600;
    font-size: 18px;
    line-height: 30px;
    margin: 0;
    display: -webkit-box;
    overflow: hidden;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}
.single-faq-widget .accordion-button:not(.collapsed) {
    box-shadow: none;
    border-bottom: 1px solid transparent !important;
    border-radius: 8px 8px 0px 0px !important;
}
.single-faq-widget .accordion-button:focus {
    box-shadow: none;
}
.faq-inner-body {
    padding: 4px 20px 20px 20px;
    border: 1px solid var(--ud-border-color) !important;
    border-top: 0 !important;
    border-radius: 0px 0px 8px 8px;
}
.faq-inner-body-text,
.faq-inner-body p,
.faq-inner-body span {
    margin: 0;
    line-height: 24px;
    letter-spacing: -0.3px;
    font-size: 16px;
    color: var(--ud-hints-color);
    display: block;
}
.faq-inner-body a {
    color: var(--ud-secondary-color) !important;
    font-weight: 600;
    text-decoration: underline !important;
}
.faq-inner-list {
    margin-top: 8px;
}
.faq-inner-body ul {
    margin-top: 8px;
}
.faq-inner-body ul li {
    line-height: 200%;
    color: var(--ud-hints-color);
}
.single-faq-widget .accordion-button::after {
    background-image: none;
    transform: none;
    position: absolute;
    right: 20px;
    content: "\f36d";
    font-family: "uicons-solid-straight";
    width: 28px;
    height: 28px;
    border-radius: 100%;
    background: var(--ud-white-color-3);
    text-align: center;
    line-height: 28px;
    color: var(--ud-primary-color);
    font-size: 20px;
    transition: all 0.4s ease;
}
.single-faq-widget .accordion-button:not(.collapsed)::after {
    background: var(--ud-primary-color);
    color: var(--ud-white-color);
    content: "\f32f";
}

/* Responsive CSS */
@media only screen and (min-width: 768px) and (max-width: 991px) {
    .single-faq-widget .accordion-button h3 {
        font-size: 16px;
    }

    .order-details-info-status {
        display: inline-block;
    }
    .od-info-head-duration li {
        font-size: 16px;
    }

    .single-od-package {
        overflow: hidden;
    }
}

@media only screen and (max-width: 767px) {
    .single-faq-widget .accordion-button h3 {
        font-size: 15px;
        line-height: 22px;
        -webkit-line-clamp: 2;
    }
    .faq-inner-body ul li {
        font-size: 15px;
    }
    .faq-inner-body-text,
    .faq-inner-body p,
    .faq-inner-body span {
        font-size: 15px;
    }
}

/*============================================================================================
	End Faq Area
==============================================================================================*/
