/* Event Zaar Multi-Step Form Styles */

/* Custom Purple Theme Variables */
:root {
  --primary-purple: #6f42c1;
  --primary-purple-light: #8b5cf6;
  --primary-purple-dark: #5a32a3;
  --secondary-purple: #e9ecef;
  --accent-purple: #f8f9fa;
  --text-dark: #2d3748;
  --text-muted: #6c757d;
  --border-color: #e2e8f0;
  --success-color: #28a745;
  --shadow-sm: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
  --shadow-md: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
}

/* Stepper Component Styles */
.stepper-wrap {
  background: #fff;
  border-top: 1px solid #EDEDED;
  /* border-radius: 12px; */
  /* padding: 12px 0; */
  position: sticky;
  top: 80px;
  font-family: var(--primary-font-family);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.04);
  z-index: 1;

  @media (max-width:767px) {
    top: 70px;
    overflow: hidden;
  }

  /* &::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    background: linear-gradient(180deg, rgba(79, 76, 255, 1) 0%, rgba(47, 46, 153, 0) 100%);
    width: 100%;
    height: 100%;
    opacity: .05;
  } */
}

.stepper-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  flex-wrap: wrap;
  /* gap: 70px; */
  /* max-width: 724px; */
  /* margin: 0 auto; */

  /* @media (max-width:767px) {
    max-width: 343px;
  } */
}

.stepper-item {
  /* display: flex;
  align-items: center; */
  /* flex: 1; */
  position: relative;
  max-width: fit-content;
  text-align: center;
  max-width: 25%;
  width: 100%;
  padding: 14px 0;

  &:last-of-type {
    &::before {
      display: none !important;
    }
  }


  &.active {
    clip-path: polygon(0% 0%, 95% 0%, 100% 50%, 95% 100%, 0% 100%);
    background-color: #4F4CFF;

    @media (max-width:991px) {
      clip-path: polygon(0% 0%, 88% 0%, 100% 50%, 88% 100%, 0% 100%);
    }

    @media (max-width:767px) {
      clip-path: polygon(0% 0%, 83% 0%, 100% 50%, 83% 100%, 0% 100%);
    }

    &.opacity-50 {
      clip-path: none;
    }

    ~.stepper-item {
      &::before {
        content: '';
        position: absolute;
        top: 50%;
        right: 0;
        border: solid rgba(0, 0, 0, 0.08);
        border-width: 0 1px 1px 0;
        display: inline-block;
        padding: 20px;
        transform: translateY(-50%) rotate(-45deg);
      }
    }

    &::before {
      display: none;
    }
  }
}

/* .stepper-item:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -80px;
  transform: translateY(-50%);
  width: 70px;
  height: 3px;
  background: linear-gradient(90deg, #4f4cff00 0%, #4F4CFF 100%);
  z-index: 1;
  transition: background-color 0.3s ease;
  opacity: .46;

  @media (max-width:767px) {
    right: -72px;
  }
} */

.stepper-item.completed:not(:last-child)::after {
  background-color: rgba(255, 255, 255, 0.8);
}

.step-number {
  /* width: 26px;
  height: 26px; */
  /* border-radius: 50%; */
  /* display: flex;
  align-items: center;
  justify-content: center; */
  font-weight: 600;
  font-size: 10px;
  line-height: 10px;
  position: relative;
  z-index: 2;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  color: #A2A2A2;
  margin-bottom: 5px;

  /* background-color: #fff; */
  /* box-shadow: 0 0 4px rgba(0, 0, 0, 0.05); */
  @media (max-width:767px) {
    margin-bottom: 0;
  }
}

.step-number.active {
  /* background-color: white;
  background: linear-gradient(180deg, #4F4CFF 0%, #8302F3 100%); */
  color: #fff;
  /* transform: scale(1.1); */
  /* box-shadow: none; */
}

.step-number.completed {
  /* background-color: rgba(255, 255, 255, 0.9); */
  /* color: var(--primary-purple); */
  /* border-color: rgba(255, 255, 255, 0.9); */
}

.step-title {
  font-size: 14px;
  line-height: 14px;
  font-weight: 500;
  color: rgba(0, 0, 0, 0.7);
  /* margin-left: 10px; */

  @media (max-width:767px) {
    display: none;
  }
}

.step-title.active {
  color: #fff;
}


.step-form-wrap {
  background-color: #fff;
  padding: 70px 0;
  position: relative;
  z-index: 0;
  overflow: hidden;

  &>.container {
    &::before {
      content: '';
      position: absolute;
      bottom: -250px;
      left: -351px;
      background-color: #F3F302;
      opacity: .1;
      border-radius: 20px;
      filter: blur(214px);
      width: 913px;
      height: 587px;
      z-index: -1;
    }
  }

  &::before,
  &::after {
    content: '';
    position: absolute;
    top: -100px;
    left: -200px;
    background-color: #8302F3;
    opacity: .1;
    border-radius: 20px;
    filter: blur(214px);
    width: 913px;
    height: 587px;
    z-index: -1;
  }

  &::after {
    background-color: #4F4CFF;
    top: unset;
    left: unset;
    right: -100px;
    bottom: 20px;
  }

  @media (max-width:767px) {
    padding: 40px 0;
  }

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

  .step-form-container {
    padding: 30px;
    border: 1px solid #EDEDED;
    border-radius: 16px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.03);
    /* overflow: hidden; */
    max-width: 900px;
    margin: 0 auto;
    background-color: #fff;

    @media (max-width:767px) {
      padding: 20px;
    }
  }


  .form-group {
    margin-bottom: 20px;

    input.dp__pointer {
      height: 45px;
      border-radius: 8px !important;
    }

    .form-label {
      font-size: 14px;
      line-height: 18px;
      margin: 0 0 8px;
      color: #333333;
      font-weight: 600;
      text-transform: capitalize;
    }

    .form-control,
    .form-select {
      padding: 11px 12px;
      font-size: 14px;
      line-height: 21px;
      font-weight: 600;
      color: rgba(0, 0, 0, 0.8);
      border: 1px solid rgba(0, 0, 0, 0.1);
      border-radius: 8px !important;
      box-shadow: none;
      outline: none;
      height: 45px;

      &:focus {
        border-color: #4F4CFF;
        box-shadow: 0 0 9px rgba(79, 76, 255, 0.55);
      }
    }

    textarea.form-control {
      height: 132px;
    }
  }

  .step-content {
    padding: 0;
    margin-top: 20px;

    &.step-content4 {
      @media (max-width:991px) {
        &>.row {
          gap: 20px;
        }
      }
    }
  }
}

