/* sonal css starts here */
@import url('https://fonts.googleapis.com/css2?family=Lexend+Deca&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Inter&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

.editor-wrapper { position: relative; }
.toolbar-container { display: none; margin-bottom: 10px; }

.editor-placeholder .ck-editor__editable_inline {
  position: relative; 
  z-index: 2;
}
.editor-wrapper .ck.ck-editor__editable_inline>:last-child, .cust-wrapper .ck.ck-editor__editable_inline>:last-child{
  margin-top: 0;
}
.editor-wrapper .ck.ck-editor__editable_inline.ck-focused>:last-child {
  margin-top: 10px;
}

.editor-wrapper .ck-placeholder{
    color: #000 !important; 
    font-weight: 500 !important; 
    margin-bottom: 10px !important; 
    padding: 0px 5px !important; 
}
.ck.ck-toolbar {
    background: var(--ck-color-toolbar-background) !important;
    border: 1px solid var(--ck-color-toolbar-border) !important;
    padding: 0 var(--ck-spacing-small) !important;
}
.editor-wrapper .ck-placeholder::before {
  content: attr(data-placeholder);
  color: #000 !important;
  position: absolute;
  top: 6px;
  left: 4px !important;
  pointer-events: none;
  font-weight: 500;
}
.editor-wrapper {
  position: relative;
}
.cust-wrapper .ck-placeholder::before {
  content: attr(data-placeholder);
  color: #707070 !important;
  position: absolute;
  top: 6px;
  left: 10px !important;
  pointer-events: none;
  font-weight: 500;
}
.editor-wrapper .ck.ck-editor__editable_inline {
  padding: 0 !important; 
}

.editor-wrapper .ck.ck-editor__editable_inline.ck-focused {
  padding: 0 10px !important;
}
.ck.ck-balloon-panel.ck-powered-by-balloon .ck.ck-powered-by a{
  display: none !important;
}

/* mail popup */
.mail-container {
      /* max-width: 750px;
      margin: auto;
      background: #fff;
      border-radius: 12px;
      box-shadow: 0 4px 12px rgba(0,0,0,0.1); */
          padding: 10px;
    }
    .mail-container h2 {
      margin-bottom: 20px;
      font-size: 22px;
      text-align: center;
      color: #333;
    }

    /* Field wrapper */
    /* .mail-container .form-row {
      display: flex;
      align-items: flex-start;
      margin-bottom: 12px;
    } */
    .mail-container .form-row label {
      /* width: 60px; */
      font-weight: 600;
      font-size: 14px;
      color: #000;
      /* margin-bottom: 10px; */
    }
    .mail-container .form-row input {
      flex: 1;
      border: none;
      border-bottom: 1px solid #d3d2d2;
      padding: 8px;
      font-size: 14px;
      outline: none;
      transition: border 0.3s;
      width: 100%;
      margin-bottom: 10px;
    }
    .mail-container .form-row input:focus {
      border-bottom: 1px solid var(--GreenDark);
    }

    /* CC/BCC pills */
    .mail-container .tags-container {
      flex: 1;
      display: flex;
      flex-wrap: wrap;
    }
    .mail-container .tag {
      display: inline-flex;
      align-items: center;
      background: #f1f3f5;
      border-radius: 20px;
      padding: 4px 10px;
      margin: 4px 6px 0 0;
      font-size: 13px;
      color: #000;
      margin-bottom: 10px;
    }
    .mail-container .tag span {
      margin-left: 8px;
      cursor: pointer;
      color: #888;
      font-size: 16px;
    }
    .mail-container .tag-input {
      border: none;
      outline: none;
      font-size: 13px;
      padding: 5px;
      margin: 4px 0;
      flex: 1;
      min-width: 150px;
    }
    .mail-container .add-options {
      font-size: 13px;
      /* margin-left: 60px; */
      margin-bottom: 12px;
    }
    .mail-container .add-options a {
      color: var(--GreenDark);
      cursor: pointer;
      margin-right: 15px;
      text-decoration: none;
      font-weight: 500;
    }

    /* Message box */
    .mail-container .form-row textarea {
      width: 100%;
      min-height: 240px;
      border: none;
      resize: vertical;
      font-size: 14px;
      padding: 10px;
      border-radius: 6px;
      border: 1px solid #d3d2d2;
      outline: none;
      transition: background 0.3s, border 0.3s;
    }
    .mail-container .form-row textarea:focus {
      background: #fff;
      border: 1px solid var(--GreenDark);
    }

    /* Upload box */
    .mail-container .upload-box {
          margin-top: 18px;
          padding: 16px;
          border: 2px dashed #ccc;
          border-radius: 8px;
          text-align: center;
          cursor: pointer;
          transition: border 0.3s, background 0.3s;
          font-size: 14px;
          color: #777;
          width: 100%;
          height: 90px;
          display: flex;
          align-items: center;
          justify-content: center;
    }
    .mail-container .upload-box:hover {
      border-color: var(--GreenDark);
      /* background: #f9fff3; */
    }
    .mail-container input[type="file"] {
      display: none;
    }

    /* Attachments */
    .mail-container .attachments {
      margin-top: 12px;
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
    }
    .mail-container .attachment-pill {
      display: inline-flex;
      align-items: center;
      background: #eef5e7;
      color: #000;
      border-radius: 20px;
      padding: 6px 12px;
      font-size: 13px;
      white-space: nowrap;
    }
    .mail-container .attachment-pill input {
      margin-right: 6px;
    }
    .attachment-pill span {
      margin-left: 8px;
      cursor: pointer;
      color: #666;
      font-size: 16px;
    }

    /* Send button */
    .mail-container .send-btn {
      margin-top: 20px;
      background: var(--GreenDark);
      color: #fff;
      font-size: 15px;
      font-weight: 600;
      padding: 12px 24px;
      border: none;
      border-radius: 6px;
      cursor: pointer;
      transition: background 0.3s;
      float: right;
    }
    .mail-container .send-btn:hover {
      background: var(--GreenDark);
    }


/*  */
    .file-upload-common {
         position: relative;
    display: inline-block;
    background: #f0f0f0;
    padding: 6px 12px;
    border-radius: 6px;
    cursor: pointer;
    margin: 0;
    border: 1px solid #ddd;
    }

    .file-upload-common input[type="file"] {
      position: absolute;
      left: 0;
      top: 0;
      width: 100%;
      height: 100%;
      opacity: 0;
      cursor: pointer;
    }

   .avatars-common {
      display: flex;
      align-items: center;
      gap: 6px;
    }

   .avatars-common .avatar {
      width: 32px;
      height: 32px;
      border-radius: 50%;
      object-fit: cover;
      border: 2px solid #fff;
      box-shadow: 0 0 0 1px #ccc;
          margin-left: -12px;
          cursor: pointer;
    }
img.icnsml {
    height: 20px;
}
    /* dnd */
 .payment-summary {
            background: #fff;
            padding: 20px;
            border-radius: 20px;
        }
        
        .payment-row {
            display: flex;
            justify-content: space-between;
            padding: 12px 0;
            border-bottom: 1px solid #e2e8f0;
        }
        
        .payment-row:last-child {
            border-bottom: none;
        }
        
        .total-row {
            font-weight: 700;
            font-size: 18px;
            color: var(--GreenDark);
        }
        
        .add-item-btn {
            display: flex;
            align-items: center;
            gap: 8px;
            color: var(--GreenDark);
            font-weight: 500;
            margin-top: 16px;
            cursor: pointer;
        }

  .product-service-wrapper .product-card {
        background: #fff !important;
        border-radius: 10px;
        padding: 12px;
        margin-bottom: 12px;
        /* box-shadow: 0 2px 5px rgba(0,0,0,0.05); */
        box-shadow:0px 0px 5px rgb(0 0 0 / 13%);
        position: relative;
    }

    .product-service-wrapper .input {
        width: 100%;
        padding: 5px;
        border: none;
        border-bottom: 1px solid #cbc9c9;
        background: transparent;
        font-size: 14px;
        outline: none;
        margin-bottom: 10px;
        font-weight: 500;
    }
    .product-service-wrapper .input::placeholder{
        color:#000
    }

    .product-service-wrapper .input:focus {
        border-bottom: 1px solid var(--GreenDark);
        background: rgba(255,255,255,0.3);
    }

    .product-service-wrapper .row {
        display: flex;
        gap: 8px;
        margin: 0;
    }

    .product-service-wrapper .row .input {
        flex: 1;
        margin-bottom: 0;
    }

    .product-service-wrapper .delete-btn {
        position: absolute; 
        top: 8px;
        right: 8px;
        background: #ff4d4d;
        color: white;
        border: none;
        padding: 4px 10px;
        font-size: 15px;
        border-radius: 4px;
        cursor: pointer;
        z-index: 9;
    }

    .product-service-wrapper .add-btn {
        /* width: 100%; */
        padding: 10px;
        border: none;
        background: var(--GreenDark);
        color: white;
        font-size: 14px;
        border-radius: 6px;
        cursor: pointer;
    }
    @media(max-width:767px){
      .product-service-wrapper .add-btn {
        width: 100%;
      }
    }
    .product-card-form {
        margin-bottom:10px;
    }
    .product-card-form .select2-container {
    width: 100% !important;
    font-size: 14px;
    }

.product-card-form .select2-container--default .select2-selection--single {
    background: transparent;
    border: none;
    border-bottom: 1px solid #ccc;
    border-radius: 0;
    height: 40px;
    display: flex;
    align-items: center;
}
.product-card-form .select2-container--default .select2-selection--single .select2-selection__placeholder {
    color: #000000;
    font-weight: 500;
}

.product-card-form .select2-container--default .select2-selection__rendered {
    color: #000;
    padding-left: 5px;
    padding-right:50px;
    font-weight: 500;
}

.product-card-form .select2-container--default .select2-selection__arrow {
    top: 50%;
    transform: translateY(-50%);
    right: 5px;
    display:none;
}

.req-container {
      max-width: 960px;
      margin: 40px auto;
      padding: 20px;
    }

    .req-card {
      background-color: #ffffff;
      padding: 20px;
      border-radius: 16px;
      /* box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06); */
      box-shadow: 1px 1px 11px rgb(0 0 0 / 12%);
      margin-bottom: 20px;
    }
    @media(max-width:767px){
      .req-card {
      padding: 20px;
    }
    }

    .req-heading {
      font-size: 26px;
      margin-bottom: 4px;
    }

    .req-subtitle {
      color: #6b7280;
      margin-bottom: 24px;
    }

    .req-subtitle strong {
      color: var(--GreenDark);
    }
    .req-stretch{
      flex-wrap: wrap;      
      align-items: stretch;
    }
    .req-stretch .col {
      display: flex;
    }

    .req-stretch .req-summary-card {
      flex: 1;              
      display: flex;
    }
    @media(max-width:767px){
      .req-stretch {
        flex-wrap: wrap;
        align-items: stretch;
        flex-direction: column;
      }
    }

    .req-form-group {
      display: flex;
      flex-wrap: wrap;
      gap: 20px;
      margin-bottom: 20px;
    }

    .req-form-field {
      flex: 1 1 100%;
      display: flex;
      flex-direction: column;
    }

    .req-form-field.half {
      flex: 1 1 calc(50% - 10px);
    }

    .req-form-label {
      font-size: 14px;
      margin-bottom: 6px;
      color: #000;
      font-weight: 500;
    }
    .req-input:focus-visible,
    .req-textarea:focus-visible,
    .req-select:focus-visible {
      outline: none;
    }
    /* .req-input:focus,
    .req-textarea:focus,
    .req-select:focus {
       border: 1px solid var(--GreenDark);
    } */

    .req-input,
    .req-textarea,
    .req-select {
      padding: 10px 12px;
      font-size: 15px;
      border: 1px solid #bfbaba;
      border-radius: 8px;
      background: #ffffff;
      width: 100%;
    }
    .req-input,
    .req-select {
      height:44.5px;
    }
    .req-input-group{
      position: relative;
    display: flex;
    /* flex-wrap: wrap; */
    align-items: stretch;
    width: 100%;
    }
    .req-input-group .input-group-text {
      border: 1px solid #bfbaba;
      border-right: none; /* seamless join with input */
      border-radius: 8px 0 0 8px;
      background: #f8f8f8;
      font-size: 15px;
      padding: 10px 12px;
    }
    .req-input-group .req-input1 { 
    padding: 10px 12px;
    font-size: 15px;
    border: 1px solid #bfbaba;
    border-right: none;
    border-radius: 8px 0 0 8px;
    background: #ffffff;
    width: 100%;
    outline: none;
    box-shadow: none;
  }
  .req-input-group .req-select { 
    padding: 10px 12px;
    font-size: 15px;
    border: 1px solid #bfbaba;
    border-radius: 0 8px 8px 0; /* round only right side */
    background: #ffffff;
    width: 100%;
    outline: none;
    box-shadow: none;
     background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 0.75rem center;
    background-size: 16px 12px;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
  }
    .req-input-group .req-input { 
    padding: 10px 12px;
    font-size: 15px;
    border: 1px solid #bfbaba;
    border-radius: 0 8px 8px 0; /* round only right side */
    background: #ffffff;
    width: 100%;
    outline: none;
    box-shadow: none;
  }
    .req-select{
       background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 0.75rem center;
    background-size: 16px 12px;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    }
    .req-select-sm{
       background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 0.75rem center;
    background-size: 16px 12px;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    padding: 6px 12px;
    font-size: 15px;
      border: 1px solid #bfbaba;
      border-radius: 8px;
      width: 100%;
    }

    @media(max-width:767px){
      .req-select-sm{
    padding: 10px 12px;
    }
    }

    .req-textarea {
      resize: vertical;
      min-height: 100px;
    }

    .req-section-label {
      margin-top: 20px;
      margin-bottom: 12px;
      font-weight: 600;
      color: var(--GreenDark);
      font-size: 16px;
    }

    .req-checkbox-group {
      display: flex;
      /* flex-direction: column; */
      flex-wrap: wrap;
      gap: 10px;
      margin-top: 6px;
    }

    .req-upload-box {
      border: 2px dashed #bfbaba;
      padding: 25px;
      border-radius: 10px;
      text-align: center;
      color: #6b7280;
      cursor: pointer;
      transition: background 0.3s;
      background: #fff;
    }

    /* .req-upload-box:hover {
      background: #f3f4f6;
    } */

    .req-footer {
      text-align: right;
      margin-top: 30px;
    }
  .req-back-btn {
      background-color: #fff;
      color:  var(--GreenDark);
      padding: 12px 26px;
      border: none;
      border-radius: 8px;
      font-size: 15px;
      font-weight: 500;
      cursor: pointer;
      border:  1px solid var(--GreenDark);
      transition: background 0.3s;
    }
    .req-btn {
      background-color: var(--GreenDark);
      color: #ffffff;
      padding: 12px 26px;
      border: none;
      border-radius: 8px;
      font-size: 15px;
      font-weight: 500;
      cursor: pointer;
      transition: background 0.3s;
    }
     .req-save-btn {
      background-color: #fff;
      color: #2ab57d;
      padding: 11px 26px;
      border: none;
      border-radius: 8px;
      font-size: 15px;
      font-weight: 500;
      cursor: pointer;
      transition: background 0.3s;
      border: 1px solid #2ab57d;
    }
    .req-save-btn:hover {
      background-color: #2ab57d;
      color: #fff;
    }
    .req-cancel-btn {
       background-color: #fff;
      color:  #fd625e;
      padding: 12px 26px;
      border: none;
      border-radius: 8px;
      font-size: 15px;
      font-weight: 500;
      cursor: pointer;
      border:  1px solid #fd625e;
      transition: background 0.3s;
    }
    .req-cancel-btn:hover {
      color: #fff;
      background-color: #fd625e;
    }
    .req-delete-btn {
       background-color: #fd625e;
      color:  #fff;
      padding: 12px 26px;
      border: none;
      border-radius: 8px;
      font-size: 15px;
      font-weight: 500;
      cursor: pointer;
      border:  1px solid #fd625e;
      transition: background 0.3s;
    }
    .req-delete-btn:hover {
      background-color: #ee4a45;
    }

    .req-back-btn:hover {
      background-color:  var(--GreenDark);;
      color: #fff;
      border: none;
    }

    .req-btn:hover {
      background-color: #215fb3;
    }
 /* ===== Redesigned Info Cards ===== */
    .req-summary-section {
      display: flex;
      /* flex-direction: column;
      gap: 20px; */
      margin: 20px 0;
    }

    .req-summary-card {
      background: linear-gradient(145deg, #e8f0fc, #ffffff);
      border: 1px solid #d1d5db;
      border-left: 6px solid var(--GreenDark);
      border-radius: 14px;
      padding: 20px 24px;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
      transition: transform 0.3s;
      margin-bottom:20px;
      min-height: 130px;
    }

    @media(max-width:767px){
        .req-summary-card {
      min-height: auto !important;
    }
    }
    .req-summary-card:hover {
      transform: translateY(-2px);
    }

    .req-summary-header {
      display: flex;
      align-items: flex-start;
      gap: 16px;
    }

    .req-summary-icon {
      font-size: 28px;
      color: var(--GreenDark);
      flex-shrink: 0;
      margin-top: 2px;
    }

    .req-summary-title {
      font-size: 15px;
      font-weight: 600;
      color: #000;
      margin-bottom: 4px;
    }

    .req-summary-text {
      font-size: 14px;
      color: #5e5e5e;
      line-height: 1.5;
    }
    .req-summary-text a{
          color: #5e5e5e;
    }
    /* .req-summary-text b, .req-summary-text a{
      color: #5e5e5e;
    } */
    /* Info Card Styles */
    .req-info-cards {
      display: flex;
      flex-wrap: wrap;
      gap: 20px;
      margin-bottom: 30px;
    }

   .req-info-card {
    flex: 1 1 calc(33.33% - 14px);
    background-color: #e7f7ff;
    border: 1px solid #e4e4e4;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
}

    .req-info-title {
      font-size: 14px;
      color: var(--GreenDark);
      font-weight: 600;
      margin-bottom: 6px;
    }

    .req-info-text {
        margin: 0;
      font-size: 15px;
      color: #1f2937;
      line-height: 1.5;
    }

    @media (max-width: 768px) {
      .req-info-card {
        flex: 1 1 100%;
      }

      .req-form-field.half {
        flex: 1 1 100%;
      }

      .req-footer {
        text-align: center;
      }

      .req-btn, .req-save-btn, .req-back-btn, .req-cancel-btn, .req-delete-btn {
        width: 100%;
        margin-bottom: 10px;
        display: block;
      }
    }


    .rqst-container {
      max-width: 1200px;
      margin: 40px auto;
      padding: 20px;
    }

    .rqst-main-card {
      /* display: grid;
      grid-template-columns: 2fr 1fr;
      gap: 20px; */
      background: #ffffff;
      padding: 30px;
      border-radius: 14px;
      box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
    }
    

    /* .rqst-left {
      display: flex;
      flex-direction: column;
      gap: 25px;
    } */

    .rqst-right {
      background: #f9fbff;
      border-radius: 12px;
      padding: 20px;
      border: 1px solid #e0e6ed;
    }

    .rqst-breadcrumb {
      font-size: 14px;
      color: #888;
      margin-bottom: 20px;
    }

    .rqst-title {
      font-size: 24px;
      font-weight: 600;
      margin-bottom: 10px;
    }

    .rqst-badge {
    display: inline-block;
    font-size: 12px;
    background: #ffe6cc;
    color: #c75e00;
    padding: 3px 8px;
    border-radius: 20px;
    margin-left: 10px;
    font-weight: bold;
}

    .rqst-info-boxes {
      display: flex;
      flex-wrap: wrap;
      gap: 20px;
    }

    .rqst-info-box {
      background: #f5f8fe;
      border-left: 4px solid var(--GreenDark);
      padding: 15px;
      flex: 1 1 280px;
      border-radius: 8px;
    }

    .rqst-info-title {
      font-size: 13px;
      color: #666;
      margin-bottom: 4px;
    }

    .rqst-info-value {
      font-size: 15px;
      font-weight: 500;
    }

    .rqst-section-title {
         margin-top: 20px;
    margin-bottom: 12px;
    font-weight: 600;
    color: var(--GreenDark);
    font-size: 16px;
    }

    .rqst-arrival-times {
      margin-top: 10px;
    }

    .rqst-arrival-times label {
      display: block;
      font-size: 14px;
      margin-bottom: 6px;
    }

    .rqst-request-box {
      font-size: 14px;
      margin-bottom: 20px;
    }

    .rqst-request-box strong {
      display: block;
      font-size: 13px;
      color: #6b7280;
      margin-bottom: 2px;
    }

    .rqst-textarea {
      width: 100%;
      min-height: 80px;
      padding: 10px;
      font-size: 14px;
      border: 1px solid #bfbaba;
      border-radius: 6px;
      resize: vertical;
      margin-bottom: 15px;
    }

    .rqst-upload-box {
      border: 2px dashed #aacbff;
      border-radius: 8px;
      text-align: center;
      padding: 16px;
      color: var(--GreenDark);
      font-size: 14px;
      font-weight: 500;
      cursor: pointer;
      margin-bottom: 15px;
      background-color: #f4f9ff;
      transition: background 0.3s;
      position: relative;
    }
    .rqst-section-flow {
  display: flex;
  flex-direction: column;
  gap: 20px;
  /* padding-top: 10px;
  border-left: 3px solid #2c77dd;
  margin-top: 20px; */
}

.rqst-step {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  position: relative;
  /* padding-left: 10px; */
}

.rqst-step-icon {
  width: 40px;
  height: 40px;
  background: #2c77dd;
  color: white;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin-top: 4px;
  flex-shrink: 0;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
}

/* .rqst-step-content {
  background: #f8f8f8;
  padding: 14px 18px;
  border-radius: 10px;
  flex: 1;
} */

.rqst-step-title {
  font-size: 16px;
  font-weight: 600;
  color: var(--GreenDark);
  margin: 0 0 5px;
}

.rqst-step-sub {
  font-size: 14px;
  color: #555;
  margin: 0 0 5px;
}

.rqst-step-desc {
  font-size: 15px;
  color: #222;
  margin: 0;
}

.rqst-step-list {
  padding-left: 18px;
  font-size: 14px;
  color: #333;
  list-style: disc;
  margin: 8px 0 0;
}
.rqst-step-list li{
    margin-bottom: 10px;
}
.rqst-action-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  justify-content: end;
  /* margin-top: 15px; */
}

@media(max-width:767px){
  .rqst-action-bar {
    gap: 5px;
}
}

.deactivebtn{
  background: #e4eeff;
    border-radius: 5px;
    height: 30px;
    font-weight: 500;
    margin-bottom: 10px;
    border: 1px dotted var(--GreenDark);
}
.req-tab-btn{
      background: #f87b4d;
    border-radius: 5px;
    height: 35px;
    font-weight: 500;
    color: #fff;
    margin-bottom: 10px;
    border: 1px dotted #ff4602;
}
.deactivebtn.brdfocus{
  background: var(--GreenDark);
  color: #fff;
}

.rqst-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 12px;
  font-size: 14px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.3s ease;
  min-width: 40px;
}

