.site-dashboard {
    padding-top: 44px;
    padding-bottom: 104px;
}

/* Dashboard Navigation */
.site-dashboard .dashboard_nav {
    background: #fff;
    border-radius: 24px;
    border: 1px solid var(--color-gray-04);
    padding: 24px;
}

.site-dashboard .dashboard_nav .navigation_info {
    padding-bottom: 21px;
    margin-bottom: 19px;
    border-bottom: 1px solid var(--color-gray-04);
    column-gap: 14px;
}

.site-dashboard .dashboard_nav .navigation_info .user_avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--color-gray-05);
    padding: 2px;
}

.site-dashboard .dashboard_nav .navigation_info .user_avatar svg {
    border-radius: 50%;
}

.site-dashboard .dashboard_nav .navigation_info .user_info {
    display: flex;
    flex-direction: column;
    row-gap: 6px;
    line-height: 1;
}

.dashboard_nav .navigation_info .user_info .user_info_name {
    color: var(--color-main-black);
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 0;
}

.dashboard_nav .navigation_info .user_info .user_info_welcome {
    color: var(--color-gray-01);
    font-size: 10px;
    font-weight: normal;
    margin-bottom: 0;
}

.dashboard_nav .navigation_menu li a {
    padding: 13px 9px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    color: var(--color-main-black);
    font-size: 14px;
    font-weight: 400;
    border-radius: 14px;
    transition: all ease 300ms;
    margin-bottom: 3px;
    column-gap: 16px;
}

.dashboard_nav .navigation_menu li a.active,
.dashboard_nav .navigation_menu li a:hover {
    background: var(--color-main-black);
    color: #fff;
}

.dashboard_nav .navigation_menu li a.active svg path,
.dashboard_nav .navigation_menu li a:hover svg path {
    stroke: #fff;
}

/* Dashboard Content */
.dashboard_content_title {
    background: var(--color-gray-06);
    height: 64px;
    margin-bottom: 12px;
    color: var(--color-main-black);
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    font-size: 14px;
    font-weight: bold;
    border-radius: 16px;
}

.dashboard_content_title svg {
    margin-left: 8px;
}

.dashboard_content_title svg:hover path {
    fill: var(--color-main-tint-1);
}

/* Dashboard Orders Content */
.choose_orders {
    background: var(--color-main-tint-3);
    border-radius: 14px;
    column-gap: 5px;
    padding: 10px 12px;
    margin-bottom: 24px;
}

.choose_orders .btn-section {
    width: 50%;
    border-radius: 12px;
    font-size: 12px;
    font-weight: normal;
    text-align: center;
    padding: 10px 0;
    color: var(----color-second-black);
    transition: all ease 300ms;
}

.choose_orders .btn-section.active,
.choose_orders .btn-section:hover {
    background: var(--color-main-tint-1);
    color: #fff;
}

.orders section {
    display: none;
}

.orders section.active {
    display: block;
}

.orders section .filters {
    border-bottom: 1px solid var(--color-gray-04);
    margin-bottom: 16px;
    column-gap: 32px;
}

.orders section .filters a {
    display: flex;
    align-items: center;
    justify-content: start;
    column-gap: 6px;
    font-size: 12px;
    color: var(--color-main-black);
    font-weight: normal;
    position: relative;
    padding-bottom: 17px;
}

.orders section .filters a:hover,
.orders section .filters a.active {
    color: var(--color-main-tint-1);
}

.orders section .filters a:hover::before,
.orders section .filters a.active::before {
    width: 100%;
    height: 4px;
    background: var(--color-main-tint-1);
    position: absolute;
    right: 0;
    bottom: -2px;
    content: " ";
    border-radius: 4px;
}

.orders section .filters a .count {
    width: 18px;
    height: 18px;
    display: flex;
    justify-content: center;
    text-align: center;
    color: #fff;
    font-size: 13px;
    font-weight: 400;
    border-radius: 6px;
    background: var(--color-gray-02);
}

.orders section .filters a:hover .count,
.orders section .filters a.active .count {
    background: var(--color-main-tint-1);
}

