/* 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: #ECF2FD;
      border-bottom: 1px solid #5388F0;
      border-radius: 0;
      padding: 14px 10px;
      margin-bottom: 10px;
      font-weight: bold;
    }
    
    /* Input and textarea styling */
    input[type="text"],
    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::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: #ECF2FD;
      border: 2px solid #5388F0;
      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: #5388F0 !important; /* Background color when checked */
      border-color: #5388F0;
    }
    
    /* Buttons */
    button {
      background-color: #5388F0;
      color: white;
      padding: 10px 20px;
      border: none;
      border-radius: 0;
      cursor: pointer;
      font-size: 16px;
    }
    
    button:hover {
      background-color: #5388F0;
    }
    
    /* Accordion styling */
    .accordion h3 {
      background-color: #ECF2FD;
      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: #ECF2FD;
      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: #ECF2FD;
      margin: 10px 0;
      padding: 15px;
  width: 100%;
    }
  
   .dotted-border {
      border-bottom: 1px solid transparent; 
      background-image: linear-gradient(to right, #5388F0 50%, transparent 50%);
      background-repeat: repeat-x; 
      background-size: 20px 1px; 
      margin: 30px 0;
  }
  
    select#lecturer {
      background: #ECF2FD;
      border: 1px solid #5388F0;
      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 #5388F0; /* Border styling */
      border-radius: 0;
      padding: 10px;
      width: 100%;
      background: #ECF2FD; /* 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 #5388F0;
      margin: 10px 0;
  }
  
  .course-price {
      border: 1px solid #5388F0;
      margin: 10px 0;
  }
  
  .price-check {
      display: flex;
  }
  .price-op-1, .price-op-2 {
      display: flex
      ;
          align-items: center;
          background: #ECF2FD;
          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 #5388F0;
      margin: 10px 0;
  
  }
  
  .course-summary {
      border: 1px solid #5388F0;
      margin: 10px 0;
  }
  
  .course-summary textarea  {
    height: 120px;  
    border: none;
  }
  
  .form-section .file-upload {
  border: 1px dashed #5388F0;
       padding: 30px; 
  
  /*     background-image: linear-gradient(to right, #5388F0 50%, transparent 50%), 
                        linear-gradient(to bottom, #5388F0 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 #5388F0;
          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: " ";
        background: url(https://dev.ftlweb.com/wp-content/uploads/2025/03/pluse-course.png);
        position: absolute;
        right: 9px;
        border-radius: 34px;
        top: 51%;
        width: 23px;
        background-repeat: no-repeat;
        height: 24px;
        transform: translateY(-50%);
        color: black;
        pointer-events: none;
      }
      .form-section .accordion .accordion-header::after {
        content: " ";
        background: url(https://dev.ftlweb.com/wp-content/uploads/2025/03/pluse-course.png);
        position: absolute;
        right: 9px;
        border-radius: 34px;
        top: 51%;
        width: 23px;
        background-repeat: no-repeat;
        height: 24px;
        transform: translateY(-50%);
        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 #5388F0;
          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: #ECF2FD;
  
      }
  
  .zoom-link input[type="checkbox"] {
          width: 23px;
        font-family: Arial, sans-serif;
  }
  
  .first .accordion-content {
      border-top: 1px solid #5388F0;
      margin: 0;
      background: white;
      padding: 0;
  }
  .first {
      border: 1px solid #5388F0;
  }
  
  .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 #5388F0;
      }
  
      .less-date {
          border: 1px solid #5388F0;
          margin: 10px 0;
      }
  
      .course-hours {
          display: flex
      ;
          justify-content: space-between;
      }
      .hour-1 {
          width: 49%;
          border: 1px solid #5388F0;
      
      }
  
      .hour-2 {
          width: 49%;
          border: 1px solid #5388F0;
      }
  
      .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: #5388F0;
          color: white;
          font-size: 14px;
    font-family: 'Ploni', sans-serif;
      }
  
      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: 10px 12px;
    padding-bottom: 15px;
  }
  
  .accor-border {
      border: 1px solid #5388F0;
  }
  .knowledge-center img.toggle-icon {
    filter: invert(34%) sepia(78%) saturate(1464%) hue-rotate(199deg) brightness(95%) contrast(101%);
}

  
      .comment-de {
          border: 1px solid #5388F0;
          margin: 10px 0;
      }
  
      textarea#editor-comments {
          padding: 7px;
          margin: 0;
          height: 90px;
          border: none;
      }
  
      .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: right;
      }
  
  .content-data h2{
	  text-align: center;
      font-size: 30px;
      font-weight: 700;
      padding: 0 0 3% 0;
  }
  
      .content-description {
        padding: 20px;
        background: #ECF2FD;
    }
  
  .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 #5388F0;
      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: #ECF2FD;
      appearance: none;
      width: 20px;
  }
  .price-op-2 {
      width: 47%;
  }
  
    .price-op-2 input#price {
          border-bottom: 1px solid #5388F0;
      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: #5388F0;
      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: 7px 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: #5388F0;
	  padding-bottom: 5%;
  }
  
  
  @media (max-width: 768px) {


.log-out-div {
width: 100% !important;
}
      .inner-form {
      width: 93%;
  }
        .connected_form  .bgcolor-blue {
          padding: 0 0 10px 0 !important;
          background: #5388F0;
      }
  .content-data h2 {
	  font-size: 22px;}
      .user-img {
      width: 18%;
  }
  .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 #5388F0;
    padding: 20px;
    margin: 0 0 10px 0 ;
  }

  .user-img {
    width: 7%;
}
  
.user-img img {
    border-radius: 50%;
}


.main-popup label#lecturer {
    padding: 17px 20px;
    font-weight: 400;
    font-size: 20px;
}
.main-popup label {
    padding: 26px;
    border: 1px solid #5388f0;
}




.main-popup img {
    width: 20px; /* Adjust icon size */
    height: auto;
    vertical-align: middle;
}