.rqst-btn-green {
  background-color: var(--GreenDark);
  color: white;
  line-height: normal;
}

.rqst-btn-green:hover {
  background-color:var(--GreenDark);
  color: #fff;
}

.rqst-btn-outline {
  border: 1px solid var(--GreenDark);
  color: var(--GreenDark);
  background: #e9f9ee;
}

.rqst-btn-outline:hover {
  background-color: #d5f5dd;
}

.rqst-btn i {
  font-size: 16px;
  color: #fff !important;
}

.rqst-dropdown {
  position: relative;
}

.rqst-dropdown .dropdown-menu {
  font-size: 14px;
  min-width: 160px;
}

.rqst-tags {
  display: flex;
  gap: 8px;
  margin-top: 8px;
  flex-wrap: wrap;
}

.rqst-tag {
  padding: 5px 12px;
  font-size: 13px;
  border-radius: 20px;
  background: #e6f0ff;
  color: var(--GreenDark);
  user-select: none;
}

.rqst-tag.selected {
  background: var(--GreenDark);
  color: white;
}


    .rqst-upload-box:hover {
      background-color: #e4f1ff;
    }

    .rqst-upload-box input {
      position: absolute;
      top: 0; left: 0;
      width: 100%;
      height: 100%;
      opacity: 0;
      cursor: pointer;
    }

    .rqst-button {
      background: var(--GreenDark);
      color: white;
      border: none;
      padding: 8px 18px;
      font-size: 14px;
      border-radius: 6px;
      cursor: pointer;
      transition: background 0.3s;
    }

    .rqst-button:hover {
      background: var(--GreenDark);
      color: #fff;
    }

    .rqst-button-row {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 20px;
    }

    .rqst-btn-secondary {
      background: #e8f0ff;
      color: var(--GreenDark);
    }

    .rqst-notes {
      margin-top: 20px;
    }

    .rqst-note-entry {
      margin-bottom: 15px;
    }

    .rqst-note-entry .rqst-meta {
      font-size: 13px;
      color: #666;
      margin-bottom: 5px;
    }

    .rqst-note-entry .rqst-text {
      font-size: 14px;
      margin-bottom: 8px;
    }

    .rqst-note-entry .rqst-images {
      display: flex;
      gap: 10px;
    }

    .rqst-note-entry .rqst-images img {
      width: 90px;
      height: 60px;
      object-fit: cover;
      border-radius: 6px;
      box-shadow: 0 2px 6px rgba(0,0,0,0.1);
      border: 1px solid #bfbaba;
    }

    @media(max-width: 768px) {
      .rqst-main-card {
        grid-template-columns: 1fr;
      }
    }
        .report-dashboard {
          width: 100%;
          background: white;
          border-radius: 18px;
          border: 1px solid;
          overflow: hidden;
          transition: transform 0.3s ease, box-shadow 0.3s ease;
          min-height: 182px;
          margin-bottom: 20px;
        }
         @media(max-width: 767px) {
      .report-dashboard {
         min-height: auto;
      }
    }
       
        .report-dashboard:hover {
            transform: translateY(-8px);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
        }
        
        .report-dashboard-header {
            padding: 10px;
            color: white;
            display: flex;
            align-items: center;
            gap: 15px;
        }
        
        .report-dashboard-icon {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 22px;
            background: rgba(255, 255, 255, 0.2);
        }

        .report-dashboard-icon i{
          color: #fff;
              font-size: 18px;
        }
        
        .report-dashboard-title {
            font-weight: 600;
            font-size: 18px;
        }
        @media(max-width:991px){
          .report-dashboard-title {
              font-weight: 600;
              font-size: 16px;
          }
        }
        
        .report-dashboard-body {
            padding: 15px;
        }
        
       .report-dashboard .data-row {
            display: flex;
            justify-content: space-between;
            margin-bottom: 5px;
            padding-bottom: 5px;
            border-bottom: 1px solid #f1f1f1;
        }
        .report-dashboard .data-row:last-child{
          margin: 0;
          border: none;
          padding: 0;
        }
        
        .report-dashboard .data-label {
            color: #666;
            font-weight: 500;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .report-dashboard .data-label i{
            color: #666;
        }
        
       .report-dashboard .data-value {
            font-weight: 600;
            color: #333;
        }
        
        .report-dashboard .amount {
            font-size: 1.3rem;
            font-weight: 700;
        }
        
        .report-dashboard-footer {
            background: #f9fafc;
            padding: 15px 25px;
            text-align: center;
            color: #777;
            font-size: 0.9rem;
        }
        
        /* report-dashboard 1 Styles */
        .report-dashboard-1{
          border-color: #4a6cf7;
        }
        .report-dashboard-1 .report-dashboard-header {
            background: linear-gradient(135deg, #4a6cf7 0%, #2f54eb 100%);
        }
        
        .report-dashboard-1 .amount {
            color: #4a6cf7;
        }
        
        /* report-dashboard 2 Styles */
        .report-dashboard-2{
          border-color: #2ecc71;
        }
        .report-dashboard-2 .report-dashboard-header {
            background: linear-gradient(135deg, #11a851 0%, #27ae60 100%);
        }
        
        .report-dashboard-2 .amount {
            color: #2ecc71;
        }
        
        /* report-dashboard 3 Styles */
        .report-dashboard-3{
          border-color: #ff6b6b;
        }
        .report-dashboard-3 .report-dashboard-header {
            background: linear-gradient(135deg, #ff6b6b 0%, #ee5a52 100%);
        }
        
        .report-dashboard-3 .amount {
            color: #ff6b6b;
        }

        
        @media (max-width: 768px) {
            
            .report-dashboard {
                width: 100%;
                max-width: 400px;
            }
        }

        .vendor-card {
      background: #f9fbff;
    border-radius: 12px;
    padding: 20px;
    border: 1px solid #e0e6ed;
    }
 
 

    .vendor-title {
      font-size: 18px;
      font-weight: 600;
      color: #2c3e50;
      margin-bottom: 16px;
    }

    .vendor-detail {
      /* display: flex; */
      align-items: center;
      margin-bottom: 10px;
      font-size: 14px;
      color: #555;
    }

    .vendor-detail i {
      color: var(--GreenDark);
      margin-right: 8px;
      font-size: 16px;
    }

    .vendor-detail strong {
      color: #2c3e50;
      margin-right: 6px;
    }

    .button-group {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 10px;
      margin-top: 16px;
    }

    .vendor-card .btn {
      padding: 10px;
      border: none;
      border-radius: 8px;
      font-size: 14px;
      font-weight: 600;
      cursor: pointer;
      transition: all 0.2s ease;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 6px;
    }

    .vendor-card .btn i {
      font-size: 14px;
    }

    .vendor-card .btn-master { background: var(--GreenDark); color: white; }
    .vendor-card .btn-master:hover { background: #2980b9; }

    .vendor-card .btn-sub { background: #2980b9; color: white; }
    .vendor-card .btn-sub:hover { background: #1c598a; }

    .vendor-card .btn-job { background: #f1c40f; color: #2c3e50; }
    .vendor-card .btn-job:hover { background: #d4ac0d; }

    .vendor-card .btn-delete { background: #e74c3c; color: white; }
    .vendor-card .btn-delete:hover { background: #c0392b; }

    /* Make buttons full-width on small screens */
    @media (max-width: 480px) {
      .vendor-card .button-group {
        grid-template-columns: 1fr;
      }
    }

    /*  */
.close-sidebar-btn{
    display:none;
}

  .custsettingmenu li{
    padding: 7px 5px;
  }
  .custsettingmenu  .avatar img{
    height: 50px;
    width: 50px;
    border: 2px solid var(--GreenDark);
  }
  ul.custsettingmenu {
    width: 250px;
    padding: 10px;
}
.custsettingmenu li a{
    display: flex;
    align-items: center;
    padding: 0 !important;
}
.custsettingmenu li a:hover{
    background-color: unset;
}
.custsettingmenu h6{
    font-size:14px;
}

.custsettingmenu li:hover{
    background-color: var(--GreenTbl);
}
.custsettingmenu li a i{
    font-size: 14px !important;
}
.custsettingmenu .btn-danger{
    padding: 5px 5px !important;
    font-size: 14px;
}
.custsettingmenu .btn-danger:hover{
    background:#fe615e;
}

@media(max-width:767px){
    ul.custsettingmenu {
        width: auto;
        padding: 10px;
    }
}
            /* new css */
            .headtitle {
                color: var(--GreenDark);
                font-size: 14px;
                font-weight: bold;
                font-family: poppins;
            }
                        .subtitjob {
                color: var(--GreenDark) !important;
            }
            .smlfnt {
                font-weight: 500;
                color: #000;
                font-size: 12px;
                text-align: start;
            }
            @media (max-width: 767px) {
                .dvcenter i {
                    font-size: 12px !important;
                }
            }
            .active-border {
                border: 2px solid var(--GreenDark) !important;
            }
.trashbtn{
        position: absolute;
        right: 0;
        background: red;
        border: none;
        height: 30px;
        width: 30px;
        display: flex;
        justify-content: center;
        align-items: center;
        color: #fff;
        border-radius: 50%;
        top: -10px;
        z-index: 999999;
}
.select2-dropdown {
    z-index: 7;
}
/* new tabs design */
/* dropdown */
.invoice-dropdown{
    margin-bottom: 20px;
}
.invoice-dropdown .dropdown-toggle::after {
    /* display: inline-block; */
    margin-left: .255em;
    vertical-align: .255em;
    content: "";
    border-top: .3em solid;
    border-right: .3em solid transparent;
    border-bottom: 0;
    border-left: .3em solid transparent;
}
.invoice-dropdown .dropdown-toggle{
display:flex;
justify-content:space-between;
align-items:center;
}
.invoice-dropdown .dropdown-menu{
width:100%;
}
/* badge tabs */
.badgetabs {
    /* padding: 20px; */
    position: relative;
    overflow-x: hidden;
    /* max-width: 1000px; */
    background: #fff;
    border-radius: 0;
    padding-top: 5px;
    padding-bottom: 5px;
  }
    .badgetabs .badgeicon {
      position: absolute;
      top: 0;
      height: 100%;
      width: 50px;
      display: flex;
      align-items: center;
    }
    .badgeicon:first-child {
      left: 0;
      display: none;
      background:#fff;
      /* background: linear-gradient(90deg, #fff 70%, transparent); */
    }
    .badgeicon:last-child {
      right: 0;
      justify-content: flex-end;
      background:#fff;
      /* background: linear-gradient(-90deg, #fff 70%, transparent); */
    }
    .badgeicon i {
      width: 50px;
      height: 50px;
      cursor: pointer;
      font-size: 1.2rem;
      text-align: center;
      line-height: 50px;
      border-radius: 50%;
  }
    .badgeicon i:hover {
      background: #efedfb;
    }
    .badgeicon:first-child i {
      margin-left: 0;
      background: #efedfb;
    }
    .badgeicon:last-child i {
      margin-right: 0;
          background: #efedfb;
    }

    .badge-box::-webkit-scrollbar {
        display: none;  /* Safari and Chrome */
    }
      .badge-box {
        display: flex;
        gap: 12px;
        list-style: none;
        overflow-x: auto;
        scroll-behavior: smooth;
        width: 100%;
        padding-left: 55px;
        padding-right: 55px;
    }
    .badge-box.dragging {
      scroll-behavior: auto;
      cursor: grab;
    }
    .badge-box .tab {
    cursor: pointer;
    white-space: nowrap;
    margin-bottom: 0;
    height:30px;
    /* font-size: 16px;*/
    /* background: #f5f4fd; */
    /* padding: 10px 20px; */
    /* border-radius: 30px; */
    /* border: 1px solid #d8d5f2; */
  }
    .badge-box .tab:hover {
      /* background: #efedfb; */
    }
    .badge-box.dragging .tab {
      user-select: none;
      pointer-events: none;
    }
    .badge-box .tab.active {
      /* color: #fff;
      border: 1px solid #ddd;
      background: linear-gradient(180deg, #3dadf2 0%, #056cf2 100%); */
    }
    .badge-box .tab i{
      margin-right: 5px;
    }
    .badgetabs .tabcontent {
      display: none;
      padding: 6px 12px;
      /* border: 1px solid #ccc; */
      border-top: none;
      width: 100%;
    }
    /* Responsive adjustments */

    @media(max-width: 768px) {
      .badgetabs {
        max-width: 100%; /* Adjust max-width for tablets and larger screens */
      }
    }
    @media (max-width: 767px) {
      .badgeicon i {
    width: 40px;
    height: 40px;
    cursor: pointer;
    font-size: 18px;
    text-align: center;
    line-height: 40px;
    border-radius: 50%;
  }

  .badgetabs .badgeicon {
    width: 45px;
  }
  .badge-box {
    width: calc(100% - 30px);
    padding-left: 45px;
    padding-right: 20px;
  }
    }


/* tab 1 */
.wrappertabs {
    /* padding: 20px; */
    position: relative;
    overflow-x: hidden;
    /* max-width: 1000px; */
    background: #fff;
    border-radius: 0;
    margin-bottom: 20px;
  }
    .wrappertabs .icon {
      position: absolute;
      top: -5px;
      height: 100%;
      width: 50px;
      display: flex;
      align-items: center;
    }
    .icon:first-child {
      left: 0;
      display: none;
      background:#fff;
      /* background: linear-gradient(90deg, #fff 70%, transparent); */
    }
    .icon:last-child {
      right: 0;
      justify-content: flex-end;
      background:#fff;
      /* background: linear-gradient(-90deg, #fff 70%, transparent); */
    }
    .icon i {
      width: 50px;
      height: 50px;
      cursor: pointer;
      font-size: 1.2rem;
      text-align: center;
      line-height: 50px;
      border-radius: 50%;
  }
    .icon i:hover {
      background: #efedfb;
    }
    .icon:first-child i {
      margin-left: 0;
      background: #efedfb;
    }
    .icon:last-child i {
      margin-right: 0;
          background: #efedfb;
    }
    /* .tabs-box {
      display: flex;
      gap: 12px;
      list-style: none;
      overflow-x: hidden;
      scroll-behavior: smooth;
      width: calc(100% - 50px);
    padding-left: 55px;
    padding-right: 10px;
    } */
    .tabs-box::-webkit-scrollbar {
        display: none;  /* Safari and Chrome */
    }
      .tabs-box {
        display: flex;
        gap: 12px;
        list-style: none;
        overflow-x: auto;
        scroll-behavior: smooth;
        width: 100%;
        padding-left: 55px;
        padding-right: 55px;
    }
    .tabs-box.dragging {
      scroll-behavior: auto;
      cursor: grab;
    }
    .tabs-box .tab {
    cursor: pointer;
    font-size: 16px;
    white-space: nowrap;
    background: #f5f4fd;
    padding: 10px 20px;
    border-radius: 30px;
    border: 1px solid #d8d5f2;
  }
    .tabs-box .tab:hover {
      background: #efedfb;
    }
    .tabs-box.dragging .tab {
      user-select: none;
      pointer-events: none;
    }
    .tabs-box .tab.active1 {
      color: #fff;
      border: 1px solid #ddd;
      /* background: linear-gradient(180deg, #3dadf2 0%, #056cf2 100%); */
      background: linear-gradient(180deg, #38a0e4 0%, #054e82 100%);
    }
    .tabs-box .tab i{
      margin-right: 5px;
    }
    .wrappertabs .tabcontent {
      display: none;
      padding: 6px 12px;
      /* border: 1px solid #ccc; */
      border-top: none;
      width: 100%;
    }
    .txttrnct {
      max-width: 150px;
      text-overflow: ellipsis;
      white-space: nowrap;
      text-align: center;
      overflow: hidden;
      font-size: 16px;
  }
    /* Responsive adjustments */

    @media(max-width: 768px) {
      .wrappertabs {
        max-width: 100%; /* Adjust max-width for tablets and larger screens */
      }
    }
    @media (max-width: 767px) {
      .icon i {
    width: 40px;
    height: 40px;
    cursor: pointer;
    font-size: 18px;
    text-align: center;
    line-height: 40px;
    border-radius: 50%;
  }

  .wrappertabs .icon {
    width: 45px;
  }
  .tabs-box {
    width: calc(100% - 30px);
    padding-left: 45px;
    padding-right: 20px;
  }
    }


 /* 2nd tabs */
 .wrapperprdcttabs {
    /* padding: 20px; */
    position: relative;
    overflow-x: hidden;
    /* max-width: 1000px; */
    background: #fff;
    border-radius: 0;
    margin-bottom: 20px;
  }
    .wrapperprdcttabs .icon1 {
      position: absolute;
      top: -5px;
      height: 100%;
      width: 50px;
      display: flex;
      align-items: center;
    }
   .icon1:first-child {
      left: 0;
      display: none;
      background:#fff;
      /* background: linear-gradient(90deg, #fff 70%, transparent); */
    }
   .icon1:last-child {
      right: 0;
      justify-content: flex-end;
      background:#fff;
      /* background: linear-gradient(-90deg, #fff 70%, transparent); */
    }
  .icon1 i {
      width: 50px;
      height: 50px;
      cursor: pointer;
      font-size: 1.2rem;
      text-align: center;
      line-height: 50px;
      border-radius: 50%;
  }
  .icon1 i:hover {
      background: #efedfb;
    }
    .icon1:first-child i {
      margin-left: 0;
      background: #efedfb;
    }
    .icon1:last-child i {
      margin-right: 0;
          background: #efedfb;
    }
    /* .tabs-box1 {
      display: flex;
      gap: 12px;
      list-style: none;
      overflow-x: hidden;
      scroll-behavior: smooth;
      width: calc(100% - 50px);
    padding-left: 55px;
    padding-right: 10px;
    } */
    .tabs-box1::-webkit-scrollbar {
        display: none;  /* Safari and Chrome */
    }
      .tabs-box1 {
        display: flex;
        gap: 12px;
        list-style: none;
        overflow-x: auto;
        scroll-behavior: smooth;
        width: 100%;
        padding-left: 55px;
        padding-right: 55px;
    }
    .tabs-box1.dragging1 {
      scroll-behavior: auto;
      cursor: grab;
    }
    .tabs-box1 .tab1 {
    cursor: pointer;
    font-size: 16px;
    white-space: nowrap;
    background: #f5f4fd;
    padding: 10px 20px;
    border-radius: 30px;
    border: 1px solid #d8d5f2;
  }
    .tabs-box1 .tab1:hover {
      background: #efedfb;
    }
    .tabs-box1.dragging1 .tab1 {
      user-select: none;
      pointer-events: none;
    }
    .tabs-box1 .tab1.active {
      color: #fff;
      border: 1px solid #ddd;
      /* background: linear-gradient(180deg, #3dadf2 0%, #056cf2 100%); */
      background: linear-gradient(180deg, #38a0e4 0%, #054e82 100%);
    }
    .tabs-box1 .tab1 i{
      margin-right: 5px;
    }
    .wrapperprdcttabs .tabcontent1 {
      display: none;
      padding: 6px 12px;
      /* border: 1px solid #ccc; */
      border-top: none;
      width: 100%;
    }
    .txttrnct{
      width: 150px;
      text-overflow: ellipsis;
      white-space: nowrap;
      overflow: hidden;
    }
    /* Responsive adjustments */

    @media(max-width: 768px) {
      .wrapperprdcttabs {
        max-width: 100%; /* Adjust max-width for tablets and larger screens */
      }
    }
    @media (max-width: 767px) {
   .icon1 i {
    width: 40px;
    height: 40px;
    cursor: pointer;
    font-size: 18px;
    text-align: center;
    line-height: 40px;
    border-radius: 50%;
  }

  .wrapperprdcttabs .icon1 {
    width: 45px;
  }
  .tabs-box1 {
    width: calc(100% - 30px);
    padding-left: 45px;
    padding-right: 20px;
  }
    }
/* new tabs design */
input[type="file"]::-webkit-file-upload-button{
    height:44px;
}
.dropdown-item {
    padding: 4px 2px !important;
}
.dropdown-item label {
    width: 100% !important;
}
.dropdown-menu .notification-item {
    padding: unset !important;
}
.dropdown-menu a {
    padding: 4px 10px !important;
}
.dropdown-menu a label {
    width: 100% !important;
}
.sweet-alert .sa-icon {
    width: 80px;
    height: 80px;
    border: 4px solid gray;
    border-radius: 50%;
    margin: 20px auto;
    position: relative;
    box-sizing: content-box;
  }
  .sweet-alert .sa-icon.sa-info::before {
    content: "";
    position: absolute;
    width: 5px;
    height: 29px;
    left: 50%;
    bottom: 17px;
    border-radius: 2px;
    margin-left: -2px;
    background-color: #4ba6ef;
}
.sweet-alert .sa-icon.sa-info::after {
    content: "";
    position: absolute;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    left: 46%;
    top: 19px;
    background-color: #4ba6ef;
}
.sweet-alert .sa-icon.sa-info {
    border-color: #4ba6ef;
}
/* new view css */
.filedltcrd {
    display: flex;
    height: 70px;
    width: 70px;
    border: 1px solid #ddd;
    position: relative;
    justify-content: center;
    align-items: center;
   margin-bottom:20px;
}
.dltsec{
    position: absolute;
    top: -10px;
    right: 0;
    background: #fff;
    height: 25px;
    width: 25px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid red;
    border-radius: 50%;
}
.dltsec a i{
   color:red;
}
.brddash{
    border-right: 1px dashed #dfe0e4;
}
.twm-jobs-st5 .twm-mid-content {
    margin-bottom: 20px;
}
.twm-jobs-st5 .twm-jobs-category.outline a {
    font-size: 14px;
    color: #ffffff;
    background-color: var(--GreenDark);
    margin-right: 4px;
    margin-bottom: 4px;
    display: flex;
    padding: 4px 12px;
    border-radius: 5px;
    border: 1px solid transparent;
    text-align: center;
     align-items:center;
     gap: 10px;
}
.twm-jobs-st5 .twm-jobs-category.outline a i {
    color: #fff;
    width: 15px;
    text-align: center;
}
.twm-jobs-st5 .twm-job-duration ul {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 20px;
}
.twm-jobs-st5 .twm-job-duration ul li {
    padding-right: 10px;
}
.twm-jobs-st5 {
    background-color: #fff;
    border: 1px solid #e9e9ef !important;
    /* box-shadow: 0px 0px 15px rgba(56, 152, 226, 0.3); */
    position: relative;
    padding: 20px;
    border-radius: 5px;
    width: 100%;
}
.twm-jobs-st5 .twm-jobs-category.outline {
    display: grid;
    flex-wrap: wrap;
    align-items: baseline;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
}
.twm-bg-green {
    background-color: #2db346;
}
.twm-jobs-category span {
    color: #fff;
    border-radius: 5px;
    padding: 5px 12px;
    /* white-space: nowrap; */
}
.twm-jobs-st5 .twm-jobs-amount {
    font-weight: 500;
    font-size: 18px;
    color: var(--GreenDark);
    margin: 0px 0px 10px 0px;
    text-align: left;
    line-height: 18px;
}
.twm-jobs-st5 .twm-jobs-amount span {
color: #171d28;
font-size: 12px;
}
.twm-jobs-st5 .twm-job-st5-top {
display: flex;
align-items: center;
margin-bottom: 20px;
}
.twm-jobs-st5 .twm-media {
width: 70px;
height: 70px;
min-width: 70px;
line-height: 70px;
display: inline-block;
text-align: center;
background-color: #fff;
border-radius: 10px;
margin-right: 30px;
overflow: hidden;
}
.twm-jobs-st5 .twm-media img {
display: block;
}
.twm-jobs-st5 .twm-job-address {
margin-bottom: 0px;
font-size: 12px;
font-weight: 500;
color: #6b6b6b;
}
.twm-jobs-st5 .twm-job-com-name {
font-size: 18px;
font-weight: 500;
}
.site-text-primary {
color: #1967d2;
}
.widget .widget-box {
    border: 1px solid #e9e9ef !important;
    border-radius: 3px;
    padding: 20px;
    }
    .employers-list {
    padding: 20px;
    background: #ffffff;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    border-bottom: 1px solid #eeeeee;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    transition: all 0.3s ease-in-out;
    }
    .employers-list .employers-list-position {
    margin-left: auto;
    -ms-flex-item-align: center;
    align-self: center;
    }
    .font-xll {
    font-size: 30px;
    line-height: 40px !important;
    }
    .imgupload{
    height:70px;
    width:70px;
    object-fit: contain;
    }
    #page-topbar
    {
        border-bottom: 1px solid var(--GreenTbl) !important;
    background: linear-gradient(to right, #e9eff9 0%, #ccecf8 40%, #c5cbf7 70%, #a6cbfd 100%) !important;
    /* background: radial-gradient(circle, #ffffff, #bae7ff, #caceff); */
    /* background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(165, 201, 255, 0.9), rgb(216 189 255 / 90%)); */
    /* background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(165, 201, 255, 0.9), rgba(255, 255, 255, 0.9)); ; */
    }
/* new view css */


/* new table cards starts */
.paidbdge{
    background: green;
    min-width: 100px;
    text-align: center;
    color: #fff;
    border-radius: 10px;
    font-size: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.pendingbdge{
    background: #fac73f;
    min-width: 100px;
    text-align: center;
    color: #000;
    border-radius: 10px;
    font-size: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.rejectbdge{
    background: red;
    min-width: 100px;
    text-align: center;
    color: #fff;
    border-radius: 10px;
    font-size: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.skipbdge{
    background: #6c757d;
    min-width: 100px;
    text-align: center;
    color: #fff;
    border-radius: 10px;
    font-size: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.requestbdge{
    background: #244b84;
    min-width: 100px;
    text-align: center;
    color: #fff;
    border-radius: 10px;
    font-size: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.newtblcrd {
    padding: 10px 20px;
    background: #e9f2fb;
    /* margin-bottom: 10px; */
}
.AdmsnTxt {
    color: #000;
    font-weight: 500;
    margin-bottom: 3px;
}
.nametxt{
    color: #0776a0;
    font-weight: bold;
    margin-bottom: 3px;
}
.columpadzero{
padding: 0;
}
/* new table cards ends */

/* dashboard tabs */
.profile-pic-wrapper {
    width: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  .pic-holder {
    text-align: center;
    position: relative;
    border-radius: 50%;
    width: 150px;
    height: 150px;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid #cdcdcd;
    margin-bottom: 20px;
  }
  .postab
  {
      position: absolute;top: -40px;width: 75%;font-size: 15px;color:#000;display:flex;justify-content:between;
  }
  .pic-holder .pic {
    height: 100%;
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center;
    object-position: center;
  }
  .page-title-box h4{
    color:var(--heading);
  }
  .pic-holder .upload-file-block,
  .pic-holder .upload-loader {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-color: rgba(90, 92, 105, 0.7);
    color: #f8f9fc;
    font-size: 12px;
    font-weight: 600;
    opacity: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
  }

  .pic-holder .upload-file-block {
    cursor: pointer;
  }

  .pic-holder:hover .upload-file-block,
  .uploadProfileInput:focus ~ .upload-file-block {
    opacity: 1;
  }

  .pic-holder.uploadInProgress .upload-file-block {
    display: none;
  }

  .pic-holder.uploadInProgress .upload-loader {
    opacity: 1;
  }

  /* Snackbar css */
  .snackbar {
    visibility: hidden;
    min-width: 250px;
    background-color: #333;
    color: #fff;
    text-align: center;
    border-radius: 2px;
    padding: 16px;
    position: fixed;
    z-index: 1;
    left: 50%;
    bottom: 30px;
    font-size: 14px;
    transform: translateX(-50%);
  }

  .snackbar.show {
    visibility: visible;
    -webkit-animation: fadein 0.5s, fadeout 0.5s 2.5s;
    animation: fadein 0.5s, fadeout 0.5s 2.5s;
  }

  @-webkit-keyframes fadein {
    from {
      bottom: 0;
      opacity: 0;
    }
    to {
      bottom: 30px;
      opacity: 1;
    }
  }

  @keyframes fadein {
    from {
      bottom: 0;
      opacity: 0;
    }
    to {
      bottom: 30px;
      opacity: 1;
    }
  }

  @-webkit-keyframes fadeout {
    from {
      bottom: 30px;
      opacity: 1;
    }
    to {
      bottom: 0;
      opacity: 0;
    }
  }

  @keyframes fadeout {
    from {
      bottom: 30px;
      opacity: 1;
    }
    to {
      bottom: 0;
      opacity: 0;
    }
  }

/* Style the tab */
.graphtab {
    overflow: hidden;
    /* margin-bottom: 30px; */
    display: inline-block;
    padding: 2px;
    background: radial-gradient( #888888, #555);
    border: 2px solid #555;
    border-radius: 50em;
    margin-top: 10px;
  }

  /* Style the buttons inside the tab */
  .graphtab button {
    border: none;
    outline: none !important;
    cursor: pointer !important;
    transition: 0.3s;
    font-size: 17px !important;
    color: #FFFFFF;
    background: transparent;
  }
.mrgntopgraph .DashCard
{
    min-height: 257px;
}
  .posablt
  {
    position: absolute;
    right: 20px;
    top: -10px;
    padding: 3px !important;
  }
  .posabltsnd
  {
    position: absolute;
    left: 20px;
    top: -10px;
    padding: 3px !important;
  }
  /* Create an active/current tablink class */
  .graphtab button.active {
    width: 50px;
    height: 34px;
    background: -webkit-gradient(linear, left top, right top, from(#6cc3d2), to(#0b4c8b));
    background: linear-gradient(to right, #00baf2, #0776a0);
    border: 1px solid #fff;
    border-radius: 6em;
}
.dropdown-toggle::after{
    content: unset !important;
}
  /* Style the tab content */
  .graph_tabcontent {
    display: none;
    padding: 15px 12px;
    border-top: none;
    padding-bottom: 12px;
    position: relative;
}
.minhght
{
    min-height: 225px !important;
}
/* popover css */
.popover {
    font-size: 16px !important;
    border: 1px solid #000 !important;
    z-index: 1060;

}

.popover-body {
    padding: 1rem;
    color: #495057;
    font-family:poppins !important;
}
.popover .popover-arrow:after,
.popover .popover-arrow:before {
    border-color: transparent !important;
}
.bs-popover-auto[data-popper-placement^="top"] > .popover-arrow:before,
.bs-popover-top > .popover-arrow:before {
    border-top-color: #000 !important;
}

.bs-popover-auto[data-popper-placement^="bottom"] > .popover-arrow:before,
.bs-popover-bottom > .popover-arrow:before {
    border-bottom-color: #000 !important;
}
.popover-header {
    border-bottom: 1px solid #000 !important;
    font-family:poppins !important;
}
/* popover css */
body {
    margin: 0;
    padding: 0;
    font-family: Inter;
}
.headrprttxt
{
    font-size: 18px;
    font-weight: bold;
    color: #000;
}
.prdtdelete i
{
    color: #fd625e !important;
    margin-left: 0px !important;
}
.colone {
    width: 10%;
}
.coltwo {
    width: 10%;
}
.colthree {
    width: 10%;
}
.colfour {
    width: 10%;
}
.colfive {
    width: 10%;
}
#job_view_activity
{
    overflow-y: auto;
    height: 200px;
}
#job_view_activity::-webkit-scrollbar
{
    display: none;
}
.ntfcncmt
{
    position: absolute;
    background: red;
    padding: 3px;
    color: #fff;
    border-radius: 50%;
    height: 25px;
    width: 25px;
    margin-left: 31px;
    margin-top: -28px;
}
.timetxt
{
    text-align: center;
    font-size: 40px;
    color: #000;
    font-weight: bold;
    margin-bottom: 10px;
}
.remainingtxt
{
    text-align: center;
    background: #e2e2e2;
    border-radius: 20px;
}
.checkin {
    background: var(--btncolor);
    border: none;
    margin-top: 20px;
    color: #fff;
    height: 40px;
    width: 160px;
    border-radius: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.checkout {
    background: #f23939;
    border: none;
    margin-top: 20px;
    color: #fff;
    height: 40px;
    width: 160px;
    border-radius: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.btnmrgntop {
    margin-top:27px;
}
.icontop {
    font-size: 20px;
    display: flex !important;
    background: #d3d5d7;
    width: 30px;
    height: 30px;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    color: #000;
    margin-right: 10px;
}
.iconbtm
{
    font-size: 20px;
    display: flex !important;
    background: #d3d5d7;
    width: 30px;
    height: 30px;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    color: #000;
    margin-right: 10px;
}
.txttime {
    color: #000;
    font-size: 20px;
    font-weight: bold;
    margin-top: 10px;
    text-align: center;
}
.startbtn {
    background-color: #13891c;
    border: none;
    color: #fff;
    border-radius: 5px;
    width: 90px;
    height: 30px;
    font-size: 16px;
}
.startbtn:disabled
{
    background-color: #5099564f;
    border: none;
    color: #fff;
    border-radius: 5px;
    width: 90px;
    height: 30px;
    font-size: 16px;
}
.endbtn
{
    background-color:#FF0100;
    border: none;
    color: #fff;
    border-radius: 5px;
    width: 90px;
    height: 30px;
    font-size: 16px;
}
.endbtn:disabled
{
    background-color:#ff66655c;
    border: none;
    color: #fff;
    border-radius: 5px;
    width: 90px;
    height: 30px;
    font-size: 16px;
}
.timeactivity
{
    font-size: 14px;
    color: var(--GreenDark);
    font-weight: bold;
}
.headtimecls
{
    font-size: 16px;
    margin-bottom: 10px;
    color: var(--GreenDark);
    font-weight: bold;
}
.startjobcrd
{
    border: 1px solid #cdcdcd !important;
    border-radius: 20px;
    padding: 15px;
    margin-bottom: 20px;
}
.toptxt {
    text-align: left;
    font-size: 16px;
    font-weight: bold;
    color: #495057;
    margin-bottom: 20px;
}
.bgsubtbl
{
    background:#f8f8f8 !important;
    margin-bottom:15px !important;
    margin: 0px;
    padding-top:10px;
    padding-bottom:15px;
}
.imgjobdetail
{
    height: 22px;
    margin-right: 10px;
}
.mrgntopminus
{
    margin-top: -40px;
}
.clearbtn
{
    border: none;
    background: #ffffff;
    width: 100px;
    border-radius: 5px;
    height: 30px;
    font-weight: bold;
    margin-bottom: 10px;
    border: 1px solid #000000;
}
.pendingbtn
{
    border: none;
    background: #fac73f;
    border-radius: 5px;
    height: 30px;
    font-weight: bold;
    margin-bottom: 10px;
}
.pendingbtn.brdfocus{
    border: 1px solid #9f6904;
    box-shadow: 0px 1px 7px 0px rgb(159 105 4);
}
.partialbtn
{
    border: none;
    background: #0dcaf0;
    border-radius: 5px;
    height: 30px;
    font-weight: bold;
    margin-bottom: 10px;
}
.partialbtn.brdfocus{
        border: 1px solid #0098b7;
    box-shadow: 0px 1px 7px 0px rgb(7 207 219);
}
/* .ongoingbtn {
    border: none;
    background: #39a3f5;
    border-radius: 5px;
    height: 24px;
    font-weight: bold;
    color: #000000;
     width: 100px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
} */

.ongoingbtn {
    border: none;
    background: #39a3f5;
    border-radius: 5px;
    height: 24px;
    font-weight: bold;
    color: #000;
    width: auto;
    padding: 5px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
}
.onholdbtn {
    border: none;
    background: #fac73f;
    border-radius: 5px;
    height: 24px;
    font-weight: bold;
    color: #000;
    width: auto;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
    width: auto;
    padding: 5px;
}
.Rejectedbtn {
    border: none;
    background: #ff7c7c;
    border-radius: 5px;
    height: 24px;
    font-weight: bold;
    color: #000;
    width: auto;
    padding: 5px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
}
.Completedbtn {
    border: none;
    background: #61d55e;
    border-radius: 5px;
    height: 24px;
    font-weight: bold;
    color: #000;
    width: auto;
    padding: 5px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
}
.Cancelledbtn {
    border: none;
    background: #c995ff;
    border-radius: 5px;
    height: 24px;
    font-weight: bold;
    color: #000;
    width: auto;
    padding: 5px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
}
.iconhght
{
    height: 25px;
    /* width: 20px; */
}
.empicon
{
    height: 40px;
    margin-right: 10px;
    border: 1px solid #d1c9c9;
    cursor: pointer;
    border-radius: 5px;
    /* box-shadow: 0 0 2px 2px #215799; */
    box-shadow:0 0 4px 1px #9a9da19e;
}
.onholdbtn.brdfocus{
    border: 1px solid #9f6904;
    box-shadow: 0px 1px 7px 0px rgb(159 105 4);
}
.paidbtn
{
    border: none;
    background: #61d55e;
    border-radius: 5px;
    height: 30px;
    font-weight: bold;
    margin-bottom: 10px;
}
.paidbtn.brdfocus{
    border: 1px solid #076607;
    box-shadow: 0px 1px 7px 0px rgb(7 102 7);
}
.cancelledbtn
{
    border: none;
    background: #ff7c7c;
    border-radius: 5px;
    height: 30px;
    font-weight: bold;
    margin-bottom: 10px;
}
.cancelledbtn.brdfocus{
    border: 1px solid red;
    box-shadow: 0px 1px 7px 0px rgb(255 0 0);
}
.followupbtn
{
    border: none;
    background: #86e4d3;
    border-radius: 5px;
    height: 30px;
    font-weight: bold;
    margin-bottom: 10px;
}
.followupbtn.brdfocus{
    border: 1px solid #5e9f93;
    box-shadow: 0px 1px 7px 0px rgb(94 159 147);
}
.overduebtn
{
    border: none;
    background: #c995ff;
    border-radius: 5px;
    height: 30px;
    font-weight: bold;
    margin-bottom: 10px;
}
.overduebtn.brdfocus{
    border: 1px solid #6e00e0;
    box-shadow: 0px 1px 7px 0px rgb(110 0 224);
}
.Reqtoolcrd
{
    background: #FFFFFF;
    box-shadow: 0px 0px 13px 2px rgba(0, 0, 0, 0.1);
    border-radius: 3px;
    margin-bottom: 30px;
    padding: 10px;
}
.iconchck
{
    margin-right: 10px;
    font-size: 23px;
}
.imgjob
{
    width: 30px;
    background: #fff;
    border-radius: 50%;
    padding: 2px;
    margin-left: -7px;
}
.startjobbtn
{
    background: var(--GreenDark) !important;
    color: #fff !important;
    height: 40px;
    border-radius: 20px;
    padding-top: 5px;
}
.ReqHeadTxt
{
    color: #000000B2;
    text-transform: uppercase;
    font-weight: bolder;
    font-size: 20px;
}

.Jobdiv
{
    font-size: 14px;
    color: #495057;
    display: flex;
    justify-content: space-between;
    font-weight: 600;
}
/* .PadRow
{
    padding-top: 10px;
    padding-bottom: 10px;
} */
.TblReq
{
    border: none !important;
}
.TblReq tr
{
    border: none !important;
}

.TblReq thead tr th {
    border-bottom: none;
}
.TblReq tbody, td, tfoot, th, thead, tr {
    border-bottom: 1px solid var(--tblbrd);
    font-size: 14px;
    color: #000;
}
  .wrapper {
    position: relative;
    width: 960px;
    margin: 0 auto;
  }


  .block {
    display: block;
  }

  .hide {
    display: none;
  }

  #notification-bar {
    position: absolute;
    width: 100%;
    top: 0;
    background-color: #0348bc;
    clear: both;
    z-index: 11111;
    left: 0;
}
  #notification-bar .container {
    width: 900px;
    height: 45px;
    margin: 0 auto;
    padding: 5px;
  }

  #notification-bar p {
    display: inline-block;
    font-family: 'Open Sans', sans-serif;
    font-size: 18px;
    font-weight: 300;
    margin: 0 25px 0 0;
    float: left;
    padding: 0;
    line-height: 45px;
    color: #fff;
  }

  #notification-bar a.btn-action {
    display: inline-block;
    width: 110px;
    height: 35px;
    line-height: 35px;
    margin-top: 5px;
    padding: 0px 12px;
    margin-right: 50px;
    font-family: 'Roboto', sans-serif;
    font-size: 18px;
    float: right;
    font-weight: bold;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    opacity: .85;
    border-radius: 3px;
    text-align: center;
    background-color: #fff;
    color: #0348bc;
    text-decoration: none;
  }

  #notification-bar a.btn-action:hover {
    opacity: 1;
  }

  .toastmsg input[type=checkbox] {
    position: absolute;
    top: -9999px;
    left: -9999px;
  }

  .toastmsg .fa-times-circle {
    float: right;
    margin-top: 8px;
    font-size: 30px;
    color: #ddd;
    text-align: right;
    z-index: 9;
    cursor: pointer;
  }

  .toastmsg .fa-times-circle:hover {
    color: #fff;
  }

  .toastmsg input[type=text] {
    width: 230px;
    height: 30px;
    font-size: 18px;
    margin: 5px 0 0 0;
    padding: 0 0 0 5px;
    border: 1px solid #555;
    /* Safari 3-4, iOS 1-3.2, Android 1.6- */

    -webkit-border-radius: 3px;
    /* Firefox 1-3.6 */

    -moz-border-radius: 3px;
    /* Opera 10.5, IE 9, Safari 5, Chrome, Firefox 4, iOS 4, Android 2.1+ */

    border-radius: 3px;
  }

  .toastmsg input[type=text] + input[type=text] {
    margin-left: 10px;
  }
  /* Initial bar stage  */

  .toastmsg input[type=checkbox] ~ #notification-bar {
    /* Animation */

    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    /* Start animation to go down */

    -webkit-animation-name: goDown;
    animation-name: goDown;
  }
  /* Close the bar */

  .toastmsg input[type=checkbox]:checked ~ #notification-bar {
    /* Animation */

    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    /* Start animation to go up */

    -webkit-animation-name: goUp;
    animation-name: goUp;
  }

  .toastmsg input[type=checkbox] ~ .fa-long-arrow-down {
    position: absolute;
    display: none;
    right: 10%;
    cursor: pointer;
  }

  .toastmsg input[type=checkbox]:checked ~ .fa-long-arrow-down {
    display: block;
    top: -35px;
    padding: 10px;
    font-size: 50px;
    color: #ffbe03;
    background-color: #444;
    /* Safari 3-4, iOS 1-3.2, Android 1.6- */

    -webkit-border-radius: 5px;
    /* Firefox 1-3.6 */

    -moz-border-radius: 5px;
    /* Opera 10.5, IE 9, Safari 5, Chrome, Firefox 4, iOS 4, Android 2.1+ */

    border-radius: 5px;
  }

  .toastmsg input[type=checkbox]:checked ~ .fa-long-arrow-down:hover {
    top: -15px;
    color: #ccc;
  }
  /* ANIMATION for go up */

  @-webkit-keyframes goUp {
    0% {
      -webkit-transform: none;
      transform: none;
    }
    100% {
      -webkit-transform: translate3d(0, -100px, 0);
      transform: translate3d(0, -100px, 0);
    }
  }

  @keyframes goUp {
    0% {
      -webkit-transform: none;
      transform: none;
    }
    100% {
      -webkit-transform: translate3d(0, -100px, 0);
      transform: translate3d(0, -100px, 0);
    }
  }
  /* ANIMATION for go down */

  @-webkit-keyframes goDown {
    0% {
      -webkit-transform: translate3d(0, -100%, 0);
      transform: translate3d(0, -100%, 0);
    }
    100% {
      -webkit-transform: none;
      transform: none;
    }
  }

  @keyframes goDown {
    0% {
      -webkit-transform: translate3d(0, -100%, 0);
      transform: translate3d(0, -100%, 0);
    }
    100% {
      -webkit-transform: none;
      transform: none;
    }
  }

  .find-me {
    position: relative;
    margin: 100px;
    color: #fff;
  }

  .find-me a {
    color: #fff;
  }



/* toast */
.LoginTxtBox
{
    border: 1px solid #ced4da !important;
    border-radius: 0.25rem;
    border-top-right-radius: 0 !important;
    border-bottom-right-radius: 0 !important;
}
.btn-outline-success, .btn-outline-success i
{
    color: #2ab57d;
    border-color: #2ab57d;
}
.btn-outline-success:hover i
{
    color: #fff;
}

.btn-outline-primary:hover i
{
    color:#fff !important;
}
.btn-primary i{
    color:#fff !important;
}
.btn-outline-danger i
{
    color: #fd625e  !important;
}
.btn-outline-danger:hover i
{
    color: #fff  !important;
}
.btn-light i{
    color: #fff  !important;
}
/* .modal-body h4 {
    text-transform: capitalize  !important;
    font-weight: normal;
    color: var(--GreenDark);
    margin-bottom: 0px;
    font-family: normal;
} */
.input-group .input-group-text
{
border: none;
background: #fff;
}
/* #startdate, #starttime
{
    border-left:none !important;
} */
.jobdetailcrd
{
   /* border: 1px solid var(--tblbrd) !important; */
   padding: 4PX;
   margin-bottom: 15px;
   position: relative;
   background: #fff;
   box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}
.navdpd
{
    border: 1px solid var(--tblbrd);
    border-top-left-radius: 0.25rem;
    border-bottom-left-radius: 0.25rem;
    padding-left:10px;
    border-right: 0px;
}
.btn-soft-info
{
border:1px solid;
}
.navdpd:focus
{
    outline: none;
}
.jobdetailcrd h6{
color:#000;
}
.input-group input
{
 border: none;
    border-left: 1px solid var(--TxtBoxBrd);
}
.BrdNoneCls
{
    border-left: none !important;
}
.BRdLftCls {
    border: none;
    border-left: 1px solid var(--TxtBoxBrd) !important;
    border-right: 1px solid #fd625e !important;
}
.mm-active>i {
    color: var(--GreenLight)!important;
}
.btn-success .fas,.btn-success .fa
{
    color:#fff  !important;
}
.fa-edit, .fa-search, .fa-trash, .fa-print
{
    color: var(--GreenDark) !important;
}
.fa-pen, .fa-magnifying-glass, .fa-trash-can, .fa-print, .fa-ellipsis-vertical
{
    color: var(--GreenDark) !important;
}
.btn-soft-warning, .btn-soft-success
{
    border:1px solid;
}
body {
    background: var(--BodyBg);
}
.DarkI
{
    color: var(--GreenDark) !important;
}
.ALink
{
    color: var(--GreenDark) !important;
}
.ALink:hover
{
    color: var(--GreenDark);
}
.bg-clr{
    background: var(--GreenTbl) !important;

}
.bg-clr h5{
    color: var(--GreenDark) !important;
}
.tabe_hight::-webkit-scrollbar{
    width: 7px;
}
.tabe_hight::-webkit-scrollbar-thumb{
    background: var(--GreenDark);
    border-radius: 10px;
}
.tabe_hight::-webkit-scrollbar-track{
    box-shadow: inset 0 0 5px grey;
  border-radius: 10px;
}
.btn-outline-primary {
    color: var(--GreenDark);
    border-color: var(--GreenDark);
}
.btn-outline-primary:hover {
    color: #fff;
    background-color: var(--GreenDark);
    border-color: var(--GreenDark);
}
.servicetit {
    font-size: 18px;
    margin-bottom: 15px;
    color: var(--GreenDark);
}
.TabTxt
{
    color: var(--GreenDark) !important;
    border: 2px solid var(--GreenDark) !important;
}
.nav-pills .nav-link.active, .nav-pills .show > .nav-link {
    color: var(--GreenDark);
    background-color: var(--GreenTbl);
}
.notification-item .d-flex:hover {
    background-color: #c2cfba;
}
.BtnFilter
{
    height: 37px;
    text-align: center;
    vertical-align: middle;
    cursor: pointer;
    border: 1px solid transparent;
    padding: 0.47rem 0.75rem;
    font-size: 0.875rem;
    border-radius: 0.25rem;
    background: var(--GreenDark);
    color: #fff !important;
}
.linkicon {
    color: var(--GreenDark) !important;
    font-size: 25px !important;
}
.reqmapicon {
    padding: 10px;
    border: 1px solid #000;
    color: var(--GreenDark);
    background-color: transparent;
    border-color: var(--GreenDark);
    padding-top: 0.25rem;
    padding-bottom: 0.25rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 2.25rem;
    padding: 0.5rem 0.75rem;
    font-weight: 700;
    font-size: 0.875rem;
    line-height: 1;
    border-radius: 0.125rem;
}
.fc-prev-button .fa, .fc-next-button .fa
{
    color:#fff;
}
.fc-today-button
{
    background-color: var(--GreenDark);
}
/* tabs css */

.nav-tabs-custom .nav-item .nav-link:after {
    content: "";
    background: var(--GreenDark);
    height: 1px;
    position: absolute;
    width: 100%;
    left: 0;
    bottom: -1px;
    -webkit-transition: all 0.25s ease 0s;
    transition: all 0.25s ease 0s;
    -webkit-transform: scale(0);
    transform: scale(0);
}
.header-profile-user {
    background-color: var(--GreenDark) !important;
}
.PrflRound {
    background: #000 !important;
}
.nav-tabs-custom .nav-item .nav-link {
    color: #000;
    font-weight: 600;
}
.nav-tabs-custom .nav-item .nav-link i{
    color: #000;
}
.nav-tabs-custom .nav-item .nav-link.active {
    color: #000;
    background: var(--GreenTbl) ;
    font-weight: 600;
}
.nav-tabs-custom .nav-item .nav-link.active i{
    color: #000;
}
.nav-link:focus, .nav-link:hover {
    color:var(--GreenDark);
    text-decoration: none;
}
.PaddingCal
{
    padding: 20px;
}
/* tabs css */

.form-check-input:checked {
    background-color: var(--GreenDark);
    border-color: var(--GreenDark);
}

.bg-overlay {
    position: absolute;
    height: 100%;
    width: 100%;
    right: 0;
    bottom: 0;
    left: 0;
    top: 0;
    opacity: .7;
    background-color: #000;
    background-color: var(--GreenDark) !important;
}
.mm-active>a, .mm-active>a i, .mm-active>a svg {
    color: var(--GreenLight) !important;
}
.app-search .btn-primary
{
    box-shadow: none  !important;
}
/* .UserPrflBtn
{
    background: var(--GreenTbl) !important;
} */
.BgBdyCls
{
    background: var(--BodyBg) !important;
}
.HeadFormCls
{
    /* background: var(--GreenTbl);  */
    color: var(--GreenDark)  !important;
    font-size: 20px;
    min-height: 50px;
    height: 100%;
    padding: 10px;
    /* border-top-right-radius: 20px;
    border-top-left-radius: 20px; */
    padding-top: 6px;
     margin-bottom: 0px;
     /* border-bottom:1px solid var(--tblbrd); */
     font-family: 'Lexend Deca';
}
.BdySpcCls
{
    padding:10px;
}
.ClientReqCrd
{
    border: none;
    border-radius: 20px;
    background: #fff;
    /* box-shadow: 0 10px 20px rgb(0 0 0 / 12%), 0 4px 8px rgb(0 0 0 / 6%); */
    /* border: 1px solid var(--tblbrd); */
    margin-bottom: 20px;
    /* overflow: hidden; */
}
.BtnPlus
{
    background-color: var(--btncolor)  !important;
    color:#fff;
    margin-left: 10px;
}
.BtnPlus .fa-plus
{
    color: #fff;
}
.BtnPlus:hover{
    color: var(--GreenTbl);
}
.h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6{
    color:#000
}
.mrgntopsrch{
    margin-top: 30px;
}
.LblColor
{
    color: #000;
}
.form-check-input:focus
{
    box-shadow: none;
}
.MrgnBtm
{
    margin-bottom: 10px;
}
button.btn.btn-danger {
    color: #fd625e;
    background-color: #d7535000;
    border-color: #fd625e;
    /* margin-top: 10px !important; */
    float: right;
    padding: 9px 14px;
    font-weight: bold;
    box-shadow: none;
    height: 44px;
}
.accordion-button:not(.collapsed) {
    color: #fff;
    background-color: var(--btncolor);
    -webkit-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.125);
    box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.125);
}
.accordion-button:not(.collapsed):after {
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3E%3Cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 01.708 0L8 10.293l5.646-5.647a.5.5 0 01.708.708l-6 6a.5.5 0 01-.708 0l-6-6a.5.5 0 010-.708z'/%3E%3C/svg%3E");
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
}
.accordion-item {
    background-color: #e8f1fc;
    border: unset;
    margin-bottom: 10px;
    border-radius: 10px !important;
    overflow: hidden;
}
.TxtBoxDesign {
    border: 1px solid var(--TxtBoxBrd);
    height: 44px;
    border-radius: 4px;
    /* background: #fff; */
    margin-bottom: 10px;
    font-size: 14px;
}
.TxtBoxDesign:focus
{
    border:1px solid var(--TxtBoxBrd);
}
.TxtBoxDesign::placeholder
{
    color: var(--PlaceHolder);
}
.TxtAreaBoxDesign {
    border: 1px solid var(--TxtBoxBrd);
    border-radius: 4px;
    background: #fff;
    margin-bottom: 10px;
}
.TxtAreaBoxDesign:focus
{
    border:1px solid var(--GreenDark);
}
.TxtAreaBoxDesign::placeholder
{
    color: var(--PlaceHolder);
}
.InputCheck .form-check-input:checked {
    background-color: var(--GreenDark);
    border-color: var(--GreenDark);
}
.SubCard
{
    /* border-radius: 20px; */
    background: #fff;
    /* box-shadow: 0 10px 20px rgb(0 0 0 / 12%), 0 4px 8px rgb(0 0 0 / 6%);    */
    /* border: 1px solid var(--tblbrd); */
     background: #fff !IMPORTANT;
      /* overflow: hidden;  */
      border:none;
}

.SubCard .SubCard
{
    border:none;
    outline:none;
    border-radius:0px;
}
.SubCard .SubCard .HeadFormCls {
    border: none;
    border-top-right-radius: 0px;
    border-top-left-radius: 0px;
    background: #e9f2fb;
}
.SubCard .SubCard .BdySpcCls
{
    padding-left:0px;
    padding-right:0px;
}
.ClientReqCrd .ClientReqCrd
{
    border:none;
    outline:none;
    border-radius:0px;
}
.ClientReqCrd .ClientReqCrd .HeadFormCls
{
    border:none;
    border-top-right-radius: 0px;
    border-top-left-radius: 0px;
}
.ClientReqCrd .ClientReqCrd .BdySpcCls
{
    padding-left:0px;
    padding-right:0px;
}
.app-search .form-control {
    border: none;
    height: 40px;
    padding-left: 17px;
    padding-right: 15px;
    background-color: #fff;
    color: #000;
    -webkit-box-shadow: none;
    box-shadow: none;
    border: 1px solid var(--tblbrd);
}
.DotBrd
{
    border: 2px dashed var(--TxtBoxBrd) !IMPORTANT;
    padding: 20px;
    margin-bottom: 1rem;
}
.FileDropBtn
{
    color:var(--TxtBoxBrd) !important;
    border-color:var(--btncolor) !important;
    box-shadow: 0 2px 6px 0 var(--btncolor);
}
.BtnselectClient
{
    background-color:var(--btncolor) !important;
    border-color: var(--btncolor) !important;
    box-shadow: 0 2px 6px 0 var(--btncolor) !important;
    color: #fff;
}
.BtnselectClient:hover{
    color: #fff;
}
.HeadLbl{
    color: #fff;
    padding-top: 5px;
}
.AddItemBtn
{
    color: var(--GreenDark);
    background-color: var(--GreenLight);
    border-color:var(--GreenLight);
}
.Padding15 {
    padding-top: 10px !important;
}
#sidebar-menu
{
/* background: #fff; */
    /* background: rgb(255 255 255 / 47%);
    backdrop-filter: blur(60px) brightness(1.1); */
}
.Padding20
{
    padding:20px;
}
/* header css */

.footer
{
  border: 1px solid var(--GreenTbl);
    color:var(--GreenDark);
    position: fixed;
}
.navbar-header
{
    /* #f9fafc */
    /* background: #fff;  */
    background: rgb(255 255 255 / 47%);
    backdrop-filter: blur(60px) brightness(1.1);
}
.vertical-menu-btn .fa, .fas, .fa-solid {
    /* color:var(--TxtBoxBrd); */
    color: #000;
}
.logo-txt {
    font-weight: 700;
    font-size: 18px;
    vertical-align: middle;
    margin-left: 5px;
    color: #000;
}

#sidebar-menu ul li a i {
        /* width: 1.5rem; */
    display: flex;
    align-items: center;
    justify-content: center;
    /* margin-right: 0.8rem; */
    /* min-width: 1.75rem; */
    padding-bottom: 0.125em;
    font-size: 18px;
    line-height: 1.40625rem;
    vertical-align: middle;
    color: var(--GreenDark);
}
#sidebar-menu ul li a {
    position: relative;
    display: flex;
    align-items: center;
    padding: 0.6rem 1.5rem;
    color: #000;
    border-left: 2px solid transparent;
    transition: all 0.2s;
    margin: 0.25rem 0;
    font-weight: 500;
    font-size: 0.85rem;
    gap: 5px;
}
#sidebar-menu ul li a img{
    width: 25px;
}
#sidebar-menu ul li a.active{
    color: var(--GreenDark) !important;
    font-weight: 600;
    border-left: 5px solid var(--GreenDark);
    background-color: #fff;
    /* var(--GreenTbl) */
        border-top: 1px solid var(--GreenTbl);
    border-bottom: 1px solid var(--GreenTbl);
}

#sidebar-menu ul li ul.sub-menu li a {
     color: #000;
}
.mm-active>a i{
     color: var(--GreenDark) !important;
}
#sidebar-menu ul li a.active:hover{
    color: var(--GreenDark);
    font-weight: 600;
    border-left: 5px solid var(--GreenDark);
    /* background-color: var(--GreenTbl); */
}
#sidebar-menu ul li a.active i{
    color: var(--GreenDark) !important;
}
.fa, .fas, .fa-solid {
    color:var(--GreenDark);
}

.menu-title {
    padding: 10px 20px!important;
    pointer-events: none;
    cursor: default;
    font-size: 12px;
    color: var(--GreenDark);
    margin-top: 15px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
}
#toggle_btn {
    display: flex;
    align-items: center;
    -webkit-box-align: center;
    justify-content: center;
    position: absolute;
    opacity: 1;
    right: -13px;
    width: 25px;
    height: 25px;
    color: rgb(255, 255, 255);
    cursor: pointer;
    background: rgb(254, 159, 67);
    border-radius: 50%;
}
.simplebar-content-wrapper {
    /* background: #fff; */
          /* background: var(--GreenTbl); */
          background: rgb(255 255 255 / 47%);
    backdrop-filter: blur(60px) brightness(1.1);
}

.navbar-brand-box {
border-right: none;
    box-shadow: none; 
border-right:none;
background:transparent;
}
.simplebar-mask
{
    /* background:var(--GreenDark)  !important; */
    background: linear-gradient(to bottom, #e9eff9 0%, #ccecf8 40%, #c5cbf7 70%, #a6cbfd 100%) !important;
    /* background: radial-gradient(circle, #ffffff, #bae7ff, #caceff); */
    /* background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(165, 201, 255, 0.9), rgb(216 189 255 / 90%)); */
    /* background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(165, 201, 255, 0.9), rgba(255, 255, 255, 0.9)); ; */
}
#sidebar-menu ul li a:hover, #sidebar-menu ul li a:hover i {
    color: var(--GreenDark) !important;
}
#sidebar-menu ul li a:hover{
    background:#fff;
}
#sidebar-menu ul li a:hover svg {
    color: var(--GreenLight) !important;
  }
  .btn-primary {
  color: #fff !important;
  background-color: var(--btncolor) !important;
  border-color: var(--btncolor) !important;
  }
  .btn-check:focus + .btn-primary, .btn-primary:focus, .btn-primary:hover {
    color: #fff;
    background-color:var(--btncolor);
    border-color: var(--btncolor);
    box-shadow:none;
    }
    .header-item, .header-item:hover {
    color:var(--headcolor) !important;
    }

    .noti-icon i {
        font-size: 22px;
        color: var(--GreenDark) !important;
        }
        .text-info {
        color:var(--GreenLight) !important;
        }
        .bg-soft-info {
        background-color: var(--GreenDark) !important;
        }
        .bg-soft-success {
        background-color: var(--GreenDark) !important;
        }
        .text-success {
        color:var(--GreenLight) !important;
        }
        .text-muted {
        color: var(--GreenDark) !important;
        }
        body[data-sidebar-size=sm] .vertical-menu #sidebar-menu>ul>li:hover>a {
            background-color: var(--GreenDark) !important;
            }
            body[data-sidebar-size=sm] .vertical-menu #sidebar-menu>ul ul {
                background-color: #fff !important;
                border: 1px solid var(--GreenTbl);
            }
            body[data-sidebar-size=sm] .vertical-menu #sidebar-menu>ul>li:hover>a i {
            color: var(--HoverTxt) !important;
            background: transparent;
            }
            body[data-sidebar-size=sm] .vertical-menu #sidebar-menu>ul>li:hover>a {
            color: var(--HoverTxt) !important;
            }
            body[data-sidebar-size=sm] .vertical-menu #sidebar-menu>ul>li:hover>ul a {
                color: #000;
            }
            /* body[data-sidebar-size=sm] .vertical-menu #sidebar-menu>ul>li:hover>ul a:hover {
            color: #000 !important;
            } */
            body[data-sidebar-size=sm] .vertical-menu #sidebar-menu>ul>li:hover>a svg {
            color: var(--GreenLight) !important;
            }
            .NewTblCls thead tr th
{
background:#E4EFE7 !important;
color:var(--GreenDark) !important;
}
#sidebar-menu .has-arrow:after {
       position: absolute;
    right: 20px;
    font-size: 20px;
    background: var(--GreenDark);
    color: #fff;
    border-radius: 50%;
    height: 20px;
    display: flex;
    align-items: center;
}
.metismenu li {
    display: block;
    width: 100%;
    position: relative;
}
.vertical-menu {
width: 250px;
/* z-index: 1001; */
z-index: 998;
background: #fff !important;
bottom: 0;
margin-top: 0;
position: fixed;
top: 70px;
border-right: 1px solid var(--GreenTbl);
}
.apex-charts text {
    font-family: var(--bs-font-sans-serif)!important;
    fill: #000 !important;
    text-transform: uppercase;
    font-size: 16px;
    font-weight: bold;
}
.btn-success {
    background-color: var(--btncolor) !important;
    border-color: var(--btncolor) !important;
    box-shadow: 0 2px 6px 0 var(--btncolor) !important;
}
.btn-successed {
    background-color: #28a745 !important;
    border-color: #28a745 !important;
    box-shadow: 0 2px 6px 0 #28a74570 !important;
    color: #fff;
}