.orders .orders_list .custom_add_order {
    margin-bottom: 16px;
    border-radius: 16px;
    background: #F3F7FE;
    padding: 10px 16px;
    color: #126CE9;
    font-size: 12px;
    font-weight: normal;
}

.orders .orders_list .custom_add_order .link {
    background: #126CE9;
    border-radius: 14px;
    color: #fff;
    padding: 13px 24px;
    transition: all ease 300ms;
}

.orders .orders_list .custom_add_order .link:hover {
    background: #0e58c0;
}

.orders .orders_list .order {
    padding: 20px 24px;
    border-radius: 24px;
    border: 1px solid var(--color-gray-04);
    margin-bottom: 12px;
}

.orders_list .order .order_top {
    margin-bottom: 24px;
    position: relative;
}

.orders_list .order .order_top_right {
    display: flex;
    flex-direction: column;
    row-gap: 16px;
    line-height: 1;
}

.orders_list .order .order_top_right .order_status {
    background: var(--color-gray-06);
    border-radius: 16px;
    padding: 6px 12px;
    font-size: 11px;
    font-weight: 500;
    width: fit-content;
}

.orders_list .order .order_top_right .order_number {
    font-size: 14px;
    font-weight: bold;
    color: var(--color-main-black);
}

.orders_list .order .order_top_left {
    column-gap: 8px;
}

.orders_list .order .order_top_left img {
    border-radius: 14px;
    width: 60px;
    height: 60px;
}

.orders_list .order .order_top_left .order_tooltip {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    cursor: pointer;
}

.orders_list .order .order_top_left .order_tooltip img {
    width: 100%;
    height: 100%;
    display: block;
    border: 1px solid var(--color-main-tint-1);
    animation: shake-horizontal 0.8s cubic-bezier(0.455, 0.030, 0.515, 0.955) both;
}

.orders_list .order .order_top_left .order_extra_desc {
    position: absolute;
    left: 42px;
    background: #F8F8FC;
    color: #126CE9;
    width: fit-content;
    border-radius: 12px;
    top: -9px;
    padding: 12px 17px;
    font-size: 12px;
    font-weight: normal;
    text-align: justify;
    text-align-last: right;
    max-width: 400px;
    display: none;
}

.orders_list .order .order_top_left .order_extra_desc svg {
    position: absolute;
    top: 14px;
    left: -12px;
    transform: rotate(-90deg);
}

.orders_list .order .order_bottom .order_bottom_right {
    column-gap: 16px;
}

.orders_list .order .order_bottom .order_bottom_right .order_detail {
    font-size: 12px;
    padding-left: 16px;
    border-left: 1px solid #EFF0F8;
    color: var(--color-second-black);
    margin: 0;
}

.orders_list .order .order_bottom .order_bottom_right .order_detail .value {
    letter-spacing: 1px;
    color: var(--color-main-black);
}

.orders_list .order .order_bottom .order_bottom_right .order_detail:last-child {
    border-left: 0;
}

.orders_list .order .order_bottom .order_bottom_left {
    text-align: left;
}

.orders_list .order .order_bottom .order_bottom_left .order_more {
    font-size: 12px;
    font-weight: 500;
    color: var(--color-main-black);
    column-gap: 2px;
}

.orders_list .order .order_bottom .order_bottom_left .order_more:hover {
    color: var(--color-main-tint-1);
}

.orders_list .order .order_bottom .order_bottom_left .order_more:hover svg path {
    stroke: var(--color-main-tint-1);
}

.orders_list .order .order_bottom .order_bottom_left .print_order_more {
    border-radius: 12px;
    padding: 8px 13px;
    background: var(--color-main-tint-3);
    color: var(--color-main-tint-1);
    transition: all ease 300ms;
    line-height: normal;
}

.orders_list .order .order_bottom .order_bottom_left .print_order_more svg path {
    stroke: var(--color-main-tint-1);
}

.orders_list .order .order_bottom .order_bottom_left .print_order_more:hover svg path {
    stroke: #fff;
}