/* Form Container Styles */
/* .step-form-container {
  background: white;
  border-radius: 12px;
  box-shadow: var(--shadow-md);
  overflow: hidden;
} */


.step-top-title {
  margin-bottom: 20px;

  h2 {
    margin: 0;
  }

  p {
    margin: 10px 0 0;
  }
}

.step-title-main {
  color: var(--text-dark);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.step-subtitle {
  color: var(--text-muted);
  font-size: 1rem;
  margin: 0;
}

/* Form Controls */
.form-group {
  margin-bottom: 1.5rem;
}

.form-label {
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

.form-control {
  border: 2px solid var(--border-color);
  border-radius: 8px;
  padding: 0.75rem 1rem;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.form-control:focus {
  border-color: var(--primary-purple);
  box-shadow: 0 0 0 0.2rem rgba(111, 66, 193, 0.25);
}

.form-select {
  border: 2px solid var(--border-color);
  border-radius: 8px;
  padding: 0.75rem 1rem;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.form-select:focus {
  border-color: var(--primary-purple);
  box-shadow: 0 0 0 0.2rem rgba(111, 66, 193, 0.25);
}

/* Service Cards */
.service-card {
  border: 2px solid var(--border-color);
  border-radius: 12px;
  padding: 1.5rem;
  margin-bottom: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  background: white;
}

.service-card:hover {
  border-color: var(--primary-purple-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.service-card.selected {
  border-color: var(--primary-purple);
  background: linear-gradient(135deg, rgba(111, 66, 193, 0.05) 0%, rgba(139, 92, 246, 0.05) 100%);
}

.service-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--primary-purple) 0%, var(--primary-purple-light) 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.service-title {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

.service-description {
  color: var(--text-muted);
  font-size: 0.875rem;
  line-height: 1.5;
}

.service-price {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary-purple);
  margin-top: 1rem;
}

/* Navigation Buttons */
.btn-navigation {
  padding: 0.75rem 2rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  border: none;
}

.btn-primary-custom {
  background: linear-gradient(135deg, var(--primary-purple) 0%, var(--primary-purple-light) 100%);
  color: white;
}

.btn-primary-custom:hover {
  background: linear-gradient(135deg, var(--primary-purple-dark) 0%, var(--primary-purple) 100%);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.btn-secondary-custom {
  background: var(--secondary-purple);
  color: var(--text-dark);
  border: 2px solid var(--border-color);
}

.btn-secondary-custom:hover {
  background: var(--border-color);
  border-color: var(--primary-purple);
}

/* Review Section */
.review-section {
  background: var(--accent-purple);
  border-radius: 8px;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
}

.review-title {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.review-item {
  /* display: flex; */
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--border-color);
}

.review-item:last-child {
  border-bottom: none;
}

.review-label {
  font-weight: 600;
  color: var(--text-dark);
}

.review-value {
  color: var(--text-muted);
}

/* Payment Section */
.payment-method {
  border: 2px solid var(--border-color);
  border-radius: 8px;
  padding: 1rem;
  margin-bottom: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.payment-method:hover {
  border-color: var(--primary-purple-light);
}

.payment-method.selected {
  border-color: var(--primary-purple);
  background: rgba(111, 66, 193, 0.05);
}

/* Responsive Design */
@media (max-width: 768px) {

  /* .stepper-wrapper {
    flex-direction: column;
    gap: 1rem;
  } */

  /* .stepper-item:not(:last-child)::after {
    display: none;
  } */

  .service-card {
    padding: 1rem;
  }
}

/* Animation Classes */
.fade-enter-active,
.fade-leave-active {
  transition: opacity 0.3s ease;
}

.fade-enter-from,
.fade-leave-to {
  opacity: 0;
}

.slide-enter-active,
.slide-leave-active {
  transition: all 0.3s ease;
}

.slide-enter-from {
  transform: translateX(30px);
  opacity: 0;
}

.slide-leave-to {
  transform: translateX(-30px);
  opacity: 0;
}

.step-container {
  animation: fadeInUp 0.5s ease-out;
}

.review-section {
  margin-bottom: 2rem;
}

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}

.review-card {
  background: white;
  border: 1px solid #e9ecef;
  border-radius: 12px;
  padding: 1.5rem;
}

.detail-item {
  display: flex;
  margin-bottom: 0.75rem;
}

.detail-item label {
  font-weight: 600;
  color: #495057;
  min-width: 120px;
  margin-right: 1rem;
}

.detail-item span {
  color: #6c757d;
}

.service-item {
  display: flex;
  align-items: center;
  padding: 0.75rem;
  border: 1px solid #e9ecef;
  border-radius: 8px;
  margin-bottom: 0.5rem;
}

.service-icon {
  color: #667eea;
  margin-right: 1rem;
  width: 20px;
}

.service-info {
  display: flex;
  justify-content: space-between;
  width: 100%;
}

.service-name {
  font-weight: 500;
}

.service-price {
  color: #667eea;
  font-weight: 600;
}

.package-item {
  display: flex;
  justify-content: space-between;
  padding: 0.5rem 0;
  border-bottom: 1px solid #e9ecef;
}

.package-name {
  font-weight: 500;
}

.package-price {
  color: #667eea;
  font-weight: 600;
}

.no-services {
  text-align: center;
  color: #6c757d;
  padding: 2rem;
}

.price-summary {
  background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
  border-radius: 12px;
  padding: 1.5rem;
}

.price-breakdown {
  background: white;
  border-radius: 8px;
  padding: 1rem;
}

.price-item {
  display: flex;
  justify-content: space-between;
  padding: 0.5rem 0;
}

.price-total {
  display: flex;
  justify-content: space-between;
  font-weight: 600;
  font-size: 1.1rem;
}

.total-amount {
  color: #667eea;
}

.text-purple {
  color: #667eea;
}

.btn-purple {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border: none;
  color: white;
  transition: all 0.3s ease;
}

.btn-purple:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(102, 126, 234, 0.4);
  color: white;
}

.btn-outline-purple {
  border: 1px solid #667eea;
  color: #667eea;
  transition: all 0.3s ease;
}

.btn-outline-purple:hover {
  background: #667eea;
  color: white;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}


/* Step 2 */

.product-items-box {
  padding: 20px;
  border-radius: 10px;
  position: relative;
  overflow: hidden;
  z-index: 1;
  background-color: #fff;

  /* &::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    background: linear-gradient(180deg, rgba(79, 76, 255, 1) 0%, rgba(47, 46, 153, 0) 100%);
    width: 100%;
    height: 100%;
    opacity: .05;
    z-index: -1;
  } */

  .product-items-tabs {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
    gap: 10px;

    @media (max-width:767px) {
      flex-direction: column;
      gap: 8px;
    }

    .search-box {
      position: relative;
      min-width: 277px;

      @media (max-width:767px) {
        max-width: 100%;
        width: 100%;
      }

      i {
        position: absolute;
        left: 12px;
        top: 50%;
        transform: translateY(-50%);
        color: rgba(0, 0, 0, 0.7);
      }

      .form-control {
        padding-left: 40px;
      }
    }

    .form-control {
      padding: 11px 12px;
      font-size: 14px;
      line-height: 21px;
      font-weight: 600;
      color: rgba(0, 0, 0, 0.8);
      border: 1px solid rgba(0, 0, 0, 0.1);
      border-radius: 8px !important;
      box-shadow: none;
      outline: none;

      &:focus {
        border-color: #4F4CFF;
        box-shadow: 0 0 9px rgba(79, 76, 255, 0.55);
      }
    }
  }

  .nav.nav-pills {
    border-radius: 60px;
    background-color: #fff;
    overflow: hidden;
    padding: 4px;
    border: 1px solid #F6F5FF;
    margin-bottom: 0;
    max-width: fit-content;
    flex-wrap: nowrap;
    overflow: auto;

    @media (max-width:767px) {
      border-radius: 18px;
      width: 100%;
      max-width: 100%;
      width: 100%;
      text-align: center;
    }

    .nav-link {
      border-radius: 38px;
      font-size: 14px;
      line-height: 18px;
      font-weight: 600;
      font-family: var(--primary-font-family);
      color: rgba(0, 0, 0, 0.7);
      padding: 10px 16px;
      white-space: nowrap;

      &.active {
        background-color: #4F4CFF;
        color: #ffff;
        box-shadow: 0 0 4px rgba(0, 0, 0, 0.05);
      }
    }
  }
}


.cm-address-box {
  padding: 20px;
  border: 1px solid #EDEDED;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.03);
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 20px;
  display: flex;
  background-color: #FFF;

  .location-icon {
    width: 48px;
    min-width: 48px;
    margin-right: 12px;
    height: 48px;
    overflow: hidden;
    background-color: #F3F5F7;
    border-radius: 50%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;

    i {
      font-size: 22px;
      color: #4F4CFF;
    }
  }

  h5 {
    font-size: 18px;
    line-height: 20px;
    font-weight: bold;
    color: #000;
    margin: 0;
  }

  p {
    margin: 10px 0 0;
    font-size: 14px;
    line-height: 20px;
    font-weight: 600;
    color: rgba(0, 0, 0, 0.7);
    max-width: 600px;
  }
}

.order-card-head {
  list-style-type: none;
  margin: 0;
  font-family: var(--primary-font-family);
  padding: 0;
  max-height: 530px;
  overflow: auto;

  &>li {
    margin: 0 0;
    padding: 0;

    &:not(:last-of-type) {
      margin-bottom: 10px;
    }
  }

}

.order-card {
  padding: 18px;
  border-radius: 16px;
  border: 1px solid #EDEDED;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.03);
  display: flex;
  align-items: center;
  background-color: #fff;
  font-family: var(--primary-font-family);

  @media (max-width:767px) {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }

  .oc-img {
    width: 103px;
    min-width: 103px;
    height: 103px;
    border-radius: 8px;
    border: 1px solid rgba(0, 0, 0, 0.06);
    overflow: hidden;
    margin-right: 10px;
    background-color: #fff;

    img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center;
      border: 7px solid #ffff;
    }
  }

  .oc-desc {
    margin-right: 10px;

    h5 {
      font-size: 18px;
      line-height: 20px;
      font-weight: 600;
      color: #000;
      margin: 0;
    }

    p {
      font-size: 16px;
      color: rgba(0, 0, 0, 0.7);
      margin: 10px 0 0;
    }

    .oc-price {
      display: block;
      margin-top: 26px;
      font-size: 18px;
      line-height: 20px;
      font-weight: 600;
      color: #000;

      sub {
        font-size: 14px;
        font-weight: 600;
        color: rgba(0, 0, 0, 0.7);
        bottom: 0;
      }
    }
  }

  .primary-cta {
    white-space: nowrap;
  }

  .oc-cta {
    display: flex;
    align-items: center;
    margin-left: auto;

    .oc-add {
      border: 1px solid rgba(0, 0, 0, 0.1);
      border-radius: 56px;
      overflow: hidden;
      display: flex;
      align-items: center;
      min-width: 110px;
      max-width: 110px;
      justify-content: space-between;
      padding: 14px;
      margin-right: 18px;
      white-space: nowrap;

      button {
        font-size: 9px;
        font-weight: 600;
        color: #000;
        padding: 0;
        border: none;
        outline: none;
        width: 18px;
        height: 18px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 20px;
        line-height: 18px;
        background-color: transparent;

        &:hover {
          color: #4F4CFF;
        }
      }

      span {
        font-size: 16px;
        line-height: 16px;
        font-weight: 600;
        color: #000;
      }
    }

    @media (max-width:767px) {
      flex-direction: column;
      align-items: unset;
      width: 100%;
      margin: 0;
      gap: 8px;

      .primary-cta {
        max-width: 100%;
        width: 100%;
      }

      .oc-add {
        max-width: 100%;
        margin: 0;
      }
    }
  }
}

.order-right-box {
  padding: 30px;
  overflow: hidden;
  border: 1px solid #EDEDED;
  border-radius: 16px;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.03);
  font-family: var(--primary-font-family);
  position: sticky;
  top: 100px;
  background-color: #fff;

  .primary-cta {
    max-width: 100%;
    width: 100%;
    margin-top: 130px;
  }

  .or-title {
    font-size: 20px;
    line-height: 22px;
    font-weight: bold;
    color: #000;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    margin: 0;
  }

  .or-product-footer {

    .or-subtotal {
      padding-top: 20px;
      border-top: 1px solid rgba(0, 0, 0, 0.1);
      display: flex;
      justify-content: space-between;
      padding-bottom: 20px;

      h6 {
        font-size: 16px;
        line-height: 18px;
        font-weight: 600;
        color: #000;
        margin: 0;
      }

      .or-total {
        text-align: right;

        p {
          font-size: 18px;
          line-height: 20px;
          color: #000;
          margin: 0;
          font-weight: 600;
        }

        span {
          font-size: 14px;
          font-weight: 500;
          line-height: 20px;
          color: rgba(0, 0, 0, 0.7);
          display: block;
          margin-top: 6px;
        }

      }

    }
  }
}

.or-product-head {
  list-style-type: none;
  padding: 21px 0 30px;
  margin: 0;

  .or-product {
    &:not(:last-of-type) {
      margin-bottom: 20px;
    }

    display: flex;
    justify-content: space-between;

    h6 {
      font-size: 16px;
      line-height: 18px;
      font-weight: 600;
      color: #000;
      margin: 0;
    }

    p {
      font-size: 14px;
      line-height: 20px;
      font-weight: 500;
      color: rgba(0, 0, 0, 0.7);
      margin: 6px 0 0;
    }

    span {
      font-size: 18px;
      line-height: 20px;
      font-weight: 600;
      color: #000;
      margin: 0 0 0 12px;
    }
  }
}

.order-right-box.review-box {
  margin: 0 auto;
  height: 100%;

  .primary-cta {
    margin-top: 20px;
    max-width: fit-content;
    margin-left: auto;
  }

  .or-subtotal.or-total {
    border-radius: 10px;
    overflow: hidden;
    padding: 20px;
    position: relative;
    overflow: hidden;
    border: 1px solid #F8F8F8 !important;

    &::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      background: linear-gradient(180deg, #4F4CFF 0%, #302e9900 100%);
      width: 100%;
      height: 100%;
      opacity: .05;
    }
  }
}

.order-right-box.ob-box {
  .ob-form {
    padding: 20px;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    z-index: 1;

    &::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      background: linear-gradient(180deg, #4F4CFF 0%, #302e9900 100%);
      width: 100%;
      height: 100%;
      opacity: .05;
      z-index: -1;
    }

    .form-group {
      margin-bottom: 20px;

      .input-group-merge {
        position: relative;

        .input-group-text {
          position: absolute;
          right: 0;
          top: 50%;
          transform: translateY(-50%);
          border: none;
          border-radius: 0;
          background-color: transparent;

          i {
            font-size: 17px;
          }
        }
      }

      .form-label {
        font-size: 14px;
        line-height: 18px;
        margin: 0 0 8px;
        color: #333333;
        font-weight: 600;
        text-transform: capitalize;
      }

      .form-control {
        padding: 11px 12px;
        font-size: 14px;
        line-height: 21px;
        font-weight: 600;
        color: rgba(0, 0, 0, 0.8);
        border: 1px solid rgba(0, 0, 0, 0.1);
        border-radius: 8px !important;
        box-shadow: none;
        outline: none;
        background-color: #fff;

        &:focus {
          border-color: #4F4CFF;
          box-shadow: 0 0 9px rgba(79, 76, 255, 0.55);
        }
      }
    }
  }

  .primary-cta {
    max-width: fit-content;
    margin-top: 0;
  }
}


.thankyou-sec {
  background-color: #fff;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  z-index: 1;
  padding: 40px 0;

  &::before,
  &::after {
    content: "";
    position: absolute;
    top: 0;
    left: -250px;
    width: 558px;
    height: 558px;
    background-color: #8302F3;
    filter: blur(80px);
    z-index: -1;
    border-radius: 0;
    opacity: .04;
  }

  &::after {
    background-color: #4F4CFF;
    left: unset;
    right: -20px;
    top: unset;
    bottom: 0;
    width: 558px;
    height: 558px;
  }

  .thankyou-desc {
    max-width: 770px;
    margin: 0 auto;

    h1 {
      font-weight: bold;
      font-family: var(--secondry-font-family);
      margin: 0;

      @media (min-width:768px) {
        font-size: 60px;
        line-height: 78px;
      }

      span {
        color: #4F4CFF;
      }
    }

    p {
      margin: 20px 0 0;
      color: rgba(0, 0, 0, 0.8);
    }

    .primary-cta {
      max-width: fit-content;
      margin: 40px auto 0;

      @media (max-width:767px) {
        margin-top: 28px;
      }
    }

    .thankyou-img {
      width: 120px;
      height: 120px;
      margin-bottom: 40px;

      @media (max-width:767px) {
        width: 80px;
        height: 80px;
        margin-bottom: 20px;
      }

      img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
      }
    }
  }
}

.order-list-wrap {
  padding: 20px;
  position: relative;
  z-index: 1;
  border-radius: 10px;
  overflow: hidden;

  &::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    background: linear-gradient(180deg, #4F4CFF -60%, #302e9900 164%);
    width: 100%;
    height: 100%;
    opacity: .05;
    z-index: -1;
  }

  .ol-filter {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 20px;

    .form-group {
      margin-bottom: 0;
      max-width: 290px;
      width: 100%;

      .input-group-merge {
        position: relative;

        .input-group-text {
          position: absolute;
          right: 0;
          top: 50%;
          transform: translateY(-50%);
          border: none;
          border-radius: 0;
          background-color: transparent;

          i {
            font-size: 17px;
          }
        }
      }

      .form-label {
        font-size: 14px;
        line-height: 18px;
        margin: 0 0 8px;
        color: #333333;
        font-weight: 600;
        text-transform: capitalize;
      }

      .form-control,
      .form-select {
        padding: 11px 12px;
        font-size: 14px;
        line-height: 21px;
        font-weight: 600;
        color: rgba(0, 0, 0, 0.8);
        border: 1px solid rgba(0, 0, 0, 0.1);
        border-radius: 8px !important;
        box-shadow: none;
        outline: none;
        background-color: #fff;
        width: 100%;

        &:focus {
          border-color: #4F4CFF;
          box-shadow: 0 0 9px rgba(79, 76, 255, 0.55);
        }
      }
    }
  }

  .vue3-easy-data-table {
    border: 1px solid #EDEDED;
    padding: 16px;
    background-color: #fff;
    box-shadow: 0 4px 34px rgba(0, 0, 0, 0.03);
    border-radius: 16px;

    .vue3-easy-data-table__header {
      display: none;
    }

    tr {
      border: none;
    }

    td {
      border-bottom: 1px solid #EDEDED !important;
      padding: 0 !important;
    }
  }

  .order-card {
    background-color: transparent;
    border-radius: 0;
    box-shadow: none;
    border: none;
    padding: 16px 0;
  }

  @media (min-width:768px) {
    .oc-cta {
      margin-left: auto;
    }
  }


  .order-status {
    margin-top: 11px;

    @media (max-width:767px) {
      margin: 11px auto 0;
    }
  }
}

.main-title {
  font-size: 26px;
  line-height: 34px;
  font-weight: bold;
  font-family: var(--secondry-font-family);
  margin: 0 0 30px;
  color: #000;
}

.order-status {
  border-radius: 30px;
  padding: 6px 16px;
  background-color: rgba(0, 0, 0, 0.05);
  color: #000;
  font-size: 14px;
  line-height: 15px;
  font-weight: 600;
  text-align: center;
  max-width: fit-content;
  display: block;
  text-transform: capitalize;
  letter-spacing: 1px;

  &.inprogress {
    background-color: #FCF7F3;
    color: #AC611FCC;
  }

  &.pending {
    background-color: #FFA5001A;
    color: #CC8400CC;
  }

  &.complete {
    background-color: #10B9811A;
    color: #0C885FCC;
  }

  &.open {
    background-color: #2563eb1a;
    color: #124cc9cc;
  }

  &.reject {
    background-color: #ff3f1d1a;
    color: #ff3f1dcc;
  }
}

.order-title-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 30px;

  h3 {
    margin: 0;
  }

  .cta-box {
    display: flex;
    align-items: center;
  }
}

.oc-detail {
  padding: 20px;
  background-color: #fff;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.03);
  border: 1px solid #EDEDED;
  border-radius: 16px;
  overflow: hidden;
  height: 100%;
  font-family: var(--primary-font-family);

  h5 {
    font-size: 16px;
    font-weight: bold;
    color: #000;
    line-height: 18px;
    margin-bottom: 10px;
  }

  i {
    width: 30px;
    height: 30px;
    background-color: #fff;
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 0 4px rgba(0, 0, 0, 0.05);
    font-size: 20px;
    line-height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #4F4CFF;
    margin-bottom: 9px
  }

  ul {
    list-style-type: none;
    padding: 0;
    margin: 0;

    li {
      font-size: 14px;
      font-weight: 600;
      line-height: 15px;
      color: #000;

      &:not(:last-of-type) {
        margin-bottom: 8px;
      }

      span {
        font-weight: 500;
      }
    }
  }
}

.od-table {
  background-color: #fff;
  border: 1px solid #EDEDED;
  border-radius: 16px;
  overflow: hidden;
  margin-top: 26px;
  margin-bottom: 40px;

  .vue3-easy-data-table {
    border: none !important;
  }

  h4 {
    font-size: 18px;
    font-weight: bold;
    font-family: var(--secondary-font-family);
    line-height: 22px;
    color: #000;
    padding: 20px;
    margin: 0;
  }

  thead {
    background-color: #F8F9F9;

    tr {
      background-color: #F8F9F9;
      border: none;
      border: none;

      th {
        background-color: #F8F9F9 !important;
        border: none !important;
        font-size: 16px;
        font-weight: 700;
        font-family: var(--secondary-font-family);
        padding: 16px !important;
        color: #000 !important;
        line-height: 20px;
      }
    }
  }

  tbody {
    tr {
      td {
        font-size: 15px;
        font-weight: 500;
        line-height: 18px;
        color: rgba(0, 0, 0, 0.8);
        border-bottom-color: #0000000F !important;

        img {
          width: 60px;
          height: 60px;
          border-radius: 4px;
          object-fit: cover;
          object-position: center;
        }
      }
    }
  }
}

.cn-card {
  padding: 30px;
  border-radius: 10px;
  overflow: hidden;
  font-family: var(--primary-font-family);
  position: relative;
  z-index: 1;

  .star-rating {
    display: flex !important;
    align-items: center;
    gap: 8px !important;
    margin-right: 10px;
  }

  .star-rating-wrap {
    display: flex;
    align-items: center;

    small {
      font-size: 16px;
      line-height: 26px;
      font-weight: 500;
      color: rgba(0, 0, 0, 0.7);
      font-family: var(--primary-font-family);
      margin: 0;
    }

  }

  &::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    background: linear-gradient(180deg, #4F4CFF -60%, #302e9900 164%);
    width: 100%;
    height: 100%;
    opacity: .05;
    z-index: -1;
  }

  h5 {
    font-size: 18px;
    line-height: 20px;
    font-weight: 600;
    color: #000;
    margin: 0 0 20px;
  }

  p {
    font-size: 16px;
    font-weight: 500;
    line-height: 26px;
    color: rgba(0, 0, 0, 0.7);
    margin: 0;
  }

  .form-group {
    margin: 16px 0 20px;

    .form-control,
    .form-select {
      padding: 11px 12px;
      font-size: 14px;
      line-height: 21px;
      font-weight: 600;
      color: rgba(0, 0, 0, 0.8);
      border: 1px solid rgba(0, 0, 0, 0.1);
      border-radius: 8px !important;
      box-shadow: none;
      outline: none;
      height: 45px;
      background-color: #fff;

      &:focus {
        border-color: #4F4CFF;
        box-shadow: 0 0 9px rgba(79, 76, 255, 0.55);
      }
    }

    textarea.form-control {
      height: 132px;
    }
  }

  .cr-text {
    margin-top: 20px;
  }

}


.n-label {
  font-size: 14px;
  line-height: 15px;
  font-weight: 500;
  color: #828282;
  display: block;
  margin: 0 0 10px;
}

.nl-wrap {
  list-style-type: none;
  padding: 0;

  &>li {
    &:not(:last-of-type) {
      margin-bottom: 10px;
    }
  }
}

.cn-card.notification-list {
  padding: 20px 16px;
  display: flex;
  /* justify-content: space-between; */
  font-family: var(--primary-font-family);

  @media (max-width:767px) {
    flex-direction: column;
    gap: 10px;
  }

  i {
    color: #4F4CFF;
    background-color: #FFFFFF;
    width: 30px;
    min-width: 30px;
    margin-right: 12px;
    height: 30px;
    border-radius: 5px;
    box-shadow: 0 0 4px rgba(0, 0, 0, 0.04);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    line-height: 20px;
  }

  h5 {
    font-size: 18px;
    font-weight: bold;
    line-height: 20px;
    color: #000;
    font-family: var(--primary-font-family);
    margin: 0;
  }

  p {
    margin: 7px 0 0;
    font-size: 16px;
    line-height: 26px;
    font-weight: 500;
    color: rgba(0, 0, 0, 0.7);
  }

  span.date {
    font-size: 14px;
    line-height: 15px;
    font-weight: 500;
    color: #828282;
    display: block;
    margin-left: auto;
    padding-left: 16px;

    @media (max-width:767px) {
      text-align: right;
    }
  }
}

.profile-list {
  padding: 16px 20px;
  list-style-type: none;
  border: 1px solid #EDEDED;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.04);
  overflow: hidden;
  border-radius: 16px;
  margin: 0;

  li {
    &:not(:last-of-type) {
      border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    }

    a {
      padding: 13px 16px;
      font-size: 16px;
      font-weight: 600;
      color: #000;
      line-height: 18px;
      background-color: transparent;
      border-radius: 8px;
      display: flex;
      align-items: center;
      margin: 4px 0;

      &.active {
        background-color: #F6F7F9;

        i {
          color: #4F4CFF !important;
        }
      }

      .fa-angles-right {
        font-size: 12px;
        line-height: 12px;
        color: #000;
      }

      i {
        font-size: 20px;
        width: 24px;
        height: 24px;
        min-width: 24px;
        margin-right: 10px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: rgba(0, 0, 0, 0.7);
      }
    }
  }
}


.pd-form-wrap {
  padding: 20px 30px;
  background-color: #fff;
  border-radius: 16px;
  border: 1px solid #EDEDED;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.03);

  .pd-title {
    padding: 0 0 20px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);

    h5 {
      margin: 0;
      font-size: 18px;
      line-height: 23px;
      font-weight: bold;
      font-family: var(--secondary-font-family);
      color: #000;
    }
  }

  .primary-cta {
    margin-top: 30px;
  }

  .pd-form {
    width: 100%;

    .form-group {
      margin: 0 0 20px;

      .form-label {
        font-size: 14px;
        line-height: 18px;
        margin: 0 0 8px;
        color: #333333;
        font-weight: 600;
        text-transform: capitalize;
      }

      .form-control,
      .form-select {
        padding: 11px 12px;
        font-size: 14px;
        line-height: 21px;
        font-weight: 600;
        color: rgba(0, 0, 0, 0.8);
        border: 1px solid rgba(0, 0, 0, 0.1);
        border-radius: 8px !important;
        box-shadow: none;
        outline: none;
        height: 45px;
        background-color: #fff;

        &:focus {
          border-color: #4F4CFF;
          box-shadow: 0 0 9px rgba(79, 76, 255, 0.55);
        }
      }

      textarea.form-control {
        height: 132px;
      }
    }
  }

  .pd-wrap {
    margin-top: 30px;
    display: flex;

    @media (max-width:767px) {
      flex-direction: column;
    }

    .input-file {
      width: 36px;
      height: 36px;
      border-radius: 50%;
      background-color: #fff;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05);
      border: 1px solid #EDEDED;
      position: absolute;
      bottom: 3px;
      right: 22px;
      overflow: hidden;
      cursor: pointer;

      input {
        position: absolute;
        top: 0;
        left: 0;
        z-index: 9;
        opacity: 0;
        width: 36px;
        height: 36px;
      }

      i {
        font-size: 16px;
        line-height: 16px;
        color: #4F4CFF;
      }
    }
  }

  .pd-profile {
    width: 200px;
    height: 200px;
    min-width: 200px;
    margin-right: 40px;
    position: relative;

    @media (max-width:767px) {
      margin: 0 auto 30px;
    }

    img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center;
      border-radius: 50%;
    }
  }
}

