/**************Service Page****************/
:root {
  --sidebar-bg-color: #334155;
  --sidebar-link-hover-color: #1E293B;
  --contant-bg-color: #f8f9fa;
}

input:disabled,
textarea:disabled,
select:disabled,
button:disabled,
input[readonly],
textarea[readonly],
select[readonly],
button[readonly]
{
  background-color: #f5f5f5;
  color: #999;
  border: 1px solid #ccc;
  cursor: not-allowed;
  opacity: 0.6;
}

.page-header {
  display: none;
}

.ys-service-wrapper {
  margin: 0px auto;
  width: 100%;
  max-width: 1140px;
}

.ys-row {
  display: flex;
  flex-wrap: wrap;
  margin-left: -8px;
  margin-right: -8px;
  box-sizing: border-box;
}

[class*="ys-col-"] {
  padding-left: 8px;
  padding-right: 8px;
  box-sizing: border-box;
  width: 100%;
}

@media (min-width: 768px) {
  .ys-col-1 {
    width: 8.3333%;
  }

  .ys-col-2 {
    width: 16.6667%;
  }

  .ys-col-3 {
    width: 25%;
  }

  .ys-col-4 {
    width: 33.3333%;
  }

  .ys-col-5 {
    width: 41.6667%;
  }

  .ys-col-6 {
    width: 50%;
  }

  .ys-col-7 {
    width: 58.3333%;
  }

  .ys-col-8 {
    width: 66.6667%;
  }

  .ys-col-9 {
    width: 75%;
  }

  .ys-col-10 {
    width: 83.3333%;
  }

  .ys-col-11 {
    width: 91.6667%;
  }

  .ys-col-12 {
    width: 100%;
  }
}

@media (max-width: 768px) {
  .ys-service-wrapper {
    padding: 0px 20px;
  }
}

.ys-entry {
  padding: 20px;
  margin: 20px 0px;
  box-shadow: rgba(7, 4, 146, 0.1) 0px 2px 4px, rgba(6, 47, 125, 0.05) 0px 24px 60px, rgba(27, 59, 119, 0.05) 0px 12px 24px;
  border-radius: 12px;
  background-color: rgb(255, 255, 255);
}

.ys-entry h4 {
  margin-top: 0;
  margin-bottom: 2rem;
}

.service-details {
  border: 1px solid rgba(100, 116, 139, 0.2);
  margin-bottom: 14px;
  border-radius: 5px;
  box-shadow: 0 .125rem .25rem rgba(0, 0, 0, .075);
}

.service-title {
  padding: 10px 15px;
  background: #f0f0f0;
}

.service-title h6 {
  margin: 0;
  font-weight: 400;
  font-size: 16px;
  line-height: 20px;
}

.service-meta {
  padding: 15px 15px;
}

.service-meta p {
  font-weight: 700;
  font-size: 16px;
  line-height: 24px;
}

/* qty box */
body .ys-service-wrapper .ys-qty-wrapper {
  display: inline-flex;
  align-items: center;
  border: 1px solid #ccc;
  border-radius: 6px;
  overflow: hidden;
  width: 100%;
  background: #fff;
}

body .ys-service-wrapper .ys-qty-btn {
  width: 36px;
  height: 38px;
  font-size: 20px;
  font-weight: bold;
  color: #333;
  background: #f0f0f0;
  border: none;
  cursor: pointer;
  transition: background 0.2s ease;
  padding: 0rem 0.8rem;
  border-radius: 0;
}

body .ys-service-wrapper .ys-qty-btn:hover {
  background: #e0e0e0;
}


body .ys-service-wrapper .ys-qty-input {
  width: 100%;
  height: 38px;
  border: none;
  text-align: center;
  font-size: 16px;
  font-weight: 500;
  appearance: textfield;
}

/* Remove number arrows (Chrome/Edge) */
body .ys-service-wrapper .ys-qty-input::-webkit-outer-spin-button,
body .ys-service-wrapper .ys-qty-input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}


.delivery-box {
  display: flex;
  align-items: flex-start;
  padding: 16px;
  border: 2px solid #ccc;
  border-radius: 8px;
  background-color: #f9f9ff;
  cursor: pointer;
  transition: border-color 0.3s, background-color 0.3s;
  position: relative;
}