/* header css */
/* dashboard css */
.LinkTxtTbl
{
    color: var(--GreenDark);
}
.TxtDashCrd
{
    color: var(--TxtDashTop);
    font-size: 20px;
    font-weight:600;
    font-family: Lexend Deca;
}
.ImgHeadCrd {
    width: 30px;
    height: 30px;
    margin-right: 10px;
}
.ColorTxt
{
    color: #000;
}
.card-job{
    background: #fff;
    box-shadow: 0 6px 10px rgba(0,0,0,.08), 0 0 6px rgba(0,0,0,.05);
    transition: .3s transform cubic-bezier(.155,1.105,.295,1.12),.3s box-shadow,.3s -webkit-transform cubic-bezier(.155,1.105,.295,1.12);
    padding: 15px 80px 5px 36px;
    cursor: pointer;
}
.card-job:hover{
    transform: scale(1.05);
box-shadow: 0 10px 20px rgba(0,0,0,.12), 0 4px 8px rgba(0,0,0,.06);
}
.card-job h3{
font-weight: 600;
}
.card-job img{
/* position: absolute; */
top: 20px;
right: 15px;
max-height: 120px;
}
.card-1Old {
/* display: flex; */
background-color: #f3ffe9;
/* border-left: 2mm ridge #32CD32; */
/* justify-content: space-between; */
padding: 0px;
align-items: center;
border-radius: 20px;
flex-direction: column-reverse;
/* padding-left: 20px; */
border: 1px solid #008000;
margin-bottom: 20px;
height: 105px;
text-align: center;
}
.card-1 {
    display: flex;
    background-color: #fff;
    /* border-left: 2mm ridge #32CD32; */
    justify-content: space-between;
    padding: 0px;
    align-items: center;
    border-radius: 2rem 0;
    /* flex-direction: column-reverse; */
    /* padding-left: 20px; */
    border: 1px solid var(--GreenDark);
    margin-bottom: 10px;
    height: 60px;
    text-align: center;
    padding-left: 20px;
}
.tdclient
{
    color:#e6744a;
    font-weight: bold;
}
.nftnbadge
{
    z-index: 8;
    margin-left: -20px;
}
.tdheadupper {
    font-size: 16px !important;
    text-transform: uppercase !important;
}
.tdmdlspc
{
    padding-top: 25px !important;
    text-transform: uppercase !important;
}
.mrgntoplist
{
    padding-top:40px !important;
}
.vendorname
{
    margin-top: 3%;
    font-weight: bold;
    font-size: 18px;
    color:#000;
}
.BtmMdlCrd
{
    display: flex;
    background-color: #f3ffe9;
    justify-content: space-between;
    padding: 10px;
    align-items: center;
    border-radius: 25px;
    flex-direction: column;
    border: 1px solid #008000;
    margin-bottom: 20px;
    height: auto;
    text-align: center;
    cursor: pointer;
}
.ImgBG {
    padding: 5px;
    background: var(--GreenDark);
    border-radius: 1rem 0;
    margin-right: 7px;
    margin-top: 11px;
    margin-bottom: 15px;
}
.ImgBG img
{
    height: 32px !important;
}
.ImgBG2
{
    padding: 7px;
    background: #B4E197;
    border-radius: 50%;
    margin-right: 0px;
    margin-bottom: 15px;
}
.card-1 h5
{
margin-bottom: 0px;
}
.card-2{
    /* background-color:#89CFF0;
    background-image: url(assets/images/upcoming.png);
    background-repeat: no-repeat;
    background-position: right;
    background-size: 45px;
    border-left: 2mm ridge #8fc4f1; */


    display: flex;
background-color: #ECFFDC;
border-left: 2mm ridge #32CD32;
justify-content: space-between;
padding: 10px;
align-items: center;
border-radius: 5px;
margin-bottom:20px;
}
.card-3{
    /* background-color:#B9D9EB;
    background-image: url(assets/images/onhold.png);
    background-repeat: no-repeat;
    background-position: right;
    background-size: 45px;
    border-left: 2mm ridge #8fc4f1; */

    display: flex;
background-color: #ECFFDC;
border-left: 2mm ridge #32CD32;
justify-content: space-between;
padding: 10px;
align-items: center;
border-radius: 5px;
margin-bottom:20px;
}
.card-4{
    /* background-color:#87CEFA;
    background-image: url(assets/images/completed.png);
    background-repeat: no-repeat;
    background-position: right;
    background-size: 45px;
    border-left: 2mm ridge #8fc4f1; */

    display: flex;
background-color: #ECFFDC;
border-left: 2mm ridge #32CD32;
justify-content: space-between;
padding: 10px;
align-items: center;
border-radius: 5px;
margin-bottom:20px;
}
.card-5{
    /* background-color:#87CEEB;
    background-image: url(assets/images/rejected.png);
    background-repeat: no-repeat;
    background-position: right;
    background-size: 45px;
    border-left: 2mm ridge #8fc4f1; */

    display: flex;
background-color: #ECFFDC;
border-left: 2mm ridge #32CD32;
justify-content: space-between;
padding: 10px;
align-items: center;
border-radius: 5px;
margin-bottom:20px;
}
.card-6{
    /* background-color: #B9D9EB;
    background-image: url(assets/images/cancelled.png);
    background-repeat: no-repeat;
    background-position: right;
    background-size: 45px;
    border-left: 2mm ridge #8fc4f1; */

    display: flex;
background-color: #ECFFDC;
border-left: 2mm ridge #32CD32;
justify-content: space-between;
padding: 10px;
align-items: center;
border-radius: 5px;
margin-bottom:20px;
}
.notification-item .d-flex:hover {
background-color: #f8f9fa;
}
.notification-item .d-flex:hover h6{
color:#495057  !important;
}
.notvalid {
    font-size: 18px;
    font-weight: 600;
    padding: 15px;
    display: flex;
}
.quttxt {
    font-weight: 500;
    color: #000;
    font-size: 15px;
    padding-top: 2px;
    padding-bottom: 2px;
}
.qutsubtxt
{
    font-weight: 500;
    color: #000;
   font-size: 15px;
    padding-top: 2px;
    padding-bottom: 2px;
    text-align: end;
}
.qutslcttxtleft
{
    font-weight: bold;
    color: #2b941c;
   font-size: 15px;
    padding-top: 2px;
    padding-bottom: 2px;
    text-align: start;
}
.qutslcttxtright
{
    font-weight: bold;
    color: #2b941c;
   font-size: 15px;
    padding-top: 2px;
    padding-bottom: 2px;
    text-align: end;
}
.modal .popover,.modal .twipsy{z-index:12000;}
/* .dvcenter {
    text-align: center;
    background: #faf8f7;
    padding: 14px 0px 5px 0px;
    border: 1px solid #cdcdcd;
    margin-top: 10px;
    border-radius: 0px;
} */
.dvcenter {
    text-align: center;
    background: #ecffdc;
    padding: 14px 0px 5px 0px;
    border: 2px solid #fff;
    margin-top: 10px;
    border-radius: 0px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}
