/* General form styles */

form {
    direction: rtl;
    font-family: Arial, sans-serif;
    margin: 10px 0 0 0;
    padding: 0;
    background-color: #fff;
    border-radius: 0;
    }
  
  .user-content p {
      line-height: 18px;
      font-size: 16px;
      padding: 0 7px;
  }
  
  .profile-container h2 {
      font-size: 20px;
      font-weight: 700;
          margin: 10px 0 0 0 !important;
          font-family: 'Ploni', sans-serif;
  }
    /* Label styling */
    label {
      display: block;
      background-color: #E6FAF0;
      border-bottom: 1px solid #2CC97D;
      border-radius: 0;
      padding: 14px 10px;
      margin-bottom: 10px;
      font-weight: bold;
    }
    
    /* Input and textarea styling */
    input[type="text"],
    input[type="email"]
    input[type="url"],
    input[type="file"],
    input[type="date"],
    select,
    textarea {
      width: 100%;
         padding: 9px 8px 15px 8px;
      margin-bottom: 0;
      border: 0;
      border-radius: 0;
      color: #7C7C7C;
      font-size: 14px;
    }
    input[type="text"],
    input[type="email"]
    input[type="url"],
    input[type="file"],
    input[type="date"],
    select,
    textarea{
	    width: 100%;
    padding: 9px 8px 15px 8px;
    margin-bottom: 0;
    border: 0;
    border-radius: 0;
    color: #7C7C7C;
    font-size: 14px;
    border-bottom: 1px solid #2cc97d;
/*	line-height:0; */
}
.main-one label {
    border: 0;
    background: white;
}
    input::placeholder,
    textarea::placeholder {
      color: #7C7C7C;
        font-size: 20px;
        font-family: 'Ploni', sans-serif;
    }
    
    /* Checkboxes */
    input[type="checkbox"] {
      appearance: none;
      width: 20px;
      height: 20px;
      background-color: #E6FAF0;
      border: 2px solid #2CC97D;
      border-radius: 0;
      position: relative;
      cursor: pointer;
      border-radius: 50px;
    }
    
    input[type="checkbox"]:checked::after {
      content: "✔";
      color: white;
      font-size: 11px;
      position: absolute;
      top: 2px;
      left: 4px;
    }
  
  
  input[type="checkbox"]:checked {
      background-color: #2CC97D !important; /* Background color when checked */
      border-color: #2CC97D;
    }
    
    /* Buttons */
    button {
      background-color: #2CC97D;
      color: white;
      padding: 10px 20px;
      border: none;
      border-radius: 0;
      cursor: pointer;
      font-size: 16px;
    }
    
    button:hover {
      background-color: #2CC97D;
    }
    
    /* Accordion styling */
    .accordion h3 {
      background-color: #E6FAF0;
      border-bottom: 1px solid #E67575;
      padding: 10px;
      margin: 0;
      cursor: pointer;
      display: flex    ;
  
          justify-content: space-between;
    }
    
    .accordion-content {
      padding: 10px;
      display: none;
      margin: 15px 0 0 0;
  
      background-color: #E6FAF0;
      border-top: none;
    }
    
    /* Show accordion content */
    .accordion h3.active + .accordion-content {
      display: block;
    }
    
  
    .form-details {
     display: flex;
     justify-content: center;
        background: white;
            margin: 0 5.5% 0 5%;    padding: 4% 0;
    }
  
    .inner-form {
     
      width: 50%;
    }
  
    .profile-image {
      display: flex;
      align-items: center;
      background-color: #E6FAF0;
      margin: 10px 0;
      padding: 15px;
  
    }
  
   .dotted-border {
      border-bottom: 1px solid transparent; 
      background-image: linear-gradient(to right, #2CC97D 50%, transparent 50%);
      background-repeat: repeat-x; 
      background-size: 20px 1px; 
      margin: 30px 0;
  }
  
    select#lecturer {
      background: #E6FAF0;
      border: 1px solid #2CC97D;
      padding: 14px 38px;
    font-family: 'Ploni', sans-serif;
  }
  
  .custom-select-wrapper {
      position: relative;
  
    }
    
    .custom-select-wrapper select {
      appearance: none; /* Removes the default arrow */
      -webkit-appearance: none; /* For Safari */
      -moz-appearance: none; /* For Firefox */
      border: 1px solid #2CC97D; /* Border styling */
      border-radius: 0;
      padding: 10px;
      width: 100%;
      background: #E6FAF0; /* Background color */
      color: #7C7C7C; /* Text color */
      font-size: 16px;
      position: relative;
    }
    
    .custom-select-wrapper select:focus {
      outline: none; /* Removes the focus outline */
    }
    
    .custom-select-wrapper::after {
      content: "+";
      position: absolute;
      right: 9px;
      border: 1px solid black;
      padding: 0px 4px;
      border-radius: 34px;
      top: 51%;
      transform: translateY(-50%);
      font-size: 16px;
      color: black;
      pointer-events: none;
    }
    
  
    .custom-select-wrapper select {
  color: black;
    }
  
    .demo-category {
      border: 1px solid #2CC97D;
      margin: 10px 0;
  }
  
  .course-price {
      border: 1px solid #2CC97D;
      margin: 10px 0;
  }
  
  .price-check {
      display: flex;
  }
  .price-op-1, .price-op-2 {
      display: flex
      ;
          align-items: center;
          background: #E6FAF0;
          gap: 10px;
          padding: 2px 7px;
          margin: 0 9px 10px 10px;
  
  }
  
  .price-check label {
          font-family: 'Ploni', sans-serif;
      border: none;
      padding: 10px;
      margin: 0;
      color: #202020;
      font-size: 20px;
      font-weight: 400;
      background: no-repeat;
  }
  
  .course-data {
      border: 1px solid #2CC97D;
      margin: 10px 0;
  
  }
  
  .course-summary {
      border: 1px solid #2CC97D;
      margin: 10px 0;
  }
  
  .course-summary textarea  {
    height: 120px;  
  }
  
  .form-section .file-upload {
  border: 2px dashed #2CC97D;
       padding: 30px; 
	      background: #e6faf0;
  
  /*     background-image: linear-gradient(to right, #2CC97D 50%, transparent 50%), 
                        linear-gradient(to bottom, #2CC97D 50%, transparent 50%) !important;
      background-repeat: repeat-x, repeat-y !important; 
      background-size: 20px 1px, 1px 20px !important;
     */
  }
  
  
  
      .file-upload-container {
          display: flex;
          justify-content: right;
          align-items: revert;
          flex-direction: column;
          margin: 10px 0;
      }
      .file-upload-container small {
        text-align: right;
          font-family: 'Ploni', sans-serif;
          color: #202020;
        padding: 5px 0 0 0;
    }
  
        .link-con {
          border: 1px solid #2CC97D;
          margin: 10px 0;
        }
  
        .custom-select-wrapper-1, .custom-select-wrapper-2, .custom-select-wrapper-3, .custom-select-wrapper-4 , .custom-select-wrapper-5{
          margin: 15px 0;
          position: relative;
          
      } 
  
  
      .custom-select-wrapper-1 select, .custom-select-wrapper-2 select, .custom-select-wrapper-3 select, .custom-select-wrapper-4 select, .custom-select-wrapper-5 select {
          appearance: none;
      
      font-size: 20px;
      color: #202020;
  
      }
  
  .custom-select-wrapper-5::after {
          padding: 0px 5px 1px 5px !important;
  }
     .custom-select-wrapper-1::after, .custom-select-wrapper-2::after, .custom-select-wrapper-3::after, .custom-select-wrapper-4::after , .custom-select-wrapper-5::after{
        content: "+";
      position: absolute;
      right: 9px;
      border: 1.5px solid black;
          padding: 0 5px 0 5px;
      border-radius: 34px;
      top: 51%;
      transform: translateY(-50%);
      font-size: 11px;
      color: black;
      pointer-events: none;
      }
      .form-section .accordion .accordion-header::after {
      content: "+" !important;
      position: relative;
      right: 9px;
      border: 1px solid black;
      padding: 0px 4px;
      border-radius: 34px;
      top: 51%;
      transform: translateY(-50%) !important;
      font-size: 16px;
      color: black;
      pointer-events: none;
          z-index: 999;
  }
  
  
      .accordion {
          margin: 10px 0;
        
      }
  
      .border-bott {
          border-bottom: 1px solid #E67575;
      }
      .accordion-inner {
          background: white;
          border: 1px solid #2CC97D;
          padding: 30px;
          margin: 20px;
      }
  .accordion-inner h2 {
      font-size: 20px !important;
        font-family: 'Ploni', sans-serif !important;
      font-weight: 700 !important;
      margin: 5px 0 10px 0 !important;
  }
  
      .zoom-link {
              padding: 0 8px !important;
          display: flex
          ;
              align-items: center;
              padding: 8px;
              margin: 10px 10px;
              background: #E6FAF0;
  
      }
  
  .zoom-link input[type="checkbox"] {
          width: 23px;
        font-family: Arial, sans-serif;
  }
  
  .first .accordion-content {
      border-top: 1px solid #2CC97D;
      margin: 0;
      background: white;
      padding: 0;
  }
  .first {
      border: 1px solid #2CC97D;
  }
  
  .first label {
      background-color: white;
      margin: 0;
  }
  .first label:last-of-type {
      border: none;
  }
  .first h3.accordion-header {
      border: none;
  }
  .zoom-link label {
              border: none;
          font-family: 'Ploni', sans-serif;
          font-weight: 400;
          margin-bottom: 0;
  
  }
      .zoom-link .zoom-text {
      width: 100%;
      background: no-repeat;
      border-bottom: 1px solid #E67575;
          border-left: none;
          border-left:  none;
          border-top: none;
          border-right: none;
  }
  .zoom-link::placeholder{
      font-size: 20px;
          font-family: 'Ploni', sans-serif;
  } 
      .zoom-div {
          border: 1px solid #2CC97D;
      }
  
      .less-date {
          border: 1px solid #2CC97D;
          margin: 10px 0;
      }
  
      .course-hours {
          display: flex
      ;
          justify-content: space-between;
      }
      .hour-1 {
          width: 49%;
          border: 1px solid #2CC97D;
      
      }
  
      .hour-2 {
          width: 49%;
          border: 1px solid #2CC97D;
      }
  
      .course-hours input {
          border: none;
          padding: 5px 6px 10px 6px;
      }
  
      .accordion-header img.toggle-icon {
          object-fit: contain;
      }
  
     h3.accordion-header {
      padding: 14px 35px 14px 14px;
      position: relative;
      font-weight: 400;
      font-size: 20px;
      font-family: 'Ploni', sans-serif;
      border: 1px solid #E67575;
  }
  
      .comment-lab {
            background-color: #2CC97D;
    color: black;
    font-size: 16px;
    font-family: 'Ploni', sans-serif;
    line-height: 18px;
    font-weight: 400;
      }
  
      ul.ul-title {
        padding: 0 28px 0 0;
          font-family: 'Ploni', sans-serif;
    }
  
  h3.accordion-header.label-acc-new {
      background: no-repeat;
      border: none;
     padding: 6px 12px;
  }
  
  .accor-border {
      border: 1px solid #2CC97D;
  }
  .knowledge-center img.toggle-icon {
    filter: invert(34%) sepia(78%) saturate(1464%) hue-rotate(199deg) brightness(95%) contrast(101%);
}

  
      .comment-de {
          border: 1px solid #2CC97D;
          margin: 10px 0;
      }
  
      textarea#editor-comments {
          padding: 7px;
          margin: 0;
          height: 90px;
      }
  
      .form-section-btn {
          text-align: center;
              margin: 50px 0 20px 0;
      }
  
      .form-section-btn button {
          padding: 16px 32px;
          width: 270px;
          height: 64px;
          font-size: 24px;
              font-family: 'Ploni', sans-serif;
      }
  
      .content-data {
        text-align: center;
      }
  
  .content-data h2{
      font-size: 30px;
      font-weight: 700;
      padding: 0 0 3% 0;
  }
  
      .content-description {
        padding: 20px;
        background: #E6FAF0;
    }
  
  .content-description p {
      font-weight: 400;
      font-size: 24px;
  }
  
  .content-description ul {
      padding: 6px 25px;
          margin: 0;
  }
  
  .content-sub-title h2 {
      font-size: 30px;
      font-weight: 700;
      padding: 0;
      margin: 0;
  }
  
  .content-sub-title {
      padding: 30px 0 0 0;
  }
  
  .content-description li {
      font-size: 20px;
  }
  
   .catergory label {
       display: flex;
      justify-content: flex-end;
      flex-direction: row-reverse;
  }
  .catergory label:first-of-type {
      border-top: 1px solid #2CC97D;
      padding: 18px 10px;
  
  }
  
  .accordion-content.catergory {
      background: none;
          padding: 0 10px;
  }
  .accordion-content.catergory label {
      background: none;
  }
  
  .accordion-content.catergory label:last-of-type{
      border: none;
          padding: 9px;
  
  }
  
  .catergory img {
      margin: 0 0 0 5px;
      object-fit: contain;
  }
  .price-op-2 input[type="checkbox"] {
      background: #E6FAF0;
      appearance: none;
      width: 20px;
  }
  .price-op-2 {
      width: 47%;
  }
  
    .price-op-2 input#price {
          border-bottom: 1px solid #2CC97D;
      background: transparent;
      width: 22%;
            padding: 5px;
            text-align: center;
      font-size: 20px;
            line-height: 21px;
      font-family: 'Ploni', sans-serif;
  }
  
  .input-with-anchor {
    display: flex
  ;
  }
  
  .link-con label{
    margin-bottom: 0;
  }
  
  a#anchor-link {
      width: 120px;
          padding: 13px 0;
      display: flex
  ;
      text-align: center;
      color: white;
      justify-content: center;
      background: #2CC97D;
      text-decoration: none;
      align-content: center;
      align-items: center;
  }
  
  .ul-main-title {
      font-size: 20px;
      font-weight: 700;
  }
  
  .form-section h2 {
      font-size: 20px;
      margin: 60px 0 0 0;
      font-weight: 700;
      font-family: 'Ploni', sans-serif;
  }
  
  .main-accordion h3.accordion-header {
      border-bottom: 1px solid #E67575;
          border-right: 0;
      border-left: 0;
      border-top: 0;
          padding: 15px;
  }
  
  .main-accordion h2 {
      font-family: 'Anomalia';
          font-size: 30px;
          padding: 0 0 5px 0;
  }
  
  
  
  .custom-select-wrapper option {
      font-size: 20px;
      color: #202020;
  }
  
  .bgcolor-blue {
    background: #2CC97D;
    padding-bottom: 5%;
}
  