.orders_list .order .order_bottom .order_bottom_left .print_order_more.approve {
    background: var(--color-shop-btn);
    color: #fff;
}

.orders_list .order .order_bottom .order_bottom_left .print_order_more.approve svg path,
.orders_list .order .order_bottom .order_bottom_left .print_order_more.rejected svg path {
    stroke: #fff;
}

.orders_list .order .order_bottom .order_bottom_left .print_order_more.rejected {
    background: #FF0026;
    color: #fff;
}

.orders_list .order .order_bottom .order_bottom_left .print_order_more:hover {
    background: var(--color-main-tint-1);
    color: #fff;
}

.orders_list .order .order_bottom .order_bottom_left .print_order_more.approve:hover {
    background: var(--color-btn-shop-hover-bg);
    color: #fff;
}

.orders_list .order .order_bottom .order_bottom_left .print_order_more.rejected:hover {
    background: #c20420;
    color: #fff;
}

.orders_list .order .order_bottom .order_bottom_left .print_order_more.approve:hover svg path,
.orders_list .order .order_bottom .order_bottom_left .print_order_more.rejected:hover svg path {
    stroke: #fff;
}

.dashboard_content .order_details {
    border-radius: 24px;
    background: #fff;
    border: 1px solid var(--color-gray-04);
    padding: 32px;
}

.dashboard_content .order_details .product {
    padding-bottom: 24px;
    margin-bottom: 24px;
    border-bottom: 1px solid var(--color-gray-04);
    column-gap: 24px;
    position: relative;
}

.dashboard_content .order_details .product .request_return {
    position: absolute;
    left: 0;
    bottom: 24px;
    line-height: 1;
    padding: 14px 17px;
    text-align: center;
    border-radius: 14px;
    color: #FF002A;
    border: 1px solid #FF002A;
    font-size: 12px;
    font-weight: 400;

}

.dashboard_content .order_details .product:last-of-type {
    border-bottom: 0;
    padding-bottom: 0;
}

.dashboard_content .order_details .product:last-of-type .request_return {
    bottom: 0;
}

.dashboard_content .order_details .product .request_return:hover {
    background: var(--color-main-black-hover-bg);
    color: #fff;
    border-color: var(--color-main-black-hover-bg);
}

.dashboard_content .order_details .product .product_image .img-fluid {
    border-radius: 20px;
    width: 60px;
    height: 60px;
    border: 1px solid var(--color-gray-03);
}

.dashboard_content .order_details .product .product_detail_title {
    font-size: 14px;
    font-weight: 500;
    color: var(--color-main-black);
    margin-bottom: 10px;
}

.dashboard_content .order_details .product .product_detail_item {
    font-size: 12px;
    margin-bottom: 19px;
    color: var(--color-second-black);
    font-weight: normal;
}

.dashboard_content .order_details .product .product_detail_item .value {
    color: var(--color-main-black);
    font-weight: 500;
}

.dashboard_content .order_details .product .product_detail_item.price {
    margin-bottom: 0;
}

.dashboard_content .order_details .print_order_details {
    margin-bottom: 24px;
    row-gap: 12px;
    width: 100%;
    column-gap: 17px;
}

.dashboard_content .order_details .print_order_details .print_item {
    flex: 1 1 calc(33.33% - (2 * 17px / 3));
    border: 1px solid var(--color-gray-03);
    background: #fff;
    border-radius: 14px;
    padding: 17px 16px;
    font-size: 12px;
    font-weight: normal;
    color: var(--color-second-black);
    column-gap: 3px;
}

.dashboard_content .order_details .print_order_details .print_item .value {
    color: var(--color-main-black);
    font-weight: 500;
}

.dashboard_content .order_details .print_order_files {
    margin-bottom: 24px;
    column-gap: 10px;
    flex-wrap: wrap;
}

.dashboard_content .order_details .print_order_files a {
    font-size: 12px;
    font-weight: normal;
    background: var(--color-main-tint-1);
    padding: 5px 10px;
    border-radius: 16px;
    color: #fff;
}