/* Popup Background */
.popup-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    justify-content: center;
    align-items: center;
    z-index: 99;
}

/* Popup Content */
.author-popup {
    background: white;
    padding: 0;
    width: 600px;
    position: relative;
}

.form-group {
    margin-bottom: 15px;
}

label {
    font-weight: bold;
    display: block;
    margin-bottom: 5px;
}

input, textarea {
    width: 100%;
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.main-popup-title button {
   
    color: white;
    padding: 10px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
   
}


.main-popup-title {
    display: flex;
    background-color: #5388F0;
    justify-content: space-between;
    padding: 20px;
    align-items: center;
}
.main-popup-title h3 {
    color: white;
    padding-right: 9px;
    margin: 0;
}
.main-author-form {
    padding: 20px !important;
}

.main-author-form textarea#experience {
    background: #ECF2FD;
	    border-bottom: 1px solid #5388F0;
}

.all-mainknowledge-cat {
    margin: 0;
    padding: 0;
}
.all-mainknowledge-cat h3.accordion-header.label-acc-new.active {
    padding: 12px;
}
.main-author-form label {
    background: none;
    border: none;
	font-weight: 700;
	font-size: 20px;
    padding: 0 8px;
margin:0;
}

.add-new-sec img {
    margin: 0 0 0 10px;
}
.main-author-form input::placeholder{
	 font-size: 20px !important;
}

.accordion-content.category {
    background: none;
    margin: 0;
}

.accordion-content.category label {
    background-color: transparent;
    margin: 0;
    background: none;
    border: 1px solid #5388F0;
    border-bottom: none;
    border-right: none;
    border-left: none;
}

.main-author-form input {
    border-bottom: 1px solid #5388F0 !important;
}

.main-author-form button {
    width: 100%;
    padding: 20px;
	font-size: 20px;
}

.all-mainknowledge-cat .accordion-content.category {
    padding: 0;
}

.all-mainknowledge-cat input {
    width: 15px;
}

.add-new-sec {
    background: #ECF2FD;
    padding: 10px;
}

.add-new-sec h6{
    padding: 0;
    margin: 0;
}

.price-check input {
    width: 15px;
}

.log-out-div {
    border: 1px solid #5388F0;
    width: 70%;
    padding-bottom: 29px;
}