.jobtitl
{
    color:#000;font-weight:700;font-size: 15px;text-align:start;
}
.dvsectxt
{
    font-size: 10px;margin-top: 5px;color: #008000;font-weight: bold;
}
.dvcenter i, .dvcenter .titlespan
{
    color:#fff  !important;
        font-size: 14px;
    margin-bottom: 2px;
}
.brdqut
{
   border-bottom: 1px solid var(--tblbrd);
   padding-bottom: 5px;
    padding-top: 5px;
}
.mrgnzero .row
{
    margin: 0px;
}
.mrgnzero
{
    margin-bottom: 20px;
}
.pad_topbtm {
    padding-top: 5px !important;
    padding-bottom: 5px !important;
}
.spanbtndet{
    display: flex;
    align-items: center;
    align-content: center;
    justify-content: space-around;
    flex-direction: column;
}
#shwdetailbody
{
    overflow-x: hidden;
    overflow-y: auto;
    text-align:justify;
}
.job-detail{
    border: none !important;
}
.TblTxtCls
    {
        font-size:10px;
    }
    .RowColorCls
    {
        background:#e9e9ef;
        color:#000;
    }
    /* .HoverTrCls td:hover
    {
        background-color: #E4EFE7  !important;
        cursor: pointer;
    } */
    .DashCard
    {
        border: 1px solid var(--tblbrd) !important;
        border-radius: 20px;
        background: #fff;
        /* box-shadow: 0 10px 20px rgb(0 0 0 / 12%), 0 4px 8px rgb(0 0 0 / 6%);  */
        box-shadow: 0 10px 20px rgb(0 0 0 / 0%), 0 4px 8px rgb(0 0 0 / 0%);
            border: 1px solid #e9e9ef;
        cursor:pointer;
        overflow: hidden;
        margin-bottom: 30px;
    }
    .mm-active .active, .mm-active .active svg {
        color: var(--activeclr) !important;
        background-color: var(--sidebaractivebg);
    }
    .mm-active .active i{
         color: var(--activeclr) !important;
    }