.dashboard_content .order_details .print_order_files a:hover {
    background: var(--color-main-tint-hover-bg);
}

.dashboard_content .order_details .order_info_title {
    border-radius: 13px;
    background: var(--color-main-tint-4);
    color: var(--color-main-tint-1);
    padding: 19px 16px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 27px;
}

.dashboard_content .order_details .order_info_details {
    padding-bottom: 19px;
    border-bottom: 1px solid var(--color-gray-04);
    margin-bottom: 24px;
    column-gap: 16px;
    flex-wrap: wrap;
    row-gap: 14px;
}

.dashboard_content .order_details .order_info_details .order_info_details_item {
    margin-bottom: 0;
    font-size: 12px;
    font-weight: normal;
    color: var(--color-second-black);
    border-left: 1px solid var(--color-gray-04);
    width: 18%;
    display: flex;
    flex-direction: column;
    row-gap: 5px;
}

.dashboard_content .order_details .order_info_details .order_info_details_item:last-child {
    border-left: 0;
}

.dashboard_content .order_details .order_info_details .order_info_details_item .value {
    color: var(--color-main-black);
    font-weight: 500;
    letter-spacing: 1px;
}

.dashboard_content .order_details .order_status {
    padding-bottom: 24px;
    border-bottom: 1px solid var(--color-gray-04);
    margin-bottom: 32px;
}

.dashboard_content .order_details .order_status .order_status_title {
    font-size: 12px;
    color: var(--color-second-black);
    font-weight: normal;
}

.dashboard_content .order_details .order_status .order_status_title .value {
    color: var(--color-main-black);
    font-weight: 500;
}

.dashboard_content .order_details .order_status .order_status_text {
    font-size: 12px;
    font-weight: normal;
    margin-bottom: 0;
}

.dashboard_content .order_details .order_status .order_status_progress {
    max-width: 407px;
    margin: 0 auto;
}