.delivery-box input[type="checkbox"] {
  appearance: none;
  -webkit-appearance: none;
  margin-right: 12px;
  margin-top: 0px;
  width: 18px;
  height: 18px;
  border: 2px solid #333;
  border-radius: 4px;
  background-color: #fff;
  cursor: pointer;
  position: relative;
}

.delivery-box input[type="checkbox"]:checked {
  background-color: #000;
  border-color: #000;
}

.delivery-box input[type="checkbox"]:checked::after {
  content: '';
  position: absolute;
  top: 1px;
  left: 5px;
  width: 5px;
  height: 10px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}


.delivery-content {
  flex: 1;
}

.delivery-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.delivery-header strong {
  display: inline-flex;
}

.delivery-header strong span {
  margin-left: 5px;
}

.price {
  font-weight: bold;
}

.delivery-subtext {
  color: #666;
  font-size: 0.9em;
  margin-top: 10px;
}

.m-more {
  margin: 2rem 0;
}

.ys-tooltip {
  position: relative;
  display: inline-block;
  cursor: pointer;
}

.ys-tooltip .tooltip-text {
  visibility: hidden;
  opacity: 0;
  position: absolute;
  top: -52px;
  left: 0;
  transform: translateX(-50%);
  background-color: black;
  color: white;
  border-radius: 5px;
  padding: 8px 12px;
  transition: opacity 0.3s;
  z-index: 100;
  font-size: 11px;
  width: 200px;
  word-wrap: break-word;
  white-space: normal;
  line-height: 1.2;
}

.ys-tooltip:hover .tooltip-text {
  visibility: visible;
  opacity: 1;
}

body .ys-service-wrapper .sidebar h4 {
  font-size: 20px;
  margin: 0px;
  font-weight: 600;
  margin-bottom: 12px;
}

body .ys-service-wrapper .sidebar .service-total,
body .ys-service-wrapper .sidebar .discount-total,
body .ys-service-wrapper .sidebar .order-summary .meta,
body .ys-service-wrapper .sidebar .order-upsell .meta {
  display: flex;
  -webkit-box-pack: justify;
  justify-content: space-between;
  border-radius: 8px;
  padding: 10px 14px;
  flex-wrap: nowrap;
  background-color: #f0f0f0;
  font-size: 12px;
  gap: 20px;
}

body .ys-service-wrapper .sidebar .service-total p,
body .ys-service-wrapper .sidebar .discount-total p,
body .ys-service-wrapper .sidebar .order-summary .meta p,
body .ys-service-wrapper .sidebar .order-upsell .meta p {
  font-size: 14px;
  line-height: 1.5;
  margin: 0px;
  font-weight: 500;
}

body .ys-service-wrapper .sidebar .order-summary .meta {
  margin-bottom: 0.5rem;
}

body .ys-service-wrapper .sidebar .order-upsell .meta {
  background-color: #ddd;
  margin-bottom: 0.5rem;
}

.wallet-balance,
.order-discount {
  margin-bottom: 10px;
}

.net-total-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding: 8px 0;
}

.delivery-option {
  margin-bottom: 14px;
}

.service-order {
  width: 100%;
  margin-top: 1rem;
}

.ys-remove-btn {
  color: #e74c3c;
  cursor: pointer;
  font-size: 12px;
}

.ys-remove-btn:hover {
  color: #c0392b;
}

.ys-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.ys-modal-content {
  background: #fff;
  padding: 20px;
  border-radius: 6px;
  width: 100%;
  max-width: 480px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
}

.ys-modal textarea {
  width: 100%;
  margin-top: 10px;
  padding: 10px;
  border: 1px solid #ccc;
  resize: vertical;
}

.ys-modal-actions {
  margin-top: 15px;
  text-align: right;
}

/**************Dashboard****************/
.fud-dashboard {
  display: flex;
  min-height: 80vh;
  font-family: sans-serif;
  margin: 1em auto;
  width: 100%;
  min-width: 1140px;
}

