body{
  background-color: #F2F3F7;
  font-family: "Archivo", sans-serif;
}

.page-wrapper {
  /* max-width: 1400px; */
  margin: 0 auto;
  padding: 0 4%;
}

.application-card {
    padding: 16px;
    background: #fff;
    border: 2px solid #fff;
    border-radius: 20px;
    min-height: 90vh;
}

.application-step-panel {
  display: none;
  animation: fadeIn 0.25s ease-in;
}

.application-step-panel.active {
  display: block;
}

main.dashboard-main {
    padding-top: 100px;
    padding-bottom: 40px;
}
.dashboard-main::before {
    content: '';
    background-image: url(../images/world-left.png);
    width: 100%;
    height: 200px;
    display: block;
    background-size: contain;
    position: absolute;
    z-index: -1;
    bottom: -82px;
    background-repeat: no-repeat;
    background-position: bottom left;
}
.dashboard-main::after {
    content: '';
    background-image: url(../images/world-right.png);
    width: 100%;
    height: 400px;
    display: block;
    background-size: contain;
    position: absolute;
    z-index: -1;
    top: 0;
    right: 0;
    background-repeat: no-repeat;
    background-position: right;
}

.navbar-brand img{
  width: 250px;
}
.application-step-panel .section-helper {
  font-size: 0.9rem;
  color: #6b7280;
  margin-bottom: 20px;
}
.application-form-wrapper{
  display: flex;
  min-height: 70vh;
}

.application-card h1{ 
  font-weight: 600;
  font-size: 26px;
  line-height: 40px;
  color: #1B8E65;
  margin-bottom: 30px;
}
.application-card h2{ 
  font-weight: 600;
  font-size: 22px;
  line-height: 39.74px;
  color: #333333;
}
.application-stepper {
    gap: 24px;
    position: relative;
    --progress-percentage: 0%;
    border-radius: 10px;
    display: flex;
    padding: 14px 0;
    flex-direction: column;
    width: 300px;
    min-height: 60vh;
}

.application-stepper::before {
    content: "";
    position: absolute;
    top: 0;
    right: 34px;
    width: 2px;
    height: 100%;
    background: #D1D3D9;
    z-index: 1;
}

.application-step {
  flex: 1;
  position: relative;
  z-index: 2;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
}
.application-step div:first-child {
    width: calc(100% - 70px);
    padding-right: 20px;
}

.application-step .step-circle {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: #fff;
    border: 2px solid #A3A3A3;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 8px;
}

.application-step.active .step-circle {
  background: #EFFFF8;
  border-color: #1EAC53;
}
.step-circle svg path {
  fill: #A3A3A3;
}
.application-step.active .step-circle svg path {
  fill: #009859;
}
.application-step.completed .step-circle svg path {
  fill: #fff;
}
.application-step.completed .step-circle {
  background: #1EAC53;
  border-color: #1EAC53;
}
/* .application-step.completed .step-label {
  color: #048405;
} */

.application-step.completed .step-circle img {
  filter: brightness(0) invert(1);
}

.application-step .step-label {
    display: block;
    font-family: Archivo;
    font-weight: 500;
    font-size: 14px;
    line-height: 18px;
    text-align: end;
    color: #8C8C8C;
}

.application-step .step-subtitle {
    display: block;
    font-weight: 500;
    font-size: 18px;
    line-height: 22px;
    text-align: end;
    color: #000000;
    font-family: 'Archivo';
    margin-bottom: 10px;
}
#applicationForm{
  padding: 0 4%;
}

/* .application-step.active .step-label {
  color: #038a2d;
} */

.form-section-title {
  font-size: 1.15rem;
  font-weight: 600;
  color: #021b11;
  margin-bottom: 24px;
}
.navbar{
  background-color: #3C9575;
  padding: 1% 4%;
}
.login-btn{
  border-radius: 6px;
  background-color: #FFFFFF; 
  color: #3C9575;
  border: 0;
  padding: 7px 20px;
}
.form-control {
    background-color: #FAFAFA;
    border-radius: 5px;
    border: 1px solid #E5E7EA;
    padding: 14px;
    margin-bottom: 10px;
}