.order_details .order_status .order_status_progress .progress-steps {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

.order_details .order_status .order_status_progress .progress-line {
    position: absolute;
    top: 30%;
    left: 0;
    right: 0;
    height: 5px;
    background-color: var(--color-gray-04);
    transform: translateY(-50%);
    z-index: 1;
    width: 100%;
    border-radius: 16px;
}

.order_details .order_status .order_status_progress .progress-line-active {
    position: absolute;
    top: 30%;
    right: 0;
    height: 5px;
    background-color: #28a745;
    transform: translateY(-50%);
    z-index: 2;
    width: 0%;
    transition: width 0.3s ease;
    border-radius: 16px;
}

.order_details .order_status .order_status_progress .step {
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 3;
}

.order_details .order_status .order_status_progress .step:nth-child(4),
.order_details .order_status .order_status_progress .step:nth-child(5) {
    align-items: center;
}

.order_details .order_status .order_status_progress .step:last-child {
    align-items: end;
}

.order_details .order_status .order_status_progress .step .step-circle {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    background: var(--color-gray-04);
}

.order_details .order_status .order_status_progress .step.completed .step-circle {
    background-color: #39D267;
    color: white;
    border: 2px solid #39D267;
}

.order_details .order_status .order_status_progress .step .step-text {
    font-size: 12px;
    color: var(--color-gray-02);
    text-align: right;
    font-weight: normal;
    white-space: nowrap;
    position: absolute;
    right: -26px;
    bottom: -24px;
}

.order_details .order_status .order_status_progress .step:nth-child(4) .step-text {
    right: -19px;
}

.order_details .order_status .order_status_progress .step:nth-child(5) .step-text {
    right: -23px;
}

.order_details .order_status .order_status_progress .step:last-child .step-text {
    right: -24px;
}

.order_details .order_status .order_status_progress .step.completed .step-text {
    color: #28a745;
}

.order_details .order_customer {
    margin-bottom: 43px;
}

.order_details .order_customer .order_customer_info .order_customer_info_item {
    width: 33%;
    display: flex;
    align-items: center;
    justify-content: start;
    font-size: 12px;
    font-weight: normal;
    color: var(--color-second-black);
    margin-bottom: 24px;
    column-gap: 3px;
}

.order_details .order_customer .order_customer_info .order_customer_info_item .value {
    color: var(--color-main-black);
    font-weight: 500;
}

.order_details .order_customer>.order_customer_info_item {
    display: flex;
    align-items: center;
    justify-content: start;
    font-size: 12px;
    font-weight: normal;
    color: var(--color-second-black);
    margin-bottom: 0;
    column-gap: 3px;
}

.order_details .order_customer>.order_customer_info_item .value {
    color: var(--color-main-black);
    font-weight: 500;
}

.order_details .order_post .order_post_tracking_code {
    display: flex;
    align-items: center;
    justify-content: start;
    column-gap: 5px;
    background: #F3F7FE;
    border-radius: 16px;
    padding: 18px 24px;
    margin-bottom: 0;
    color: #126CE9;
    font-size: 12px;
    font-weight: 500;
    width: fit-content;
    line-height: 1;
}

.order_details .order_post .order_post_tracking_code .value {
    color: #000000;
    letter-spacing: 1px;
}

.order_details .order_post .order_post_files {
    column-gap: 14px;
}

.order_details .order_post .order_post_files a {
    border-radius: 16px;
    padding: 17px 24px;
    font-size: 14px;
    font-weight: 400;
    text-align: center;
    line-height: 1;
    transition: all ease 300ms;
}

.order_details .order_post .order_post_files .freight {
    column-gap: 8px;
    justify-content: center;
    color: var(--color-second-black);
    border: 1px solid var(--color-gray-01);
    padding: 14px 24px;
}

.order_details .order_post .order_post_files .freight:hover {
    background: var(--color-main-black-hover-bg);
    color: #fff;
    border-color: var(--color-main-black-hover-bg);
}

.order_details .order_post .order_post_files .freight:hover svg path {
    stroke: #fff;
}

.order_details .order_post .order_post_files .invoice {
    background: var(--color-main-tint-1);
    color: #fff;
}

.order_details .order_post .order_post_files .invoice:hover {
    background: var(--color-main-black-hover-bg);
    color: #fff;
}

/* Dashboard Wishlist Content Styles */
.wishlist_card {
    border-radius: 24px;
    border: 1px solid var(--color-main-tint-3);
    padding: 24px;
    margin-bottom: 12px;
    column-gap: 24px;
    position: relative;
}

.wishlist_card .wishlist_card_remove {
    position: absolute;
    top: 30px;
    left: 24px;
}

.wishlist_card .wishlist_card_remove:hover svg {
    fill: #fff;
}

.wishlist_card .wishlist_card_image .img-fluid {
    border-radius: 18px;
    min-width: 120px;
    min-height: 120px;
}

.wishlist_card .wishlist_card_info {
    display: flex;
    flex-direction: column;
    row-gap: 18px;
}

.wishlist_card .wishlist_card_info .whishlist_card_title {
    margin-bottom: 0;
    font-size: 14px;
    color: var(--color-main-black);
    font-weight: 600;
}

.wishlist_card .wishlist_card_info .wishlist_card_terms {
    display: flex;
    align-items: center;
    justify-content: start;
    column-gap: 7px;
    flex-wrap: wrap;
    row-gap: 5px;
}

.wishlist_card .wishlist_card_info .wishlist_card_terms .wishlist_card_term {
    background: var(--color-main-tint-4);
    border-radius: 16px;
    padding: 5px 12px;
    color: var(--color-main-tint-1);
    font-size: 10px;
    font-weight: normal;
}

.wishlist_card .wishlist_card_info .wishlist_card_status {
    font-size: 14px;
    font-weight: 600;
    color: var(--color-gray-02);
    margin-bottom: 0;
}

.wishlist_card .wishlist_card_info .wishlist_card_price_sale,
.wishlist_card .wishlist_card_info .wishlist_card_price_regular {
    font-size: 14px;
    font-weight: 600;
    color: var(--color-main-black);
    margin-bottom: 0;
}

.wishlist_card_remove_btn,
.remove_address_btn {
    margin: 0 auto;
    display: block;
    background: var(--color-main-tint-1);
    color: #fff;
    padding: 9px 12px;
    border-radius: 12px;
    text-align: center;
}

/* Dashboard Addresses Content Styles */
.roza-modal-address .add_address_title {
    font-size: 13px;
    font-weight: 600;
    color: var(--color-main-black);
    margin-bottom: 16px;
}

.roza-modal-address .list,
#roza-modal-address-edit .list {
    max-height: 250px;
    overflow: hidden;
    overflow-y: auto;
}

