/* General form styles */

form {
  direction: rtl;
  font-family: Ploni, sans-serif;
  margin: 10px 0 0 0;
  border: 1px solid #FC8B8B;
  padding: 20px;
  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: #FFF0F0;
    border-bottom: 1px solid #FC8B8B;
    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: #FFF0F0;
    border: 2px solid #FC8B8B;
    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: #FC8B8B !important; /* Background color when checked */
    border-color: #FC8B8B;
  }
  
  /* Buttons */
  button {
    background-color: #FC8B8B;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 0;
    cursor: pointer;
    font-size: 16px;
  }
  
  button:hover {
    background-color: #E67575;
  }
  
  /* Accordion styling */
  .accordion h3 {
    background-color: #FFF0F0;
    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: #FFF0F0;
    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: #FFF0F0;
    margin: 10px 0;
    padding: 15px;

  }

 .dotted-border {
    border-bottom: 1px solid transparent; 
    background-image: linear-gradient(to right, #FC8B8B 50%, transparent 50%);
    background-repeat: repeat-x; 
    background-size: 20px 1px; 
    margin: 30px 0;
}

  select#lecturer {
    background: #FFF0F0;
    border: 1px solid #FC8B8B;
    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 #FC8B8B; /* Border styling */
    border-radius: 0;
    padding: 10px;
    width: 100%;
    background: #FFF0F0; /* 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 #FC8B8B;
    margin: 10px 0;
}

.course-price {
    border: 1px solid #FC8B8B;
    margin: 10px 0;
}

.price-check {
    display: flex;
}
.price-op-1, .price-op-2 {
    display: flex
    ;
        align-items: center;
        background: #FFF0F0;
        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 #FC8B8B;
    margin: 10px 0;

}

.course-summary {
    border: 1px solid #FC8B8B;
    margin: 10px 0;
}

.course-summary textarea  {
  height: 120px;  
}

.form-section .file-upload {
border: 1px dashed #FC8B8B;
	 padding: 30px; 

/*     background-image: linear-gradient(to right, #FC8B8B 50%, transparent 50%), 
                      linear-gradient(to bottom, #FC8B8B 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 #FC8B8B;
        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 #FC8B8B;
        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: #FFF0F0;

    }

.zoom-link input[type="checkbox"] {
	    width: 23px;
	  font-family: Arial, sans-serif;
}

.first .accordion-content {
    border-top: 1px solid #FC8B8B;
    margin: 0;
    background: white;
    padding: 0;
}
.first {
	border: 1px solid #FC8B8B;
}

.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 #FC8B8B;
    }

    .less-date {
        border: 1px solid #FC8B8B;
        margin: 10px 0;
    }

    .course-hours {
        display: flex
    ;
        justify-content: space-between;
    }
    .hour-1 {
        width: 49%;
        border: 1px solid #FC8B8B;
    
    }

    .hour-2 {
        width: 49%;
        border: 1px solid #FC8B8B;
    }

    .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: #FC8B8B;
        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: 6px 12px;
}

.accor-border {
    border: 1px solid #FC8B8B;
}


    .comment-de {
        border: 1px solid #E67575;
        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: #FFF0F0;
  }

.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 #E67575;
    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: #FFF0F0;
    appearance: none;
    width: 20px;
}
.price-op-2 {
    width: 47%;
}

  .price-op-2 input#price {
        border-bottom: 1px solid #FC8B8B;
    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: #FC8B8B;
    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;
}



@media (max-width: 768px) {
	.inner-form {
    width: 93%;
}
	  .connected_form  .bgcolor-lightred {
        padding: 0 0 10px 0 !important;
        background: #FC8B8B;
    }

	.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 */