.requirement {
    display: flex;
  
}
.req-1 {
    width: 70%;
    align-content: center;
    background: #E6FAF0;
    border-bottom: 1px solid #2CC97D;
}
.re-texrt-1 {
    padding: 12px 40px;
    background: #2CC97D;
}
.re-texrt-2 {
    padding: 12px 40px;
    background: white;
}

.req-2 {
    display: flex;
    width: 28%;
    justify-content: space-between;
    border-bottom: 1px solid #2CC97D;
    margin: 0 5px;
}
  @media (max-width: 768px) {
      .inner-form {
      width: 93%;
  }
        .connected_form  .bgcolor-blue {
          padding: 0 0 10px 0 !important;
          background: #2CC97D;
      }
  
      .user-img {
      width: 48%;
  }
  .price-check {
      display: block;
  }
  
      .price-op-2 {
      width: 93%;
  }
      
      a#anchor-link {
              font-size: 14px;
      }
      
          a#anchor-link p {
          padding: 0 2px;
      }
      
      h3.accordion-header {
      display: flex
  ;
      flex-wrap: wrap;
      flex-direction: row;
              padding: 10px;
  }
      
      .ul-title li{
                  padding: 0;
      }
      .form-section-btn button {
          font-size: 20px;
                  width: 100%;
      }
      .content-description p {
      font-weight: 400;
      font-size: 20px;
  }
  
  .content-description li {
      font-size: 18px;
      text-align: right;
      padding: 0;
  }
  
  
  }
  
  
  /* Zoom icon */
  
  
  .main-border-one {
    border: 1px solid #2CC97D;
    padding: 20px;
    margin: 0 0 10px 0 ;
  }

label {
    display: block;
    background-color: #E6FAF0;
    border-bottom: 1px solid #2CC97D;
    border-radius: 0;
    padding: 14px 10px;
    margin-bottom: 10px;
    font-weight: 700;
    font-size: 20px;
    line-height: 22px;
    text-align: right;
}
input#email {
    width: 100%;
    padding: 9px 8px 15px 8px;
    border-bottom: 1px solid #2cc97d !important;
    border: 0;
	line-height:0;
    color: #7C7C7C;
}
label.required::after {
  content: " *"; /* Add star after label text */
  color: red;    /* Red color for star */
  font-weight: bold; /* Make it bold */
}
label {
  display: block;
  margin-bottom: 5px;
}

input#activity-title {
    border-bottom: none;
}
input#credit {
    border: none;
}