.roza-modal-address .list::-webkit-scrollbar,
#roza-modal-address-edit .list::-webkit-scrollbar {
    width: 6px;
}

.roza-modal-address .list::-webkit-scrollbar-track,
#roza-modal-address-edit .list::-webkit-scrollbar-track {
    background: #f1f1f1;
}

.roza-modal-address .list::-webkit-scrollbar-thumb,
#roza-modal-address-edit .list::-webkit-scrollbar-thumb {
    background: #c1c1c1;
    border-radius: 3px;
}

.roza-modal-address .list::-webkit-scrollbar-thumb:hover,
#roza-modal-address-edit .list::-webkit-scrollbar-thumb:hover {
    background: #a8a8a8;
}

.address_cart {
    border: 1px solid var(--color-gray-04);
    border-radius: 16px;
    padding: 16px;
    margin-bottom: 16px;
}

.address_cart:last-of-type {
    margin-bottom: 24px;
}

.address_cart .address_cart_top {
    margin-bottom: 18px;
}

.address_cart .address_cart_top .exactly_address {
    font-size: 12px;
    font-weight: 400;
    color: var(--color-main-black);
}

.address_cart .address_cart_top .remove_address {
    cursor: pointer;
}

.address_cart .address_cart_top .remove_address:hover svg path {
    stroke: var(--color-main-tint-1);
}

.address_cart .address_cart_bottom .address_info {
    column-gap: 23px;
}

.address_cart .address_cart_bottom .address_info .address_info_item {
    column-gap: 7px;
    font-size: 12px;
    font-weight: 400;
    color: var(--color-main-black);
}

.address_cart .address_cart_bottom .address_edit {
    column-gap: 2px;
    color: var(--color-second-black);
    font-size: 12px;
    font-weight: 400;
    padding: 9px 12px;
    border-radius: 12px;
    border: 1px solid #E4E4E9;
    cursor: pointer;
}

.address_cart .address_cart_bottom .address_edit:hover {
    border-color: var(--color-main-tint-1);
    color: var(--color-main-tint-1);
}

.address_cart .address_cart_bottom .address_edit:hover svg path {
    stroke: var(--color-main-tint-1);
}

.has-address {
    background: var(--color-main-tint-1);
    color: #fff;
    font-size: 12px;
    font-weight: normal;
    border-radius: 12px;
    padding: 11px 23px;
    width: fit-content;
    column-gap: 6px;
}

.has-address:hover {
    background: var(--color-main-black-hover-bg);
    color: #fff;
}

/* Dashboard Tickets Content Styles */
.tickets_status {
    column-gap: 12px;
}

.tickets_status .status {
    border-left: 1px solid #E5E5F5;
    font-size: 12px;
    font-weight: 400;
    color: var(--color-main-black);
    display: flex;
    align-items: center;
    column-gap: 6px;
    padding: 6px 0 6px 12px;
}

.tickets_status .status:last-child {
    border: 0;
    padding-left: 0;
}

.tickets_status .status .count {
    background: var(--color-main-tint-1);
    color: #fff;
    border-radius: 6px;
    font-size: 13px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1px 5px;
}

.new_ticket_box {
    margin-bottom: 27px;
    padding: 0 8px;
    margin-top: 16px;
}

.new_ticket_box .new_ticket_box_text {
    font-size: 12px;
    font-weight: 400;
    color: var(--color-main-black);
}

