@charset "UTF-8";
.kmcc-membership-form {
  margin-bottom: 30px;
  /* Optional: Change the arrow color when focused */
}
.kmcc-membership-form h2 {
  font-weight: 500;
  font-family: "Inter", sans-serif;
  color: #252525;
  font-size: 22px;
}
.kmcc-membership-form h4 {
  font-weight: 600;
  font-family: "Inter", sans-serif;
  color: #252525;
  font-size: 18px;
  margin: 30px 0;
}
.kmcc-membership-form .form-label {
  color: #252525;
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-size: 14px;
  margin-bottom: 12px;
}
.kmcc-membership-form .form-check-label {
  color: #252525;
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-size: 14px;
  margin-bottom: 12px;
}
.kmcc-membership-form .d-grid {
  grid-template-columns: 1fr 1fr;
}
.kmcc-membership-form .form-control,
.kmcc-membership-form .form-select {
  background: #FFFFFF;
  border: none;
  padding: 10px;
  font-size: 14px;
}
.kmcc-membership-form .form-check-input-radio {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  /* Remove default styling */
  width: 20px;
  /* Width of the radio button */
  height: 20px;
  /* Height of the radio button */
  border: 2px solid #28a745;
  /* Border color */
  border-radius: 50%;
  /* Make it round */
  cursor: pointer;
  /* Pointer on hover */
  position: relative;
  /* Position for pseudo-elements */
}
.kmcc-membership-form .form-check-input:checked {
  background-color: #63AE34;
  /* Green background when checked */
  border: 2px solid #63AE34;
  /* Border matches background */
}
.kmcc-membership-form .form-check-input:checked::before {
  content: "";
  /* Empty content for inner circle */
  position: absolute;
  top: 50%;
  /* Center vertically */
  left: 50%;
  /* Center horizontally */
  width: 12px;
  /* Inner circle size */
  height: 12px;
  /* Inner circle size */
  background-color: #63AE34;
  /* Inner circle color */
  border-radius: 50%;
  /* Make it round */
  transform: translate(-50%, -50%);
  /* Center it */
  display: none;
}
.kmcc-membership-form .form-check-input:focus {
  outline: none;
  /* Remove outline on focus */
}
.kmcc-membership-form .form-check-input:checked {
  background-color: #63AE34;
  border-color: #63AE34;
}
.kmcc-membership-form .form-check-label,
.kmcc-membership-form .form-select {
  font-weight: 400;
}
.kmcc-membership-form .form-check-input {
  margin-right: 8px;
}
.kmcc-membership-form .btn-primary {
  background: #63AE34;
  border-radius: 17px;
  padding: 5px 20px;
  border: 1px solid #63AE34;
}
.kmcc-membership-form .btn-primary:hover {
  color: #218838;
  border-color: #1e7e34;
  background-color: #fff;
}
.kmcc-membership-form .form-check-inline {
  margin-right: 20px;
}
.kmcc-membership-form .form-section {
  background: #F9F9F9;
  border-right: 5px solid #63AE34;
  /* Right border */
  position: relative;
  /* Positioning context for pseudo-element */
  padding: 20px;
  margin-bottom: 20px;
}
.kmcc-membership-form .form-section-radio {
  background: #F9F9F9;
  border-right: 5px solid #63AE34;
  /* Right border */
  position: relative;
  /* Positioning context for pseudo-element */
  margin-bottom: 20px;
}
.kmcc-membership-form .form-section-radio::after {
  content: "";
  /* Empty content */
  position: absolute;
  /* Absolutely positioned */
  bottom: 0;
  /* Bottom alignment */
  right: 0;
  /* Start from the left */
  width: 30%;
  /* Half 
  width */
  height: 5px;
  /* Border thickness */
  background-color: #63AE34;
  /* Border color */
}
.kmcc-membership-form .form-section::after {
  content: "";
  /* Empty content */
  position: absolute;
  /* Absolutely positioned */
  bottom: 0;
  /* Bottom alignment */
  right: 0;
  /* Start from the left */
  width: 30%;
  /* Half 
  width */
  height: 5px;
  /* Border thickness */
  background-color: #63AE34;
  /* Border color */
}
.kmcc-membership-form .row {
  margin-bottom: 15px;
}
.kmcc-membership-form .file-upload {
  position: relative;
  display: flex;
  background-color: #ffffff;
  /* White background */
  border-radius: 5px;
  /* Rounded corners */
  padding: 10px;
  /* Add some padding */
}
.kmcc-membership-form .file-upload input[type=file] {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  /* Hide the input */
  cursor: pointer;
  /* Change cursor to pointer */
}
.kmcc-membership-form .choose-file-label {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  cursor: pointer;
  height: calc(100% - 2px);
  background: #A5A5A5;
  padding: 5px;
  border-radius: 25px;
}
.kmcc-membership-form .form-additional {
  background: #F9F9F9;
}
.kmcc-membership-form .custom-arrow {
  -webkit-appearance: none;
  /* Removes default arrow in WebKit browsers */
  -moz-appearance: none;
  /* Removes default arrow in Firefox */
  appearance: none;
  /* Removes default arrow in other browsers */
  background-image: url("arrow.png");
  /* Path to your custom arrow icon */
  background-repeat: no-repeat;
  background-position: right 10px center;
  /* Position the arrow */
  background-size: 12px;
  /* Size of the arrow */
  padding-right: 30px;
  /* Adds space for the arrow */
  border: 1px solid #ced4da;
  /* Custom border style */
  border-radius: 5px;
  /* Rounded corners */
  font-size: 14px;
}
.kmcc-membership-form .custom-arrow:focus {
  border-color: #63AE34;
  outline: none;
}
.kmcc-membership-form .membership-radio {
  margin-bottom: 10px;
}
.kmcc-membership-form .membership-radio .form-label {
  margin-right: 15px;
}
.kmcc-membership-form .text-section {
  padding: 15px;
  /* Padding inside the box */
  border-radius: 5px;
  /* Rounded corners */
  color: #333;
  /* Text color */
  line-height: 1.6;
  /* Space between lines */
}
.kmcc-membership-form .checkbox-container {
  display: flex;
  align-items: center;
  margin-top: 15px;
  background: #E4E4E4;
  padding: 5px;
  align-content: center;
  align-items: center;
  justify-content: center;
  border-radius: 17px;
}
.kmcc-membership-form .checkbox-container input[type=checkbox] {
  position: relative;
  width: 20px;
  height: 20px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: 2px solid #ddd;
  /* Light grey border */
  border-radius: 4px;
  outline: none;
  background-color: #fff;
  /* White background */
  cursor: pointer;
  margin-right: 10px;
  transition: background-color 0.3s ease, border-color 0.3s ease;
}
.kmcc-membership-form .checkbox-container input[type=checkbox]:checked {
  border-color: #28a745;
  /* Green border when checked */
  background-color: #fff;
  /* Ensure background stays white */
}
.kmcc-membership-form .checkbox-container input[type=checkbox]:checked::before {
  content: "✔";
  /* Unicode for a checkmark */
  position: absolute;
  top: 0;
  left: 3px;
  font-size: 16px;
  color: #28a745;
  /* Green checkmark */
}
.kmcc-membership-form .checkbox-container label {
  color: #333;
  /* Label color */
  font-size: 14px;
  /* Label font size */
}
.kmcc-membership-form .text-section p {
  font-family: "Inter", sans-serif;
}
.kmcc-membership-form .bg-dark-off {
  background: #F2F2F2;
  padding: 10px;
}
.kmcc-membership-form .p-10 {
  padding: 10px;
}
.kmcc-membership-form .form-dark {
  background: #E9E9E9;
}/*# sourceMappingURL=style.css.map */