/* dashboard css */

/* Main class of bootstrap replaced by my class */
.TxtSuccess
{
    color: var(--GreenLight);
}
.TxtMuted
{
    color: var(--GreenDark);
}
/* breadcrum css */
.breadcrumb-item > a {
    color: #000;
}
.breadcrumb-item.active {
    color:var(--GreenDark);
    font-weight: bold;
}
.link-primary {
    color: var(--GreenDark)  !important;
}
.apexcharts-legend {
    right: 30px !important;
}
/* breadcrum css */
/* job detail page css */

.AlignCls
{
    display:flex;
    /* align-items:center; */
}
.LocationImg
{
    height:25px;
    margin-right:10px;
}
.BdyColor
{
    background:#fff;
}
.offcanvas-header
{

    border-bottom: 1px solid #ccc;
}
.brdTitle
{
    background:var(--GreenDark);
    height:5px;
    border-radius:10px;
    width:100%;
    margin-bottom:10px;
}
.JobIdTxt
{
    color: var(--GreenDark);
    font-weight: bold;
}
.JobDetailCard
        {
            border: none;
    border-radius: 20px;
    background: #fff;
    border: 1px solid #cdcdcd !important;
    overflow: hidden;
    margin-bottom:20px;
        }
.btn-light
{
    background-color: var(--btncolor) !important;
    border-color: var(--btncolor) !important;
    box-shadow: 0 2px 6px 0 var(--btncolor) !important;
    color: #fff !important;
}
.accordion-button
{
    background: var(--GreenTbl);
    font-size: 18px;
    color: #000;
    font-weight: bold;
}
.accordion-button:after {
    width: 25px;
    height: 25px;
    background-size: 25px;
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23000'%3E%3Cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 01.708 0L8 10.293l5.646-5.647a.5.5 0 01.708.708l-6 6a.5.5 0 01-.708 0l-6-6a.5.5 0 010-.708z'/%3E%3C/svg%3E");
}
.DotBrd label span{
    color:var(--GreenDark) !important;
}
tr:hover td {
    background-color:#c1c1c114 !important;
    cursor: pointer;
}
.fc-body tr:hover td {
    background-color:#fff !important;
    cursor: pointer;
}
.TblIconCls
{
    height: 20px;
    margin-right: 10px;
}
.page-item.active .page-link {
    z-index: 3;
    color: #fff;
    background-color: var(--GreenDark) !important;
    border-color: var(--GreenDark) !important;
}
.table > :not(:last-child) > :last-child > * {
    background: var(--GreenTbl) !important;
    color:#000 !important;
    font-size:15px;
    border-bottom-color: var(--tblbrd);
}
.PaddingLftRht
{
    padding-left: 1.25rem;
    padding-right: 1.25rem;
}
.bgmdl
{
    background:#f8f6f4b3;
}
/* select 2 css */
.table-nowrap td, .table-nowrap th {
     white-space: unset !important;
}
.select2-search__field:focus-visible
{
    outline:none;
}