.new_ticket_box .add_ticket {
    display: flex;
    align-items: center;
    justify-content: center;
    background: vaR(--color-main-tint-1);
    color: #fff;
    padding: 11px 21px;
    line-height: 1;
    border-radius: 12px;
    text-align: center;
    font-size: 12px;
    font-weight: normal;
}

.ticket_header {
    background: #fff;
    border: 1px solid var(--color-gray-04);
    border-radius: 16px;
    padding: 20px 36px;
    font-size: 12px;
    font-weight: 600;
    color: var(--color-main-black);
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    text-align: center;
}

.ticket_card {
    padding: 0 36px 18px 36px;
    border-bottom: 1px solid var(--color-gray-04);
    margin-bottom: 18px;
    font-size: 12px;
    font-weight: 400;
    color: var(--color-main-black);
    display: flex;
    align-items: center;
}

/* تنظیم عرض هر ستون */
.ticket_th:nth-child(1),
.ticket_td:nth-child(1) {
    width: 35px;
    text-align: right;
}

.ticket_th:nth-child(2),
.ticket_td:nth-child(2) {
    flex: 1;
    text-align: center;
}

.ticket_th:nth-child(3),
.ticket_td:nth-child(3) {
    width: 90px;
    text-align: center;
}

.ticket_th:nth-child(4),
.ticket_td:nth-child(4) {
    flex: 1;
    text-align: center;
}

.ticket_th:nth-child(5),
.ticket_td:nth-child(5) {
    flex-shrink: 0;
    text-align: left;
}

.ticket_card .ticket_status span {
    background: var(--color-gray-06);
    border-radius: 16px;
    text-align: center;
    padding: 6px 0px;
    font-size: 11px;
    font-weight: normal;
    width: 90px;
    display: inline-block;
}

.ticket_card .ticket_status .status_pending {
    color: #CF9E00;
}

.ticket_card .ticket_status .status_progress {
    color: #126CE9;
}

.ticket_card .ticket_status .status_answered {
    color: #08AC39;
}

.ticket_card .ticket_status .status_closed {
    color: var(--color-gray-01);
}

/* لینک مشاهده */
.ticket_card .ticket_view {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 8px;
    background: #f8f9fa;
    transition: all 0.2s ease;
    text-decoration: none;
}

.ticket_view:hover {
    background: #e9ecef;
}

.ticket_view svg {
    width: 18px;
    height: 18px;
}

/* Dashboard New Ticket Content Styles */
.new_ticket_form {
    background: #fff;
    border-radius: 24px;
    border: 1px solid var(--color-gray-04);
    padding: 40px 53px;
}

.new_ticket_form .form_group {
    margin-bottom: 24px;
}

.new_ticket_form .form_input,
.new_ticket_form .nice-select,
.new_ticket_form textarea {
    background: #fff;
    border: 1px solid var(--color-gray-03);
}

.field-error {
    color: #FF002A;
    font-size: 10px;
    margin-top: 5px;
    display: block;
}

.is-visible .field-error {
    margin-top: 0;
}

.form_input.error,
.nice-select.error,
.textarea.error {
    border-color: #FF002A;
}

/* Dashboard Ticket Details Content Styles */
.ticket_details_container {
    border-radius: 24px;
    background: #fff;
    border: 1px solid var(--color-gray-04);
    padding: 32px;
}

.ticket_details_container .ticket_details_top {
    padding-bottom: 24px;
    margin-bottom: 24px;
    border-bottom: 1px solid var(--color-gray-04);
    display: flex;
    flex-direction: column;
    row-gap: 10px;
}

.ticket_details_container .ticket_details_top .ticket_details_top_title {
    color: var(--color-main-black);
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 0;
}

.ticket_details_container .ticket_details_top .ticket_detials_info {
    margin-bottom: 0;
    font-size: 12px;
    font-weight: normal;
    color: var(--color-second-black);
    column-gap: 5px;
}

.ticket_details_container .ticket_messages {
    display: flex;
    flex-direction: column;
    row-gap: 16px;
    margin-bottom: 32px;
}