.fud-sidebar {
  width: 220px;
  background: var(--sidebar-bg-color);
  color: #fff;
  /* padding: 20px; */
}

.fud-sidebar h3 {
  margin-bottom: 20px;
}

.fud-sidebar ul {
  list-style: none;
  padding: 0;
}

body .fud-sidebar li {
  border-bottom: 1px solid;
}

body .fud-sidebar li a.active {
  background: var(--sidebar-link-hover-color);
}

body .fud-sidebar a {
  color: #fff;
  display: block;
  text-decoration: none;
  font-weight: 700;
  padding: 10px 15px;
}

.fud-sidebar a:hover {
  /* color: #ffd700; */
  background: var(--sidebar-link-hover-color);
}

.fud-content {
  flex: 1;
  padding: 30px;
  padding-top: 0;
  background: var(--contant-bg-color);
}

.dash-action {
  background: var(--sidebar-bg-color);
  text-align: center;
  padding: 15px 10px;
}

.dash-action a {
  text-decoration: none !important;
  color: #fff;
}

.dash-action a:hover {
  color: #fff;
}

.dash-top {
  margin-bottom: 1rem;
}

.onboarding-checklist {
  list-style: none;
  background: #fff;
  padding: 0 10px;
}

.onboarding-checklist li {
  padding: 10px 0px;
  font-size: 15px;
  border-bottom: 1px solid #ddd;
}

.onboarding-checklist li:last-child {
  border-bottom: none;
}

.ys-form-wrapper {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}

.ys-inline-form {
  display: flex;
  align-items: center;
  margin-bottom: 2em;
  gap: 40px;
}

.ys-inline-form span {
  width: 150px;
  /* Same width for all labels */
  display: inline-block;
  font-weight: bold;
}

.ys-inline-form label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.ys-inline-form input[type="number"] {
  padding: 6px;
  width: 215px;
}

.dt-tbl {
  background-color: #fff;
  padding: 15px 10px;
}

.dataTables_length,
.dataTables_filter {
  display: inline-block;
  margin-right: 10px;
  font-size: 14px;
}

.dataTables_length label,
.dataTables_filter label {
  font-weight: normal;
  display: flex;
  align-items: center;
  gap: 5px;
  margin-bottom: 10px;
}

body .dataTables_paginate a.paginate_button {
  border: 1px solid #007bff !important;
  color: #007bff !important;
  padding: 6px 12px;
  margin: 0 2px;
  text-decoration: none;
  font-size: 14px;
  border-radius: 4px;
  cursor: pointer;
  transition: background-color 0.3s ease;

}

body .dataTables_paginate a.paginate_button:hover:not(.disabled) {
  background-color: #007bff !important;
  color: #fff !important;
}

body .dataTables_paginate a.paginate_button.current {
  background-color: #007bff !important;
  color: #fff !important;
  border: 1px solid #007bff !important;
}

body .dataTables_paginate a.paginate_button.disabled {
  border: 1px solid #ccc !important;
  color: #aaa !important;
  background-color: transparent !important;
}

.flex-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 5px 20px;
  background-color: #f5f5f5;
  margin-bottom: 1em;
  padding-right: 5px;
}

body span.danger {
  background: red;
  color: #fff;
  padding: 10px 10px;
  border-radius: 20px;
  font-size: 12px;
}

body span.primary {
  background: blue;
  color: #fff;
  padding: 10px 10px;
  border-radius: 20px;
  font-size: 12px;
}

/* .ticket-section {
  background: #f2f4f8;
  padding: 20px;
  max-width: 800px;
  margin: auto;
  border-radius: 6px;
  font-family: Arial, sans-serif;
} */

.ticket-header {
  text-align: right;
  margin-bottom: 15px;
}

body .ticket-header .new-ticket-btn {
  background-color: #111;
  color: #fff;
  padding: 8px 14px;
  font-size: 14px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  text-decoration: none;
}

body .ticket-header .new-ticket-btn:hover {
  background-color: #111;
  color: #fff;
}

.ticket-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.ticket-item {
  background: #fff;
  padding: 12px 16px;
  border-left: 4px solid #0d6efd;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  border-radius: 4px;
  box-shadow: 0 0 2px rgba(0, 0, 0, 0.05);
  flex-wrap: wrap;
}