.support-left-box {
  background-color: #fff;
  height: 100%;
  max-height: calc(100vh - 80px);
  overflow: auto;

  h5 {
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-left: 0;
    border-top: 0;
    padding: 27px 40px;
    font-size: 20px;
    line-height: 26px;
    font-weight: bold;
    font-family: var(--secondary-font-family);
    color: #000;
    background-color: #fff;
    margin: 0;
    display: flex;
    align-items: center;

    @media (min-width:768px) {
      position: fixed;
      width: 33.33333333%;
    }
  }

  ul {
    margin: 0;
    padding: 0;
    list-style-type: none;

    @media (min-width:768px) {
      padding-top: 80px;
    }

    li {
      border-bottom: 1px solid rgba(0, 0, 0, 0.1);
      cursor: pointer;

      &.active-ticket {
        border-color: #4542FF;
        box-shadow: 0 4px 34px rgba(69, 66, 255, 0.05) !important;
      }
    }
  }

  .st-card {
    padding: 30px 35px;
    font-family: var(--primary-font-family);

    h4 {
      display: flex;
      align-items: center;
      justify-content: space-between;
      font-size: 18px;
      line-height: 20px;
      font-weight: 600;
      margin: 0;
      color: #000;
    }

    p {
      overflow: hidden;
      text-overflow: ellipsis;
      display: -webkit-box;
      -webkit-line-clamp: 1;
      -webkit-box-orient: vertical;
    }

    p,
    span.date {
      font-size: 16px;
      line-height: 18px;
      font-weight: 500;
      color: rgba(0, 0, 0, 0.7);
      margin: 10px 0 0;
    }

    span.date {
      display: block;
      margin: 8px 0 0;
      display: flex;
      align-items: center;

      span {
        font-size: 14px;
        gap: 6px;
      }
    }
  }
}