.ticket_details_container .ticket_messages .message {
    border-radius: 16px;
    padding: 24px 16px;
    text-align: right;
    font-size: 12px;
    font-weight: normal;
    color: var(--color-main-black);
    max-width: 70%;
}

.ticket_details_container .ticket_messages .chat-message-right {
    background-color: #E6EDFF;
    align-self: flex-start;
}

.ticket_details_container .ticket_messages .chat-message-left {
    background: var(--color-gray-06);
    align-self: flex-end;
}

.ticket_details_container .ticket_messages .message .message-attachments {
    display: flex;
    align-items: center;
    column-gap: 5px;
    margin-top: 10px;
    flex-wrap: wrap;
    row-gap: 5px;
}

.ticket_details_container .ticket_messages .message .message-attachments a {
    column-gap: 5px;
    background: var(--color-main-tint-1);
    color: #fff;
    padding: 5px 10px;
    border-radius: 11px;
    font-size: 12px;
    font-weight: normal;
    transition: all ease 300ms;
}

.ticket_details_container .ticket_messages .message .message-attachments a:hover {
    background: var(--color-main-black);
}

.ticket_details_container .send_message {
    padding: 0 8px;
}

.ticket_details_container .send_message textarea,
.profile_container .form_input {
    background: #fff;
    border: 1px solid var(--color-gray-02);
}

.ticket_details_container .send_message .form_submit {
    max-width: 200px;
}

/* Dashboard Profile Content Styles */
.profile_container {
    border-radius: 24px;
    background: #fff;
    border: 1px solid var(--color-gray-04);
    padding: 32px;
}

.profile_container .nice-select {
    background: #fff;
    border: 1px solid var(--color-gray-02);
}

.mbsc-form-group {
    margin: 0;
}

.mbsc-grid {
    padding: 0;
}

.profile_container .mbsc-row input {
    width: 100%;
}

.mbsc-ios.mbsc-scroller {
    background: #fff;
}

.mbsc-ios.mbsc-scroller-wheel-overlay-bottom {
    background: transparent;
}

.mbsc-ios.mbsc-scroller-wheel-item {
    font-size: 14px;
    font-weight: 400;
    text-align: center;
    border-radius: 10px !important;
}

.mbsc-ios.mbsc-scroller-wheel-item.mbsc-selected {
    background: var(--color-gray-04);
    border-radius: 10px !important;
}

.mbsc-ios.mbsc-scroller-wheel-line {
    background: none !important;
}

.mbsc-popup-header {
    text-align: right !important;
    padding: 0 0 15px 0 !important;
    color: var(--color-main-black) !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    border-color: var(--color-gray-04) !important;
    position: relative;
    overflow: visible !important;
}
.mbsc-popup-header::before{
    width: 58px;
    height: 3px;
    bottom: -2px;
    right: 0;
    content: " ";
    position: absolute;
    background: var(--color-main-tint-1);
    border-radius: 10px;
}
.mbsc-ios.mbsc-popup-body{
    padding: 27px 32px !important;
}

.mbsc-scroller-wheel-item>div>div {
    display: none !important;
    visibility: hidden;
}

.mbsc-ios.mbsc-datetime-month-wheel .mbsc-scroller-wheel-item {
    text-align: center;
}

.mbsc-ios.mbsc-datetime-date-wheel .mbsc-scroller-wheel-item,
.mbsc-ios.mbsc-datetime-day-wheel .mbsc-scroller-wheel-item,
.mbsc-ios.mbsc-datetime-hour-wheel .mbsc-scroller-wheel-item {
    text-align: center;
}

@keyframes shake-horizontal {

    0%,
    100% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }

    10%,
    30%,
    50%,
    70% {
        -webkit-transform: translateX(-3px);
        transform: translateX(-3px);
    }

    20%,
    40%,
    60% {
        -webkit-transform: translateX(3px);
        transform: translateX(3px);
    }

    80% {
        -webkit-transform: translateX(2px);
        transform: translateX(2px);
    }

    90% {
        -webkit-transform: translateX(-2px);
        transform: translateX(-2px);
    }
}