.ticket-id {
  font-weight: bold;
  color: #333;
  width: 50px;
}

.ticket-subject {
  color: #007bff;
  text-decoration: none;
  flex-grow: 1;
}

.ticket-status {
  padding: 4px 10px;
  font-size: 13px;
  border-radius: 12px;
  font-weight: 500;
  white-space: nowrap;
}

.ticket-status.awaiting {
  background-color: #fce4e4;
  color: #d8000c;
}

.ticket-status.solved {
  background-color: #e6f4ea;
  color: #2e7d32;
}

.ticket-date {
  font-size: 13px;
  color: #555;
  text-align: right;
  min-width: 80px;
}

/* .ticket-view-wrapper {
  max-width: 800px;
  margin: auto;
  background: #f2f4f8;
  padding: 20px;
  font-family: Arial, sans-serif;
  border-radius: 6px;
} */

.ticket-header-view {
  background: #dfe8f5;
  padding: 12px 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-radius: 4px;
  margin-bottom: 15px;
  font-weight: bold;
}

.ticket-status {
  padding: 4px 10px;
  font-size: 13px;
  border-radius: 12px;
  font-weight: 500;
}

.ticket-message {
  background: #ffffff;
  margin-bottom: 10px;
  border-radius: 4px;
  box-shadow: 0 0 2px rgba(0, 0, 0, 0.05);
}

.message-meta {
  font-size: 14px;
  color: #444;
  margin-bottom: 8px;
  display: flex;
  justify-content: space-between;
  padding: 10px 16px;
  background: #dfe8f5;
}

.message-time {
  text-align: right;
  font-size: 13px;
  color: #888;
}

.message-content {
  padding: 16px;
  font-size: 15px;
  color: #333;
}

.message-content p {
  margin-bottom: 8px;
}

.ticket-reply {
  margin-top: 20px;
  background: #ffffff;
  padding: 15px;
  border-radius: 4px;
  box-shadow: 0 0 3px rgba(0, 0, 0, 0.05);
}


#paypal-button-container {
  margin-top: 1em;
}

.new-ticket .ticket-status {
  display: block;
  margin: 6px 0;
  width: fit-content;
  padding: 7px 10px;
  border-radius: 5px;
}

.servies-view-wrapper .elementor-2094 .elementor-element.elementor-element-518265ff .elementor-heading-title {
  font-size: 25px;
}

.user_login {
  background: #0a0a0a;
  padding: 30px;
  border-radius: 8px;
  width: 400px;
  margin: 50px auto;
  color: white;
}

/* .user_login h2 {
  color: #bfff00;
  text-align: center;
} */

body .ys-input {
  display: block;
  /* ensures full-width and new line */
  width: 100%;
  max-width: 400px;
  padding: 10px 14px;
  margin-bottom: 16px;
  /* spacing below each input */
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 14px;
  line-height: 1.4;
  background-color: #fff;
  transition: all 0.2s ease-in-out;
  box-sizing: border-box;
}

/* Focus state */
body .ys-input:focus {
  border-color: #0073aa;
  /* WP blue */
  box-shadow: 0 0 0 2px rgba(0, 115, 170, 0.2);
  outline: none;
}

/* File input tweaks */
body .ys-input[type="file"] {
  padding: 6px;
}

/* Submit button */
body .ys-submit {
  background: #0073aa;
  color: #fff;
  border: none;
  cursor: pointer;
  font-weight: 600;
  text-transform: uppercase;
  transition: background 0.2s ease-in-out;
}

body .ys-submit:hover {
  background: #005f8d;
}

/* Label styling */
body .ys-form label {
  font-weight: 600;
  display: block;
  margin-bottom: 6px;
  margin-top: 8px;
  font-size: 14px;
}

form.add-fund {
  min-width: 450px;
}

.ys-note {
  font-size: 12px;
  color: #666;
  margin-top: 4px;
}

.ys-error {
  color: red;
  text-align: center;
}

.ys-success {
  color: green;
  text-align: center;
}