.form-control::placeholder {
  color: #94a3b8;
  /* opacity: 0.5;  */
}

.form-control::-ms-input-placeholder {
  color: #94a3b8;
}
.form-control:focus {
    outline: 0;
    box-shadow: none;
    border: 1px solid #E5E7EA;
    background-color: #FAFAFA;
}
/* .select2-container--default .select2-selection--single {
  border-radius: 44px;
  border: 1px solid #d7dce1;
  height: 42.6px;
  padding: 8px 14px;
  display: flex;
  align-items: center;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.select2-container--default
  .select2-selection--single
  .select2-selection__rendered {
  color: #0f172a;
  padding-left: 0;
  font-size: 13px;
}

.select2-container--default
  .select2-selection--single
  .select2-selection__placeholder {
  color: #94a3b8;
  font-size: 13px;
}

.select2-container--default
  .select2-selection--single
  .select2-selection__arrow {
  height: 100%;
  right: 12px;
}

.select2-container--default.select2-container--open .select2-selection--single {
  border-color: #048405;
  box-shadow: 0 0 0 0.25rem rgba(4, 132, 5, 0.15);
}

.select2-dropdown {
  border-color: #d7dce1;
  border-radius: 10px;
  overflow: hidden;
}

.select2-container--default
  .select2-results__option--highlighted.select2-results__option--selectable {
  background-color: #048405;
  color: #ffffff;
}

.select2-container--default .select2-results__option--selected {
  background-color: rgba(4, 132, 5, 0.08);
  color: #021b11;
}

.select2-search--dropdown .select2-search__field {
  border-radius: 8px;
  border: 1px solid #d7dce1;
  padding: 8px 12px;
}

.form-control:focus, .form-select:focus {
    border-color: #04840529;
    box-shadow: none;
} */

.form-label {
  font-weight: 500;
  margin-bottom: 4px;
  font-size: 13px;
  line-height: 20px;
  color: #8F8F8F;
}

.form-label .required {
  color: #d82d2d;
  margin-left: 4px;
}

.form-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  margin-top: 24px;
  flex-wrap: wrap;
}

.form-footer .nav-buttons {
  display: flex;
  gap: 12px;
}

.btn-cancel {
  border: 1px solid #cbd5e1;
  color: #475569;
  background-color: #ffffff;
  padding: 10px 22px;
  border-radius: 8px;
  font-weight: 500;
}

.btn-cancel:hover {
  background-color: #f1f5f9;
  color: #1e293b;
}
.btn-next{
  background-color: #3C9575 !important;
}
.btn-back{
  background-color: #EFF9F5;
  color: #3C9575;
}
.support-note {
  font-size: 0.9rem;
  color: #6b7280;
  text-align: center;
  margin-bottom: 16px;
}
.success-icon svg path {
    fill: #056839;
}

.success-icon {
    background-color: #e4f1e4;
}

.submission-modal .modal-content {
  border: none;
  border-radius: 22px;
  box-shadow: 0 24px 60px rgba(3, 67, 36, 0.16);
}

.submission-modal .btn-close {
  background-color: #f1f5f9;
  border-radius: 50%;
  padding: 10px;
  opacity: 1;
}

.submission-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: #021b11;
}

.submission-modal .divider {
  height: 1px;
  background-color: #e2e8f0;
  margin: 0 auto;
  width: 100%;
}

.success-icon {
  width: 84px;
  height: 84px;
  border-radius: 50%;
  /* background: radial-gradient(
    circle at center,
    #b2f5ce 0%,
    #48bb78 60%,
    #38a169 100%
  ); */
  display: flex;
  align-items: center;
  justify-content: center;
  /* color: #ffffff;
  font-size: 2rem; */
}

.submission-label {
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  color: #64748b;
}