.log-out-div h3 {
    background: #5388F0;
    color: white;
    padding: 13px;
    font-size: 24px;
    font-family: 'Ploni', sans-serif;
}

.log-out-div p {
    padding-top: 6px !important;
    padding: 23px;
    font-size: 20px;
}

.profile-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

a.membership-link {
    padding:15px 48px;
    border: 1px solid #5388F0;
    color: black;
    text-decoration: none;
    background: #ECF2FD;
font-size: 20px;
    font-family: 'Ploni', sans-serif;
}


.mainmem-link {
    text-align: center;
}

.logged-out-user .dotted-border {
    background-image: linear-gradient(to right, #D3D3D3 50%, transparent 50%);
}

.logged-out-user .main-popup label#lecturer {
    padding: 17px 20px;
    border: 1px solid #D3D3D3;
    background: #F1F1F1;
}


.logged-out-user label.label-acc {
    border-bottom: 1px solid #D3D3D3;
    background: #F1F1F1;
}

.logged-out-user .accor-border {
    border: 1px solid #D3D3D3;
}

.logged-out-user .label-acc-new .toggle-icon {
    filter: invert(85%) sepia(0%) saturate(0%) hue-rotate(0deg) brightness(95%) contrast(100%) !important;
}
.logged-out-user .course-price {
    border: 1px solid #D3D3D3;
}

.logged-out-user .course-price label {
    background: #F1F1F1;
    border-bottom: 1px solid #D3D3D3;
}
    .logged-out-user .course-price label {
        border-bottom: 1px solid #D3D3D3;
    }

    .logged-out-user .price-op-1, .logged-out-user .price-op-2 {
        background: #F1F1F1;
    }

    .logged-out-user .price-op-1 label,  .logged-out-user .price-op-2 label {
        border: none;
    }

    .logged-out-user .add-new-sec {
        background: #F1F1F1;}

        .logged-out-user .course-data {
            border: 1px solid #D3D3D3;
        }
.logged-out-user .course-data label {
    border-bottom: 1px solid #D3D3D3;
    background: #F1F1F1;
}


.logged-out-user .course-summary {
    border: 1px solid #D3D3D3;}

    .logged-out-user .course-summary label {
        border-bottom: 1px solid #D3D3D3;
        background: #F1F1F1;
    }

    .logged-out-user .form-section .file-upload {
        border: 1px dashed #D3D3D3;}

        .logged-out-user input#file-upload {
            border: 1px dashed #D3D3D3;
            padding: 30px;
        }

        .logged-out-user .link-con {
            border: 1px solid #D3D3D3;}

            .logged-out-user .link-con label {
                border-bottom: 1px solid #D3D3D3;
                background: #F1F1F1;
            }

            .logged-out-user a#anchor-link {
                background: #D3D3D3;
                color: black;
            }

            .logged-out-user .form-section .custom-select-wrapper-5 label {
                border: 1px solid #D3D3D3;
                padding: 15px 40px;
                background: #F1F1F1;
            }
            .form-section .custom-select-wrapper-5 label {
                border: 1px solid #5388F0;
                padding: 15px 31px;
            }

            .logged-out-user .comment-lab {
                background: #F1F1F1;
             
                border-bottom: 1px solid #D3D3D3;
            }

            .logged-out-user .comment-de {
                border: 1px solid #D3D3D3;}

                .logged-out-user  button {
                    background: #F1F1F1;
                }
.logged-out-user .close-popup ,.logged-out-user .close-popup-main{
    background: #5388f0;
}

/* File upload designing */

.file-upload-container {
    margin-bottom: 20px;
}

.file-upload-container input[type="file"] {
    display: none;
}

.file-upload-container label {
    display: inline-block;
    padding: 10px 20px;
    background-color: #ECF2FD;
    color: #7C7C7C;
    border: 2px dashed #5388F0;
    cursor: pointer;
    font-size: 20px;
    font-weight: 400;
    height: 106px;
    align-content: center;
    border-radius: 0;
    text-align: center;
}
.file-upload-container label img {
    margin: 0 10px;
}


.file-upload-container small {
    display: block;
    margin-top: 0;
    font-size: 12px;
    color: black;
}