.chat-box-wrap {
  background-color: #F5F5F5;
  height: 100%;
  max-height: calc(100vh - 80px);

  @media (max-width:767px) {
    max-height: calc(100vh - 220px);
  }

  h5 {
    background-color: #fff;
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-left: 0;
    border-top: 0;
    padding: 27px 40px;
    font-size: 20px;
    line-height: 26px;
    font-weight: bold;
    font-family: var(--secondary-font-family);
    color: #000;
    margin: 0;

    @media (min-width:768px) {
      position: fixed;
      width: 66.66666667%;
    }

    @media (max-width:767px) {
      padding: 11px 16px;
    }
  }
}

.chat-box-area {
  height: 100%;
  overflow: auto;

  @media (min-width:768px) {
    padding: 80px 0 0;
  }

  .form-group {
    margin-bottom: 20px;
    width: 100%;

    .form-control,
    .form-select {
      padding: 11px 20px;
      font-size: 14px;
      line-height: 21px;
      font-weight: 600;
      color: rgba(0, 0, 0, 0.8);
      border: 1px solid rgba(0, 0, 0, 0.1);
      border-radius: 38px !important;
      box-shadow: none;
      outline: none;
      height: 45px;

      &:focus {
        border-color: #4F4CFF;
        box-shadow: 0 0 9px rgba(79, 76, 255, 0.55);
      }
    }

    textarea.form-control {
      height: 132px;
    }
  }

  .ct-input {
    padding: 20px 30px;
    position: sticky;
    bottom: 0;
    width: 100%;
    background: #f5f5f5;
    margin-top: auto;

    @media (max-width:767px) {
      padding: 18px 16px;
    }

    form {
      display: flex;
      align-items: center;

      .primary-cta {
        margin-left: 16px;

        @media (max-width:767px) {
          width: 45px;
          min-width: 45px;
          height: 45px;
          padding: 10px;
          margin-left: 10px;

          i {
            margin-left: 0 !important;
          }
        }

        i {
          line-height: normal;
        }
      }
    }
  }

  .messagesContainerWrap {
    display: flex;
    flex-direction: column;
    height: 100%;

    .messagesContainer {
      padding: 30px;
      margin: 0;
      list-style-type: none;

      @media (max-width:767px) {
        padding: 30px 16px;
      }

      .message-item {
        margin-bottom: 30px;
        display: flex;
        font-family: var(--primary-font-family);
        max-width: 65%;
        word-break: break-all;

        @media (max-width:767px) {
          max-width: 95%;
        }



        .chat-profile {
          width: 38px;
          min-width: 38px;
          height: 38px;
          border-radius: 50%;
          background-color: #FECF39;
          font-size: 16px;
          line-height: 18px;
          font-weight: 500;
          text-align: center;
          display: flex;
          align-items: center;
          justify-content: center;
          margin: 0 8px 0 0;
        }

        .ct-wrap {
          .ct {
            padding: 10px 12px;
            background-color: #fff;
            border-radius: 8px;
            box-shadow: 0 4px 4px rgba(0, 0, 0, 0.04);
            margin-bottom: 8px;

            p {
              font-size: 16px;
              font-weight: 500;
              line-height: 22px;
              color: rgba(0, 0, 0, 0.7);
              margin: 0;


              @media (max-width:767px) {
                font-size: 14px;
              }
            }
          }

          small {
            font-size: 14px;
            line-height: 15px;
            font-weight: 500;
            color: #828282;
          }
        }

        &.message-item-sender {
          flex-direction: row-reverse;
          margin-left: auto;

          .chat-profile {
            background-color: #8302F3;
            color: #fff;
            margin: 0 0 0 8px;
          }

          .ct-wrap {
            .ct {
              background-color: #4542FF;
              color: #fff;

              p {
                color: #fff;
              }
            }

            small {
              text-align: right;
              margin-left: auto;
              display: block;
            }
          }
        }
      }
    }
  }
}