.application-id-wrapper {
  background: linear-gradient(
    90deg,
    rgba(4, 132, 5, 0.1),
    rgba(4, 132, 5, 0.05)
  );
  border: 1px solid rgba(4, 132, 5, 0.3);
  border-radius: 12px;
  padding: 4px 24px;
  display: flex;
  align-items: center;
  gap: 12px;
  /* width: 100%; */
  justify-content: space-between;
  max-width: 314px;
}

.application-id {
  font-weight: 600;
  color: #065f46;
  letter-spacing: 0.04em;
}

.copy-btn {
  border: none;
  background: rgba(4, 132, 5, 0.1);
  color: #048405;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.copy-btn:hover {
  background: #048405;
  color: #ffffff;
}

.copy-btn.copied {
  background: #048405;
  color: #ffffff;
}

.submission-helper {
  color: #64748b;
  font-size: 13px;
}

.btn-rounded {
  border-radius: 999px;
  font-weight: 600;
  min-width: 140px;
  padding-top: 10px;
  padding-bottom: 10px;
}

.application-footer {
  padding: 24px 0 32px;
  text-align: center;
  color: #4b5563;
  font-size: 0.9rem;
}

.application-footer img {
  height: 36px;
  margin-bottom: 8px;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(6px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@media (min-width: 1024px) {
  .application-card {
    min-height: 90vh;
  }
}
@media (max-width: 991px) {
  
  .application-card {
    padding: 24px 20px;
  }

  .application-stepper {
    gap: 16px;
    min-height: 100%;
    display: flex;
    flex-direction: row;
    width: 100%;
    min-height: 100%;
  }
.application-step div:first-child{
  width: 100%;
  padding-right: 0;
}
  .application-stepper::before {
    display: none;
  }

     .application-step {
        display: flex;
        align-items: center;
        text-align: left;
        gap: 16px;
        flex-direction: column-reverse;
        justify-content: flex-end;
    }

  .application-step .step-subtitle{
    text-align: center;
    font-size: 16px;
  }
  .application-step .step-label{
    text-align: center;
    font-size: 14px;
  }

  .application-step .step-circle {
    margin: 0;
  }

  .form-footer {
    flex-direction: column;
    align-items: stretch;
  }

  .form-footer .nav-buttons {
    justify-content: flex-end;
  }
}

.hr_cs {
  color: #d7dce1;
  opacity: 0.5;
  margin-bottom: 30px;
}

.select2-container--default.select2-container--open .select2-selection--single {
  border-radius: 22px;
}

.acc_header_cs {
  display: flex;
  align-items: start;
  justify-content: space-between;
}
.acc_title {
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 2px;
}
.acc_title_desc {
  font-size: 14px;
  margin-bottom: 0;
}
.btn_link_view {
  font-style: normal;
  font-weight: 500;
  font-size: 13px;
  line-height: 19px;
  color: #333333;
  text-decoration: none;
}

/* .btn-success.btn_cs {
  background-image: linear-gradient(
    90deg,
    #048405 0%,
    #06a307 50%,
    #048405 100%
  );
  border: none;
} */
.btn-outline-success.btn_cs {
  background-image: linear-gradient(
    90deg,
    rgba(4, 132, 5, 0.06) 0%,
    rgba(4, 132, 5, 0.12) 50%,
    rgba(4, 132, 5, 0.06) 100%
  );
}
.btn-success {
  background-color: #056839;
  border-color: #056839;
}
.btn-danger{
   background-color: #C64242;
  border-color: #C64242;
}
.btn_cs {
  border-radius: 40px;
  padding: 8px 32px;
  border-radius: 5px !important;
  border: 0;
  min-width: 150px;
}
.btn_cs {
  position: relative;
  transition: transform 260ms ease, box-shadow 300ms ease,
    background-position 320ms ease;
  background-size: 200% auto;
  backface-visibility: hidden;
}
.application-step-panel .accordion-button.acc_header_cs::after {
  display: none !important;
}
.acc_header_cs .btn_cs,
.accord_cs .btn_cs {
  font-size: 12px;
  border-radius: 40px;
  padding: 6px 18px;
}
.member_card {
  background: #f9f9f9;
  border: 1px solid rgba(215, 215, 215, 0.5);
  border-radius: 10px;
  padding: 16px;
}
.member_card_title {
  font-weight: 500;
  font-size: 16px;
  line-height: 27px;
  color: #1f2937;
}
.member_card_email {
  font-weight: 400;
  font-size: 13px;
  line-height: 20px;
  color: #000000;
}
.btn_delete {
  width: 40.31px;
  height: 40.31px;
  background: #ffc7c7;
  border-radius: 50%;
  color: #e10d0d;
  display: flex;
  align-items: center;
  justify-content: center;
}
.btn_delete:hover {
  background: #ffc7c7;
  color: #e10d0d;
}
.application-step-panel .accordion-button:not(.collapsed) {
    color: var(--bs-accordion-active-color);
    background-color: transparent !important;
    box-shadow: unset !important;
}

.application-step-panel .accordion-item {
background: #FFFFFF !important;
border: 1px solid rgba(215, 215, 215, 0.5) !important;
border-radius: 10px !important;
margin-bottom: 14px;

}
.application-step-panel .accordion-item .accordion-header .accordion-button {
    border-radius: 10px !important;
}
.collapsed.acc_header_cs.active{

border: 1.33333px solid #319F32 !important;
box-shadow: 0px 0px 10px rgba(49, 159, 50, 0.4);


}
.member_card.remove_card{
  
background: #F3FFF2;
border: 1.33333px solid #319F32;
box-shadow: 0px 0px 10px rgba(49, 159, 50, 0.4);

}
textarea.form-control{
  border-radius: 12px;
}
/* upload field */
.file-drop-area {
    border: 2px dashed #1F7D71;
    background-color: #fff;
    border-radius: 8px;
    padding: 40px 20px;
    text-align: center;
    cursor: pointer;
    transition: border-color 0.25s ease, background 0.25s ease;
}

.file-drop-area:hover {
    border-color: #1F7D71;
    background: #1f7d7020;
}

.file-drop-area.drag-over {
    border-color: #34c38f;
    background: #e7fff4;
}

.file-drop-message p {
    margin: 0;
    font-size: 16px;
    color: #333333;
}


.file-drop-message span {
    color: #00000066;
    cursor: pointer;
    font-size: 14px;
}

.file-preview {
    margin-top: 12px;
    font-size: 14px;
    color: #495057;
}
/*  */
input[type="date"]::-webkit-calendar-picker-indicator {
    color: rgba(0, 0, 0, 0);
    opacity: 1;
    display: block;
    background: url(../images/uil_calendar.svg) no-repeat;
    width: 20px;
    height: 20px;
    border-width: thin;
}

.file-drop-area {
    border: 2px dashed #3c9575;
    border-radius: 15px;
    padding: 40px;
    text-align: center;
    cursor: pointer;
    transition: .2s;
    position: relative;
    margin-bottom: 20px;
    background: #fff;
	height:200px;
}

.file-drop-area.drag-over {
    background: #f5fffa;
    border-color: #2c7a63;
}

.upload-icon {
    width: 40px;
    margin-bottom: 10px;
}

.upload-title {
  color: #3c9575 !important;
  font-weight: 500;
  font-size: 20px !important;
}

.file-list {
    margin-top: 20px;
    text-align: left;
}

.file-item {
    display: flex;
    align-items: center;
    background: #f6fefb;
    padding: 10px 12px;
    border: 1px solid #c7e8dc;
    border-radius: 8px;
    margin-bottom: 8px;
    font-size: 14px;
}

.file-thumb {
    width: 40px;
    height: 40px;
    border-radius: 6px;
    object-fit: cover;
    margin-right: 12px;
    border: 1px solid #ddd;
}

.file-info {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.file-name {
    font-weight: 500;
    color: #333;
}

.remove-file {
    color: #d9534f;
    cursor: pointer;
    font-weight: bold;
    font-size: 20px;
    padding-left: 10px;
}
.file-upload-wrapper {
    margin-bottom: 20px;
}

.file-list {
    margin-top: 15px;
}