.SlctDpd .select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 26px;
    position: absolute;
    top: 8px;
    right: 1px;
    width: 20px;
}
.SlctDpd .select2-container .select2-selection--single {
    box-sizing: border-box;
    cursor: pointer;
    display: block;
    height: 44px;
    user-select: none;
    -webkit-user-select: none;
    border: 1px solid var(--TxtBoxBrd);
}
.SlctDpd .select2-container--default .select2-selection--single .select2-selection__rendered {
    color: #444;
    line-height: 40px;
}

/*  */
.reqdpd .select2-container--default .select2-selection--single .select2-selection__arrow b{
     background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e");
    background-color: transparent;
    background-size: contain;
    border: none !important;
    height: 12px !important;
    width: 12px !important;
    margin: auto !important;
    top: 15px !important;
    left: auto !important;
    right: 15px;
    background-repeat: no-repeat;  
}
.reqdpd .select2-container .select2-selection--single {
    /* padding: 0px 14px; */
    font-size: 15px;
    border: 1px solid #bfbaba;
    border-radius: 8px;
    background: #ffffff;
    width: 100%;
    box-sizing: border-box;
    cursor: pointer;
    display: block;
}
.reqdpd .select2-container--default .select2-selection--single .select2-selection__rendered {
    color: #000;
    line-height: 40px;
}
.reqdpd .select2-container .select2-selection--single .select2-selection__rendered {
    padding-right: 30px;
}
/* select 2 css */