.chat-wrap {
  min-height: calc(100vh - 75px);

  @media (max-width:767px) {
    min-height: calc(100vh - 223px);
  }
}

.nt-action {
  display: flex;
  align-items: center;
  gap: 16px;

  @media (max-width:767px) {
    position: absolute;
    top: 20px;
    right: 10px;
  }
}

.notification-table {
  border: none !important;

  thead {
    display: none;
  }

  tr {
    &:hover {
      background-color: transparent !important;
      cursor: default !important;

      td {
        background-color: transparent !important;
        cursor: default !important;

      }
    }

    td,
    th {
      border: none !important;
      background-color: transparent !important;
      cursor: default !important;
      padding: 0 !important;
    }
  }
}


.bg-gradient {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid #F8F8F8;

  &::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    background: linear-gradient(180deg, #4F4CFF 0%, #302e9900 100%);
    width: 100%;
    height: 100%;
    opacity: .05;
    z-index: -1;
  }
}

.page-heading {
  min-height: calc(100vh - 78px);
}

.btn-id {
  width: 24px;
  height: 24px;
  text-align: center;
  vertical-align: middle;
  font-size: 20px;
  line-height: 20px;
  font-weight: 600;
  padding: 0;
  color: #000;
  background: #f7f7ff;
  border: none;
}

.pi {
  height: 100px;
  object-fit: cover;
  width: 100%;
}

.support-order-no {
  font-size: 16px;
  font-weight: 400;
  margin-top: 6px;
  color: #566a7f;
}

input[type="time"] {
  background: url("data:image/svg+xml;utf8,<svg fill='gray' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M12 2a10 10 0 1 0 10 10A10 10 0 0 0 12 2Zm1 11h-4a1 1 0 0 1 0-2h3V7a1 1 0 0 1 2 0v5a1 1 0 0 1-1 1Z'/></svg>") no-repeat right 10px center;
  background-size: 18px;
  padding-right: 35px;
  position: relative;
}

input[type="time"]::-webkit-calendar-picker-indicator {
  opacity: 0;
  width: 100%;
  height: 20px;
  cursor: pointer;
  position: absolute;
}