.ys-message-content {
  background: #fff;
  padding: 10px;
  /* border-radius: 10px; */
  text-align: left;
  width: -webkit-fill-available;
  position: relative;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  font-size: 20px;
  margin-bottom: 15px;
  font-family: ui-monospace;
}

.success .ys-message-content {
  border-left: 5px solid #28a745;
}

.error .ys-message-content {
  border-left: 5px solid #dc3545;
}

.user_login p,
.ys_register p {
  text-align: center;
  margin-top: 10px;
}



/* .user_login p a {
  color: #bfff00;
} */

.ys_register {
  background: #fff;
  padding: 30px;
  border-radius: 8px;
  width: 400px;
  margin: 50px auto;
  color: black;
}

.ys-flex {
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: space-between;
}

.ys-flex input {
  flex: 1;
}

.user_register {
  width: 100%;
  /* height: 80vh; */
}

.reg_form {
  width: 32%;
  margin: auto;
}

.reg_image {
  background-image: url('register.svg');
  background-size: cover;
  /* cover full area */
  background-position: center;
  background-repeat: no-repeat;
  width: 60%;
  height: 300px;
}

body .ys_register input {
  width: 100%;
  padding: 10px;
  margin-bottom: 10px;
  border-radius: 20px;
  border: 1px solid #ccc;
}

body .ys_register .ys_button {
  background: #1da1f2;
  color: white;
}

.ys_register p a {
  color: #1da1f2;
}

.ys_register h2 {
  text-align: center;
}

.image_box {
  width: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100%;
  text-align: center;

}

.bgblack {
  padding: 2px 6px;
  border-radius: 4px;
  background-color: #000;
  color: #c2ff33;
}

.image_box p {
  margin: 0;
  font-weight: bold;
  font-size: 18px;
}

.ys-popup {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  justify-content: center;
  align-items: center;
}

.ys-popup p {
  margin: 0;
  font-size: 16px;
}

.ys-close {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 20px;
  cursor: pointer;
  color: #333;
}

#menu-1-35a52a6 .menu-item-has-children .sub-menu {
  left: -40px;
}

/*********Dashboard order according**************/

.accordion {
  width: 100%;
  /* background: linear-gradient(180deg, rgba(255, 255, 255, .04), rgba(255, 255, 255, .02));
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 16px;
  padding: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, .25) */
}


.item {
  background: var(--card);
  border: 1px solid rgba(255, 255, 255, .06);
  border-radius: 0px;
  overflow: hidden;
  margin: 8px 0;
}


.acc_header {
  width: 100%;
  text-align: left;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 16px 18px;
  background: #f5f5f5;
  color: inherit;
  border: 0;
  cursor: pointer;
  font-weight: 600
}

.acc_header:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
  border-radius: 10px
}

.chevron {
  transition: transform .3s ease
}

[aria-expanded="true"] .chevron {
  transform: rotate(180deg)
}


.panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease, opacity .25s ease;
  opacity: .6;
}

.panel.open {
  opacity: 1
}

.panel-content {
  padding: 10px 18px;
  background: #fff;
}

.muted {
  color: #9ca3af
}

.divider {
  height: 1px;
  background: rgba(255, 255, 255, .06)
}

#cover-spin {
  position: fixed;
  width: 100%;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background-color: rgba(255, 255, 255, 0.7);
  z-index: 9999;
  display: none;
}

#cover-spin::after {
  content: '';
  display: block;
  position: absolute;
  left: 48%;
  top: 40%;
  width: 40px;
  height: 40px;
  border-style: solid;
  border-color: black;
  border-top-color: transparent;
  border-width: 4px;
  border-radius: 50%;
  -webkit-animation: spin .8s linear infinite;
  animation: spin .8s linear infinite;
}

@-webkit-keyframes spin {
  from {
    -webkit-transform: rotate(0deg);
  }

  to {
    -webkit-transform: rotate(360deg);
  }
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}


@media only screen and (max-width: 600px) {
  .user_register {
    display: block;
  }

  .reg_form,
  .ys_register {
    width: 100%;
    margin: auto;
  }

  .reg_image {
    width: 100%;
    margin-top: 2em;
  }
}