.AlignTxtCls
{
    padding-top: 5px;
    align-items: center;
}
.ColorWhite
{
    color: var(--GreenDark)  !important;
    margin-bottom: 0px  !important;
    font-size: 14px;
    font-family: 'Lexend Deca';
}

/* Bottom  offcanvas css*/

.offcanvas-bottom, .offcanvas-top {
    right: 0;
    left: 0;
    height: 50vh;
    max-height: 100%;
}

.ColorHeadCrd
{
    color: var(--GreenDark);
}
span.spantit {
    border-radius: 2px;
    color: #28705f;
    border: 1px solid;
    background-color: #e2f3ef;
    display: inline-flex;
    align-items: center;
    padding: 0.375rem 0.5rem;
    font-size: 0.875rem;
    line-height: 1;
    text-align: center;
    text-transform: uppercase;
    margin-left: 1rem !important;
}
.iconreq {
    background-color: var(--GreenDark) !important;
    color: #fff;
    padding: 7px 12px;
    border-radius: 100%;
    font-size: 20px;
}
.MrgnTopMinus
{
    margin-top: -4px;
}
@media (min-width: 769px) and (max-width: 1024px){
    .twm-jobs-st5 .twm-jobs-category.outline {
        grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
    }
    .twm-jobs-st5 .twm-jobs-category.outline a {
        font-size: 11px;
    }
    .BtmMdlCrd {
        display: flex;
        background-color: #f3ffe9;
        justify-content: space-between;
        padding: 10px;
        align-items: center;
        border-radius: 25px;
        flex-direction: column;
        border: 1px solid #008000;
        margin-bottom: 20px;
        height: auto;
        text-align: center;
        padding-left: 24px;
        padding-right: 23px;
    }
    .colone {
        width: 15%;
    }
    .coltwo {
        width: 15%;
    }
    .colthree {
        width: 15%;
    }
    .colfour {
        width: 15%;
    }
    .colfive {
        width: 15%;
    }
    .close-sidebar-btn{
    display:none;
}
}
@media(max-width:768px)
{
    .twm-jobs-st5 .twm-jobs-category.outline {
        grid-template-columns: 1fr 1fr 1fr 1fr;
    }
    .twm-jobs-st5 .twm-jobs-category.outline a {
        font-size: 11px;
    }
    .colone {
        width: 15%;
    }
    .coltwo {
        width: 15%;
    }
    .colthree {
        width: 15%;
    }
    .colfour {
        width: 15%;
    }
    .colfive {
        width: 15%;
    }
    .vendorname {
        margin-top: 6%;
        font-weight: bold;
        font-size: 18px;
        color: #000;
    }
    .close-sidebar-btn{
        display:block;
    }
}
@media(max-width:767px){
    .close-sidebar-btn{
    display:block;
}
}
@media(max-width:414px)
{
    .colfive
    {
        width: 25% !important;
    }
    .colfour
    {
        width: 25% !important;
    }
    .colthree
    {
        width: 27% !important;
    }
    .coltwo
    {
        width: 20% !important;
    }
    .colone
    {
        width: 25% !important;
    }

}
@media (max-width:767px)
{
    .vertical-menu-btn .fa, .vertical-menu-btn .fas, .vertical-menu-btn .fa-solid {
        font-size: 20px !important;
    }
    .brddash{
        border-bottom: 1px dashed #dfe0e4;
        border-right:none;
        margin-bottom: 15px;
    }
    .twm-jobs-st5 .twm-jobs-category.outline {
        grid-template-columns: 1fr 1fr;
    }
    .twm-jobs-st5 .twm-jobs-category.outline a {
        font-size: 12px !important;
        text-align: start;
    }
    .imgupload{
        height:150px;
        width:auto;
        }
    .mrgntopsrch{
        margin-top: 10px;
    }
    .postab {
        position: absolute;
        top: -52px;
        width: 70%;
        font-size: 15px;
        color: #000;
        display: block;
    }
    .postab select{
        width:70% !important;
        margin-top: 5px !important;
        margin-bottom: 20px !important;
    }
    .dflxsrch{
        display: flex;
        justify-content: center;
    }
    .btnsrch
    {
        width: 100px;
    }
    .txtcntr{
        text-align: center;
    }

    .wdthauto{
        width:100%;
        font-size: 14px !important;
    }
    .btnmrgntop {
        margin-top:0;
    }
    .mrgnrght
    {
        margin-right:0px !important;
    }

    .colfive
    {
        width: 20%;
    }
    .colfour
    {
        width: 20%;
    }
    .colthree
    {
        width: 23%;
    }
    .coltwo
    {
        width: 15%;
    }
    .colone
    {
        width: 20%;
    }
    .TblReq tbody, td, tfoot, th, thead, tr {
        border-bottom: 1px solid var(--tblbrd) !important;
        font-size: 14px;
        color: #000;
    }
    .paragraph {
        margin-left: 0px;
        margin: 0px 17px 1.2rem;
    }
    .brdnonemob
    {
        border: none !important;
    }
    .brdnonemob td
    {
        background: none !important;
        border: none !important;
    }
    .DashCard {
        min-height: auto !important;
    }
    .vendorname {
        margin-top: 6%;
        font-weight: bold;
        font-size: 18px;
        color: #000;
    }

    .MrgnTopMinus
    {
        margin-top: 0px;
    }
    .table-users tbody tr {
        /* border: 2px solid #cdcdcd; */
        margin-bottom: 20px;
        /* border-bottom: 1px solid #cdcdcd; */
    }
    .table-users tbody tr td {
        display:flex;
        margin-bottom: 0px !important;
    }
    .table-users tbody tr td strong{
       margin-right: 10px;
        color:#000;
    }
    .table-users tbody tr td strong:after{
       content:':';
       margin-left:5px;
     }
    .table-users tbody tr td:last-child
    {
     margin-bottom: 0px !important;
    }
    .table-users tbody tr td:nth-child(odd) {
        background: #e9e9ef7f;
        padding: 0.5rem !important;
    }
    .table-users tbody tr td:nth-child(even) {
        /* background: #e8ebe8; */
        background: #fff !important;
        padding: 0.5rem !important;
    }

    .fc-right
    {
        float: right !important;
        display: flex  !important;
        clear: inherit !important;
    }
    .fc-day-grid-container
    {
        height: 336.5px !important;
    }
    .MobTxt
    {
        font-size: 12px !important;
    }
    .AlignTxtCls {
        padding-top: 0px;
        align-items: center;
    }
    .ColorWhite {
        color: var(--GreenDark);
        margin-bottom: 0px;
        font-size: 15px;
    }
    .MrgnTopMob {
        margin-top: 9px;
    }
    .LocationMapCls
    {
        height: 606px;
    }
    .Pad_mobView
    {
        padding:20px;
    }
    .TblTxtCls
    {
        font-size:10px;
    }
    .DashCard
    {
     padding:10px;
    }
    .JobDetailCard {
        padding:10px;
    }
    .CrdBody
    {
        padding:1.26rem  !important;
    }
    .HeadFormCls {
         /* background: var(--GreenTbl); */
        color: var(--GreenDark);
        font-size: 15px !important;
        min-height: 50px;
        height: 100%;
        padding: 10px;
        /* border-top-right-radius: 20px;
        border-top-left-radius: 20px; */
        padding-top: 10px;
        /* border-bottom:1px solid #e9e9ef; */
        font-family: 'Lexend Deca';
    }
   
    /* .HeadFormCls .h4
    {
        color: var(--GreenDark);
    } */
    .Padding15
    {
        padding-top: 15px !important;
    }
    .AddItemBtn {
        color: var(--GreenDark);
        background-color: var(--GreenLight);
        border-color: var(--GreenLight);
        height: 30px;
    }
    .BtnPlus {
        /* background-color: var(--GreenLight) !important; */
        margin-left: 20px;
        margin-top: 2px;
    }
}
@media (max-width:375px){
    .navbar-brand-box {
        padding: 0px 1rem;
    }
    .nav-link {
        padding: 0.5rem 0.5rem;
    }
    body:not([data-sidebar-size=sm]) #vertical-menu-btn {
       padding:0px !important
    }
}
@media(max-width:309px){
    body[data-sidebar-size=sm] .navbar-brand-box {
        width: 56px !important;
    }
}
/*
@media (min-width:289px) and (max-width:308px){
    .imgjob {
        display: none;
    }
} */
@media(max-width:314px){
    .navbar-brand-box .logo-sm img{
        height:25px !important;
        width: 25px !important;
    }
    .navbar-brand-box {
        padding: 0px 10px;
    }

    .noti-icon i {
        font-size: 20px !important;
        color: #7a7fdc;
    }
    .header-item, .header-item:hover {
        color: var(--headcolor) !important;
        padding: 0 10px;
    }
    .startjobbtn {
        background: var(--GreenDark) !important;
        color: #fff !important;
        height: 30px;
        border-radius: 20px;
        padding-top: 4px;
        font-size: 13px !important;
    }
    .imgjob {
        width: 25px;
        background: #fff;
        border-radius: 50%;
        padding: 2px;
        margin-left: -7px;
        /* display: none; */
    }
    .header-profile-user {
        height: 25px;
        width: 25px;
        background-color: #74788d;
        padding: 3px;
    }

    .vertical-menu-btn .fa, .fas, .fa-solid {
        font-size: 16px !important;
    }
    }
    @media(max-width:275px){
        .imgjob {
            display: none;
        }
    }
@media only screen and (max-width: 40em) {
    .footer {
        display: none;
    }
}

@media only screen and (min-width: 40em) {
    .footer {
        display: block;
    }
}
/* sonal css ends here */



/* add by temporary css by priyank start here */
@media (max-width:767px){
    .navbar-header{
        padding: 0 ! important;
    }
    .vertical-menu {
    border-right: 2px solid var(--GreenTbl);
}
#page-topbar {
    border-bottom: 2px solid var(--GreenTbl) !important;
}
}

a.atagcolor{
    color: var(--GreenDark) !important;
}

a.atagcolor:hover {
    color: var(--btncolor) !important;
    text-decoration: underline;
}
/* add by temporary css by priyank ends here */


.align-justify {
    justify-content: space-between;
}
#image-preview {
    display: flex;
    flex-wrap: wrap;
}
.thumbnail
{
    border: 1px solid #000;
    padding: 6px;
    width: 100px;
    height: 100px;
}
span.remove-button {
    position: absolute;
    background: #fff;
    margin-left: -14px;
    margin-top: -15px;
    padding: 5px;
    border: 1px solid #000;
    border-radius: 50%;
    font-size: 15px;
    width: 30px;
}
.thumbnail-container {
    margin: 10px;
    margin-top: 32px;
}

/* job expense */
.input-block .input-group-text {
    position: relative;
    -webkit-box-flex: 1;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    width: 1%;
    min-width: 0;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
    border: 1px solid var(--TxtBoxBrd) !important;
}
.input-block #frames2{
    padding:10px;
}
.input-block .RearangeBox.imgThumbContainer i.fa.fa-times.imgRemoveBtn {
    left: 28px !important;
}
.upload-sign {
	float: right;
	margin-top: 20px;
}
.upload-sign .btn {
	min-width: 198px;
	border-radius: 8px;
	padding: 10px 0;
}

.service-upload {
    border: 2px dashed #e0e0e0;
    text-align: center;
    background-color: #ffffff;
    position: relative;
    margin: 0;
    padding-top: 15px;
}

.service-upload .drop-browse {
	font-size: 14px;
	font-weight: 500;
	color: #a0aabe;
	margin-bottom: 5px;
}

.service-upload .drop-browse p {
	font-weight: 500;
	font-size: 14px;
	color: #666666 !important;
}

.service-upload span {
	font-size: 13px;
	color: #858585;
	display: block;
}

.service-upload input[type="file"] {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	opacity: 0;
	cursor: pointer;
}

.service-upload-info {
	min-height: 58px;
}
.input-block .form-control {
    border: 1px solid var(--TxtBoxBrd) !important;
    box-shadow: none;
    border-radius: 4px;
    margin: 0;
    padding: 9px 12px;
    font-size: 14px;
    font-weight: 400;
    color: #3F4254;
}
.input-block .form-select {
    border: 1px solid var(--TxtBoxBrd) !important;
    box-shadow: none;
    border-radius: 4px;
    margin: 0;
    padding: 9px 12px;
    font-size: 14px;
    font-weight: 400;
    color: #3F4254;
}
.input-block label{
    margin: 0 0 8px 0;
    font-weight: 500;
    font-size: 14px;
    color: #282828;
}
.custwdthmdl .modal-dialog-scrollable .modal-body {
    overflow-y: auto;
    max-height: calc(100vh - 200px);
}
.bordered-card-with-title {
  position: relative;
  border: 1px solid var(--GreenDark);
  padding: 15px;
  margin-top: 20px;
  margin-bottom: 20px;
  border-radius: 8px;
}

.card-border-title {
  position: absolute;
  top: -0.8em;
  left: 20px;
  background: #FCFCFD;
  padding: 0 10px;
  font-weight: bold;
  font-size: 1.1em;
  color: var(--GreenDark);
}

.card-body-content {
  margin-top: 10px;
  font-size: 0.95em;
  line-height: 1.5;
}
@media(min-width:769px) and (max-width:1024px){
    .custmdlwidth{
        max-width: 90%;
    }
}

/* job expense */



/* Unique Modal Styling */
.sli-jobassist-welcome-modal .modal-dialog {
  z-index: 10;
}

.sli-jobassist-welcome-modal .modal-content {
  background: white;
  border: none;
  border-radius: 20px;
  box-shadow: 0px 10px 40px 5px rgba(0, 0, 0, 0.15);
  overflow: hidden;
  border: 5px solid #2b76e1;
}

.sli-jobassist-welcome-modal .modal-body {
  position: relative;
  padding: 2rem;
  text-align: center;
}

.sli-jobassist-welcome-modal .modal-body .image {
  height: 200px;
}

.sli-jobassist-welcome-modal .modal-body h1 {
  margin-top: 1rem;
  font-weight: 700;
}

.sli-jobassist-welcome-modal .modal-body p {
  text-align: center;
  text-align-last: center;
}

.sli-jobassist-welcome-modal .buttons {
  margin-top: 30px;
}

.sli-jobassist-welcome-modal .btn-flat {
  text-decoration: none;
  color: white;
  background: #3d5afe;
  padding: 12px 25px;
  border-radius: 4px;
  margin: 10px;
  display: inline-block;
}

/* Decorative Candy Elements */
.sli-jobassist-welcome-modal .candy {
  position: absolute;
  height: 80px;
  width: 80px;
  background-size: cover;
  z-index: 2;
}

.sli-jobassist-welcome-modal .top-left { top: -30px; left: -30px; }
.sli-jobassist-welcome-modal .top-right { top: -30px; right: -30px; }
.sli-jobassist-welcome-modal .bottom-right { bottom: -30px; right: -30px; }

@media (max-width: 576px) {
  .sli-jobassist-welcome-modal .modal-dialog {
    max-width: 100%;
  }
}

.sli-jobassist-welcome-modal .modal-image-wrapper {
  position: relative;
  display: inline-block;
}

.sli-jobassist-welcome-modal .modal-image-wrapper .main-illustration {
  height: 180px;
  border-radius: 12px;
  z-index: 1;
}

.sli-jobassist-welcome-modal .float-icon {
  position: absolute;
  width: 32px;
  animation: float 3s ease-in-out infinite;
  opacity: 0.9;
  z-index: 2;
}

/* Custom positions around image */
.sli-jobassist-welcome-modal .icon5 {
    top: -35px;
    left: 43%;
    animation-delay: 0s;
}
.sli-jobassist-welcome-modal .icon1 { top: 0px; left: -20px; animation-delay: 0s; }
.sli-jobassist-welcome-modal .icon2 { top: px; right: -20px; animation-delay: 0.5s; }
.sli-jobassist-welcome-modal .icon3 {
    bottom: 41%;
    left: -50px;
    animation-delay: 1s;
}
.sli-jobassist-welcome-modal .icon4 {
    bottom: 41%;
    right: -50px;
    animation-delay: 1.5s;
}
@keyframes float {
  0%   { transform: translateY(0px); }
  50%  { transform: translateY(-8px); }
  100% { transform: translateY(0px); }
}
.sli-jobassist-welcome-modal h1 {
  font-size: 22px;
  font-weight: bold;
  color: #2b76e1;
}

.sli-jobassist-welcome-modal h6 {
  margin-bottom: 20px;
  font-weight: bold;
  font-size: 16px;
}
.sli-jobassist-welcome-modal .close {
  border: none;
  background: #000;
  color: #fff;
  font-size: 20px;
  height: 30px;
  width: 30px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}

@media(max-width:767px){
    .sli-jobassist-welcome-modal h1 {
    font-size: 18px;
}
.UserPrflBtn {
    background: unset !important;
}
}
.mm-active>a{
    color: var(--GreenDark) !important;
    font-weight: 600 !important;
    /* border-left: 5px solid var(--GreenDark) !important;
    background-color: var(--GreenTbl); */
}
.mm-active>a:hover{
    color: var(--GreenDark) !important;
    font-weight: 600 !important;
    border-left: 5px solid var(--GreenDark) !important;
    background-color: var(--GreenTbl);
}

/* new pages css */


/* .page-content {
    padding: 90px 20px 60px;
} */
    /* .sli-request-form * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    } */

    /* .sli-request-form body {
      font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
      background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
      min-height: 100vh;
      padding: 20px;
    } */

    .sli-request-form {
      background: rgba(255, 255, 255, 0.98);
      border-radius: 12px;
      /* box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25); */
      backdrop-filter: blur(10px);
      overflow: hidden;
    }

    .sli-request-form .header {
      background: linear-gradient(135deg, #004db5 0%, #2c77dd 100%);
      color: white;
      padding: 20px;
      position: relative;
      overflow: hidden;
    }

    .sli-request-form .header::before {
      content: '';
      position: absolute;
      top: -50%;
      right: -50%;
      width: 200%;
      height: 200%;
      background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
      animation: rotate 20s linear infinite;
    }

    @keyframes rotate {
      0% { transform: rotate(0deg); }
      100% { transform: rotate(360deg); }
    }

    .sli-request-form .header-content {
      position: relative;
      z-index: 1;
    }

    .sli-request-form .breadcrumb {
      display: flex;
      align-items: center;
      gap: 8px;
      font-size: 14px;
      opacity: 0.8;
      margin-bottom: 0px;
    }

    .sli-request-form .breadcrumb-separator {
      color: rgba(255, 255, 255, 0.5);
    }

    .sli-request-form .title {
      font-size: 32px;
      font-weight: 700;
      margin-bottom: 12px;
    }

    .sli-request-form .subtitle {
      font-size: 18px;
      opacity: 0.9;
      display: flex;
      align-items: center;
      gap: 12px;
    }

    .sli-request-form .add-btn {
      background: rgba(255, 255, 255, 0.2);
      color: white;
      border: none;
      padding: 8px 16px;
      border-radius: 20px;
      font-size: 14px;
      cursor: pointer;
      transition: all 0.3s ease;
      display: flex;
      align-items: center;
      gap: 6px;
    }

    .sli-request-form .add-btn:hover {
      background: rgba(255, 255, 255, 0.3);
      transform: translateY(-2px);
    }

    .sli-request-form .form-content {
      padding: 20px;
    }

    .sli-request-form .form-group {
      margin-bottom: 20px;
    }

    .sli-request-form .form-label {
      display: block;
      font-size: 15px;
      font-weight: 600;
      color: #374151;
      margin-bottom: 12px;
    }

    .sli-request-form .form-input {
      width: 100%;
      padding: 12px;
      border: 2px solid #e5e7eb;
      border-radius: 12px;
      font-size: 15px;
      transition: all 0.3s ease;
    }

    .sli-request-form .form-input:focus {
      outline: none;
      border-color: var(--GreenDark);
      box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.1);
    }

    .info-cards {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 24px;
      margin-bottom: 20px;
    }

    .info-card {
      background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
      border: 1px solid #e2e8f0;
      border-radius: 12px;
      padding: 20px;
      position: relative;
      overflow: hidden;
      transition: transform 0.3s ease;
    }

    .info-card:hover {
      transform: translateY(-4px);
    }

    .info-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 4px;
      background: linear-gradient(135deg, #004db5 0%, #2c77dd 100%);
    }



    .card-icon {
      width: 35px;
      height: 35px;
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 10px;
      font-size: 20px;
    }

    .property-icon {
      background: linear-gradient(135deg, #004db5 0%, #2c77dd 100%);
    }
    
    .property-icon i{
      color: white;
      font-size: 16px;
    }

    .contact-icon {
      background: linear-gradient(135deg, #004db5 0%, #2c77dd 100%);
      color: white;
    }

    .contact-icon i{
      color: white;
      font-size: 20px;
    }

    .sli-request-form .details-icon {
      background: linear-gradient(135deg, #004db5 0%, #2c77dd 100%);
      color: white;
    }

    .sli-request-form .details-icon i{
      color: white;
      font-size: 20px;
    }
    .sli-request-form .card-title {
      font-size: 18px;
      font-weight: 600;
      color: #1f2937;
      margin-bottom: 10px;
    }

    .sli-request-form .card-content {
      color: #6b7280;
      line-height: 1.6;
    }

    .sli-request-form .section-title {
      font-size: 18px;
    font-weight: 700;
    color: var(--GreenDark);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 12px;
    }

    .sli-request-form .section-icon {
      min-width: 32px;
      height: 32px;
      border-radius: 8px;
      background: linear-gradient(135deg, #004db5 0%, #2c77dd 100%);
      color: white;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 18px;
    }
    .sli-request-form .section-icon i{
      color: white;
    }

    .sli-request-form .form-row {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 24px;
      margin-bottom: 32px;
    }

    .sli-request-form .checkbox-group {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
      gap: 16px;
      margin-top: 16px;
    }

    .sli-request-form .checkbox-item {
      display: flex;
      align-items: center;
      gap: 12px;
      padding: 12px 16px;
      border: 2px solid #e5e7eb;
      border-radius: 12px;
      cursor: pointer;
      transition: all 0.3s ease;
    }

    .sli-request-form .checkbox-item:hover {
      border-color: var(--GreenDark);
      background: rgba(79, 70, 229, 0.02);
    }

    .sli-request-form .checkbox-item input[type="checkbox"] {
      width: 18px;
      height: 18px;
      accent-color: var(--GreenDark);
    }

    .sli-request-form .checkbox-item label {
      cursor: pointer;
      font-weight: 500;
      color: #374151;
    }

    .sli-request-form .select-wrapper {
      position: relative;
    }

    .sli-request-form .form-select {
      width: 100%;
      padding: 12px;
      border: 2px solid #e5e7eb;
      border-radius: 12px;
      font-size: 15px;
      cursor: pointer;
      transition: all 0.3s ease;
    }

    .sli-request-form .form-select:focus {
      outline: none;
      border-color: var(--GreenDark);
      box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.1);
    }

    .sli-request-form .textarea {
      min-height: 120px;
      resize: vertical;
    }

    .sli-request-form .file-upload {
      border: 2px dashed #d1d5db;
      border-radius: 12px;
      padding: 25px;
      text-align: center;
      /* background: #f9fafb; */
      transition: all 0.3s ease;
      cursor: pointer;
    }

    .sli-request-form .file-upload:hover {
      border-color: var(--GreenDark);
      background: rgba(79, 70, 229, 0.02);
    }

    .sli-request-form .file-upload-icon i {
      font-size: 30px;
      color: #9ca3af;
      margin-bottom: 10px;
    }

    .sli-request-form .file-upload-text {
      color: var(--GreenDark);
      font-size: 15px;
      font-weight: bold;
      margin-bottom: 5px;
    }

    .sli-request-form .file-upload-subtext {
      color: #9ca3af;
      font-size: 14px;
    }

    .sli-request-form .submit-btn {
      background: linear-gradient(135deg, #004db5 0%, #2c77dd 100%);
      color: white;
      border: none;
      padding: 12px;
      border-radius: 12px;
      font-size: 15px;
      font-weight: 600;
      cursor: pointer;
      transition: all 0.3s ease;
      display: flex;
      align-items: center;
      gap: 12px;
      margin-left: auto;
    }

    .sli-request-form .submit-btn:hover {
      transform: translateY(-2px);
      box-shadow: 0 10px 25px -5px rgba(79, 70, 229, 0.4);
    }

    @media (max-width: 768px) {
      .sli-request-form .header {
        padding: 20px;
      }

      .sli-request-form .form-content {
        padding: 20px;
      }

      .sli-request-form .title {
        font-size: 24px;
      }

      .sli-request-form .info-cards,
      .sli-request-form .form-row,
      .sli-request-form .checkbox-group {
        grid-template-columns: 1fr;
      }
    }

    /* view page css */

    .sli-request-view {
      background: rgba(255, 255, 255, 0.98);
      border-radius: 12px;
      /* box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25); */
      backdrop-filter: blur(10px);
      overflow: hidden;
    }

    .sli-request-view .header {
      background: linear-gradient(135deg, #004db5 0%, #2c77dd 100%);
      color: white;
      padding: 20px;
      position: relative;
      overflow: hidden;
    }

    .sli-request-view .header::before {
      content: '';
      position: absolute;
      top: -50%;
      right: -50%;
      width: 200%;
      height: 200%;
      background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
      animation: rotate 20s linear infinite;
    }

    @keyframes rotate {
      0% { transform: rotate(0deg); }
      100% { transform: rotate(360deg); }
    }
   

.sli-request-view .header-content {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.sli-request-view .breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    opacity: 0.8;
    margin-bottom: 12px;
}

.sli-request-view .breadcrumb-separator {
    color: rgba(255, 255, 255, 0.5);
}

.sli-request-view .title-section {
    flex: 1;
}

.sli-request-view .title {
    font-size: 25px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 8px;
}

.sli-request-view .priority-badge {
    background: linear-gradient(135deg, #f59e0b, #d97706);
    color: white;
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.sli-request-view .action-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.sli-request-view .action-btn {
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    padding: 6px 12px;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    backdrop-filter: blur(10px);
}
.sli-request-view .action-btn i{
  color: #fff !important;
  font-size: 14px;
}
.sli-request-view .action-btn:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
}

.sli-request-view .more-actions {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    padding: 6px 12px;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 14px;
    font-weight: 500;
}

.sli-request-view .more-actions:hover {
    background: rgba(255, 255, 255, 0.2);
}

/* Layout */
.sli-request-view .main-inner-content {
    padding: 20px;
}

.sli-request-view .left-column {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.sli-request-view .right-column {
    display: flex;
    flex-direction: column;
    gap: 24px;
}


/* Section */
.sli-request-view .section {
    background: white;
    border-radius: 16px;
    padding: 32px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    border: 1px solid #f1f5f9;
}

.sli-request-view .section-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--GreenDark);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.sli-request-view .section-icon {
    min-width: 30px;
    height: 30px;
    border-radius: 8px;
    background: linear-gradient(135deg, #004db5 0%, #2c77dd 100%);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
}
.sli-request-view .section-icon i{
color:#fff;
}
/* Details */
.sli-request-view .detail-item {
    /* display: flex; */
    align-items: center;
    gap: 16px;
    margin-bottom: 16px !important;
    /* padding: 12px 0; */
    border-bottom: 1px solid #f1f5f9;
}

.sli-request-view .detail-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.sli-request-view .detail-label {
        display: block;
    font-size: 15px;
    font-weight: 600;
    color: #374151;
}

.sli-request-view .detail-value {
    color: #6b7280;
    flex: 1;
}

.sli-request-view .date-badge,
.sli-request-view .time-badge {
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    color: white;
}

.sli-request-view .date-badge {
    background: linear-gradient(135deg, #004db5 0%, #2c77dd 100%);
}

.sli-request-view .time-badge {
    background: linear-gradient(135deg, #10b981, #059669);
}

/* Sidebar */
.sli-request-view .sidebar-card {
    border-radius: 16px;
    padding: 24px;
    /* box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1); */
    background: #f8fafc;
    border: 1px solid #e2e8f0;
}

.sli-request-view .sidebar-title {
    font-size: 16px;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.sli-request-view .sidebar-icon {
    width: 20px;
    height: 20px;
    border-radius: 4px;
    background: linear-gradient(135deg, #004db5 0%, #2c77dd 100%);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
}

.sli-request-view .meta-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    padding: 8px 0;
}

.sli-request-view .meta-label {
    font-weight: 500;
    color: #6b7280;
    font-size: 14px;
}

.sli-request-view .meta-value {
    color: #1f2937;
    font-weight: 600;
    font-size: 14px;
}

/* Notes */
.sli-request-view .notes-section {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 20px;
}

.sli-request-view .notes-header {
    /* display: flex; */
    align-items: center;
    gap: 12px;
    margin-bottom: 8px;
}

.sli-request-view .notes-author {
    font-weight: 600;
    color: #1f2937;
}

.sli-request-view .notes-date {
    color: #6b7280;
    font-size: 12px;
}

.sli-request-view .notes-content {
    color: #4b5563;
    line-height: 1.6;
}

/* Attachments */
.sli-request-view .attachments-grid {
    display: flex;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 16px;
}
.sli-request-view .attachment-item:first-child{
  margin-left: 0;
}
.sli-request-view .attachment-item {
    position: relative;
    border-radius: 50%;
    overflow: hidden;
    aspect-ratio: 1;
    cursor: pointer;
    height: 40px;
    width: 40px;
    transition: transform 0.3s ease;
    border: 2px solid #2c77dd;
    margin-left: -30px;
}

.sli-request-view .attachment-item:hover {
    transform: scale(1.05);
}

.sli-request-view .attachment-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.sli-request-view .attachment-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent, rgba(0,0,0,0.7));
    display: flex;
    align-items: flex-end;
    padding: 8px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.sli-request-view .attachment-item:hover .attachment-overlay {
    opacity: 1;
}

.sli-request-view .attachment-name {
    color: white;
    font-size: 12px;
    font-weight: 500;
}

/* Form */
.sli-request-view .form-group {
    margin-bottom: 20px;
}

.sli-request-view .form-textarea {
    width: 100%;
    padding: 16px;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    font-size: 14px;
    resize: vertical;
    min-height: 100px;
    transition: all 0.3s ease;
}

.sli-request-view .form-textarea:focus {
    outline: none;
    border-color:  var(--GreenDark);
    box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.1);
}

.sli-request-view .file-upload-area {
    border: 2px dashed #d1d5db;
    border-radius: 12px;
    padding: 24px;
    text-align: center;
    background: #fff;
    transition: all 0.3s ease;
    cursor: pointer;
    margin-bottom: 20px;
}

.sli-request-view .file-upload-area:hover {
    border-color:  var(--GreenDark);
    background: rgba(79, 70, 229, 0.02);
}
.sli-request-view .card-content {
    color: #6b7280;
    line-height: 1.6;
}
.sli-request-view .file-upload-icon {
    font-size: 32px;
    color: #9ca3af;
    margin-bottom: 0px;
}


    .sli-request-view .file-upload-icon i {
      font-size: 30px;
      color: #9ca3af;
      margin-bottom: 10px;
    }

    .sli-request-view .file-upload-text {
      color: var(--GreenDark);
      font-size: 15px;
      font-weight: bold;
      margin-bottom: 5px;
    }

    .sli-request-view .file-upload-subtext {
      color: #9ca3af;
      font-size: 14px;
    }



.sli-request-view .save-btn {
    background: linear-gradient(135deg, #004db5 0%, #2c77dd 100%);
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.sli-request-view .save-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px -5px rgba(79, 70, 229, 0.4);
}

/* Responsive */
@media (max-width: 1024px) {
    .sli-request-view .main-inner-content {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    .sli-request-view .right-column {
        order: -1;
    }
}

@media (max-width: 768px) {
    .sli-request-view .header-content {
        flex-direction: column;
        align-items: flex-start;
    }
    .sli-request-view .action-buttons {
        width: 100%;
        justify-content: center;
    }
    .sli-request-view .main-inner-content {
        padding: 24px;
    }
    .sli-request-view .info-cards {
        grid-template-columns: 1fr;
    }
    .sli-request-view .title {
        font-size: 24px;
    }
}