body {
  font-family: "Open+Sans", "Segoe UI", Roboto, "Helvetica Neue", Arial,
    sans-serif;
  background: radial-gradient(
    circle at 50% 0%,
    #3ba17a 0%,
    #17666a 50%,
    #163b67 100%
  );
  background-repeat: no-repeat;
  color: white;
  margin: 0;
  padding: 10px;
  box-sizing: border-box;
  width: 100vw;
  min-height: 100vh;
  overflow-x: hidden;
  user-select: none;
}
/* Reset padding dan margin untuk elemen dasar */
p,
h1,
a,
span,
b {
  margin: 0; /* Menghapus margin default */
  padding: 0; /* Menghapus padding default */
}

/* Ukuran font umum dan responsif */
h1 {
  font-size: 2rem; /* Ukuran font untuk h1 */
}

p {
  font-size: 1rem; /* Ukuran font untuk paragraf */
}

a {
  font-size: 1rem; /* Ukuran font untuk tautan */
  text-decoration: none; /* Menghapus garis bawah pada tautan */
}

span,
b {
  font-size: 1rem; /* Ukuran font untuk span dan b */
}

.subtitle {
  font-size: 0.8rem;
}

/* Responsif: Menyesuaikan ukuran font pada layar kecil */
@media (max-width: 768px) {
  h1 {
    font-size: 1.5rem; /* Ukuran font lebih kecil untuk h1 */
  }

  p,
  a,
  span,
  b {
    font-size: 0.9rem; /* Ukuran font lebih kecil untuk elemen lainnya */
  }
}

/* Responsif: Menyesuaikan ukuran font pada layar sangat kecil */
@media (max-width: 480px) {
  h1 {
    font-size: 1rem; /* Ukuran font lebih kecil untuk h1 */
  }

  p,
  a,
  span,
  b {
    font-size: 0.6rem; /* Ukuran font lebih kecil untuk elemen lainnya */
  }

  .container .title .arrowsplitter {
    width: 60%;
  }
}

.container {
  text-align: center;
  max-width: 100%;
  padding: 20px;
}

.container .title {
  margin-top: 30px;
  text-align: center;
  padding-bottom: 10px;
}

.container .title h1 {
  margin-bottom: 0px;
}

.container .title .arrowsplitter {
  width: 20%;
  height: 20px;
  margin: 0 auto;
  position: relative;
  display: flex;
  margin-bottom: 20px;
}

.container .title .slankicons {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  height: 45px;
  width: 200px;
  margin: 0 auto;
}

.container .title .slankicons .icon {
  width: 45px;
  height: 45px;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
}
.container .title .slankicons .icon svg {
  width: 25px;
  height: 25px;
}
.container .title .slankicons .icon .labelicon {
  font-size: 0.4rem;
}

.container .title .slankicons .icon svg path {
  transition: 0.3s;
}

.container .title .slankicons .icon:hover > svg path {
  stroke: #0ae71c;
}

.container .title .arrowsplitter .leftspliter {
  width: calc(50% - 15px);
  border-bottom: 1px solid #fff;
  height: 20px;
}
.container .title .arrowsplitter .rightspliter {
  width: calc(50% - 15px);
  border-bottom: 1px solid #fff;
  height: 20px;
}
.container .title .arrowsplitter svg {
  width: 30px;
  height: 20px;
  left: 50%;
  margin-top: 18px;
  margin-left: -2px;
  margin-right: -2px;
}

.container .spliter {
  margin: 0 auto;
  width: 80%;
  height: 3px;
  background: #17666a;
  border-radius: 3px;
  box-shadow: inset 1px 1px 2px rgba(0, 0, 0, 0.2),
    /* Bayangan dalam */ inset -1px -1px 2px #3ba17a; /* Bayangan dalam */
}
.container .spliterbuttom {
  margin: 0 auto;
  width: 80%;
  height: 3px;
  background: #163b67;
  border-radius: 3px;
  box-shadow: inset 1px 1px 2px rgba(0, 0, 0, 0.2),
    /* Bayangan dalam */ inset -1px -1px 2px #3ba17a; /* Bayangan dalam */
  margin-bottom: 20px;
}

.container .menus {
  margin: 0 auto;
  margin-top: 5px;
  margin-bottom: 5px;
  width: 80%;
  display: flex;
  flex-wrap: wrap; /* Mengizinkan elemen untuk membungkus ke baris berikutnya */
  justify-content: space-between; /* Mengatur jarak antar elemen */
  /* background: red; */
}

.container .menus .menu-items {
  margin: 0 auto;
  width: 180px;
  height: 200px;
  margin-bottom: 10px;
  padding: 20px;
}

.container .menus .menu-items .items {
  width: 120px;
  height: 120px;
  margin: 0 auto;
  position: relative;
}
.container .menus .menu-items .items .buletIcon {
  position: absolute;
  width: 90px;
  height: 90px;
  background-color: #fff;
  border-radius: 100%;
  left: 50%;
  margin-left: -45px;
  margin-top: 15px;
  z-index: 10;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: 0.3s;
  box-shadow: 0 16px 24px 2px rgba(0, 0, 0, 0.14),
    0 6px 30px 5px rgba(0, 0, 0, 0.12), 0 8px 10px -7px rgba(0, 0, 0, 0.2) !important;
}

.container .menus .menu-items .items .buletIcon .insider {
  width: 70px;
  height: 70px;
  background: #f6f8f5;
  border-radius: 100%;
  box-shadow: inset 1px 1px 2px rgba(0, 0, 0, 0.2),
    /* Bayangan dalam */ inset -1px -1px 2px #e4e6e5; /* Bayangan dalam */
  display: flex;
  justify-content: center;
  align-items: center;
}
.container .menus .menu-items .items .buletIcon .insider svg {
  width: 40px;
  height: 40px;
}

.container .menus .menu-items .label {
  width: 180px;
  height: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.2rem;
}

.container .menus .menu-items .item-spliter {
  width: 50px;
  height: 2px;
  margin: 0 auto;
  transition: 0.3s;
  box-shadow: 0 4px 5px 0 rgba(0, 0, 0, 0.14), 0 1px 10px 0 rgba(0, 0, 0, 0.12),
    0 2px 4px -1px rgba(0, 0, 0, 0.3) !important;
}

.green {
  background: #89c734;
}

.greens svg,
.greens svg path {
  stroke: #89c734;
}

.orange {
  background: #e6ae45;
}
.oranges svg,
.oranges svg path {
  stroke: #e6ae45;
}

.container .menus .menu-items .items .buletIcon:hover > .greens svg path {
  stroke: #e6ae45;
}

.container .menus .menu-items .items .buletIcon:hover > .oranges svg path {
  stroke: #89c734;
}
.buletIcon:hover ~ .circleprogress .progress {
  stroke-dashoffset: 314.15 !important;
}

.items:hover ~ .item-spliter {
  width: 180px !important;
}

.container .menus .menu-items .desc {
  margin-top: 8px;
  width: 180px;
}
.container .menus .menu-items .desc p {
  font-size: 0.7rem;
}

.circleprogress {
  transform: rotate(135deg);
  position: absolute;
  left: 0;
  top: 0;
  z-index: 8;
}
.progress-circle {
  fill: none; /* Tidak ada warna isi */
  stroke-width: 3; /* Ketebalan garis */
}
.background {
  stroke: transparent; /* Warna latar belakang */
}
.relprogress {
  /* stroke: #76c7c0; */
  transition: stroke-dashoffset 0.5s ease; /* Animasi saat progres berubah */
}
.progress {
  /* stroke: #E6AE45; */
  transition: stroke-dashoffset 0.5s ease; /* Animasi saat progres berubah */
}

.donasiContainer {
  margin: 0 auto;
  width: 60%;
  margin-bottom: 20px;
}

.donasiContainer .dataRekening {
  margin: 0 auto;
  width: 330px;
  margin-top: 15px;
  background: white;
  color: #000;
  padding: 15px;
  text-align: left;
  border-radius: 10px 10px 10px 10px;
  position: relative;
  box-shadow: 0 3px 3px 0 rgba(0, 0, 0, 0.14), 0 1px 7px 0 rgba(0, 0, 0, 0.12),
    0 3px 1px -1px rgba(0, 0, 0, 0.2) !important;
}

.donasiContainer .dataRekening .norekening {
  display: flex;
  justify-content: space-between;
  align-items: start;
  font-size: 1rem;
}
.donasiContainer .dataRekening .norekening .dt {
  display: block;
  font-size: 1rem;
}

.donasiContainer .dataRekening .norekening .copybutton {
  width: 50px;
  height: 50px;
  background-color: #e6ae45;
  font-size: 0.6rem;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 5px;
  cursor: pointer;
  color: #fff;
  box-shadow: 0 3px 3px 0 rgba(0, 0, 0, 0.14), 0 1px 7px 0 rgba(0, 0, 0, 0.12),
    0 3px 1px -1px rgba(0, 0, 0, 0.2) !important;
}

.donasiContainer .dataRekening .kirim {
  margin-top: 15px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 330px;
  height: 50px;
  background: #3ba17a;
  border-radius: 10px;
  font-size: 1.3rem;
  box-shadow: 0 2px 3px 1px rgba(0, 0, 0, 0.14),
    0 2px 5px 8px rgba(0, 0, 0, 0.12), 0 11px 15px -7px rgba(0, 0, 0, 0.2) !important;
  cursor: pointer;
  color: #fff;
}

.container .spliterbuttom2 {
  margin: 0 auto;
  width: 60%;
  height: 3px;
  background: #163b67;
  border-radius: 3px;
  box-shadow: inset 1px 1px 2px rgba(0, 0, 0, 0.2),
    /* Bayangan dalam */ inset -1px -1px 2px #3ba17a; /* Bayangan dalam */
}
.donasiContainer .persuasi blockquote {
  font-size: 1.1rem !important;
  font-style: italic;
}

.donasiContainer .persuasi span {
  font-size: 1.1rem !important;
}

.pageView {
  position: fixed;
  z-index: 20;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  background: #f3f3f3;
  overflow-y: auto;
  display: none;
}

.pageView .headView {
  display: flex;
  justify-content: center;
  /* padding-left: 20px; */
  align-items: center;
  width: 100%;
  height: 55px;
  font-weight: bold;
  font-size: 1.1rem;
  color: #000;
  line-height: 16px;
  background: #fff;
  box-shadow: 0 1px 2px 0 rgba(60, 64, 67, 0.3),
    0 2px 6px 2px rgba(60, 64, 67, 0.15);
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  right: 0;
}
.pageView .headView .btnclose {
  width: 30px;
  height: 30px;
  font-weight: normal;
  position: absolute;
  right: 10px;
  color: red;
  cursor: pointer;
}
.pageView .lapView {
  box-shadow: 0 1px 2px 0 rgba(60, 64, 67, 0.3),
    0 2px 6px 2px rgba(60, 64, 67, 0.15);
  background: #fff;
  width: 90%;
  margin: 0 auto;
  display: block;
  margin-top: 75px;
  margin-bottom: 30px;
  padding: 20px;
  position: relative;
  overflow-x: auto;
}

.pageView .lapView h1 {
  font-size: 1rem;
  color: #000;
  margin: 0 auto;
}
.pageView .lapView span {
  font-size: 0.8rem;
  color: #000;
  margin: 0 auto;
}

.pageView .lapView .headlap {
  width: 70%;
  margin: 0 auto;
  text-align: center;
}

.pageView .lapView .bodylap {
  width: 100%;
  margin: 0 auto;
  text-align: center;
  color: #000;
}
.pageView .lapView .bodylap .judul {
  margin-top: 20px;
  text-align: left;
  left: 0;
  font-size: 1rem;
}
@media (max-width: 520px) {
  .container .title {
    margin-top: 10px;
  }
  .container .title .arrowsplitter {
    width: 70%;
  }

  .subtitle {
    font-size: 0.6rem;
  }
  .donasiContainer {
    width: 90%;
  }

  .donasiContainer .dataRekening {
    width: 80%;
  }

  .donasiContainer .dataRekening .norekening {
    font-size: 0.8rem;
  }

  .donasiContainer .persuasi blockquote {
    font-size: 0.9rem !important;
    font-style: italic;
  }

  .donasiContainer .persuasi span {
    font-size: 0.9rem !important;
  }

  .donasiContainer .dataRekening .norekening .dt {
    display: block;
    font-size: 0.8rem;
  }

  .donasiContainer .dataRekening .kirim {
    margin-top: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 50px;
    background: #3ba17a;
    border-radius: 10px;
    font-size: 1rem;
    box-shadow: 0 2px 3px 1px rgba(0, 0, 0, 0.14),
      0 2px 5px 8px rgba(0, 0, 0, 0.12), 0 11px 15px -7px rgba(0, 0, 0, 0.2) !important;
    cursor: pointer;
    color: #fff;
  }

  .donasiContainer .persuasi {
    font-size: 1.7rem !important;
  }
}

.table {
  --bs-table-color-type: initial;
  --bs-table-bg-type: initial;
  --bs-table-color-state: initial;
  --bs-table-bg-state: initial;
  --bs-table-color: #000;
  --bs-table-bg: #fff;
  --bs-table-border-color: #000;
  --bs-table-accent-bg: transparent;
  --bs-table-striped-color: #000;
  --bs-table-striped-bg: rgba(0, 0, 0, 0.05);
  --bs-table-active-color: #000;
  --bs-table-active-bg: rgba(0, 0, 0, 0.1);
  --bs-table-hover-color: #000;
  --bs-table-hover-bg: rgba(0, 0, 0, 0.075);
  width: 100%;
  position: relative;
  margin-bottom: 1rem;
  vertical-align: top;

  margin-top: 10px;
  border-color: #cbc9c9;
  border-color: inherit;
  border-style: solid;
  border-width: 0;
  border-collapse: collapse;
}

.table thead tr,
.table tbody tr {
  border: 1px solid #cbc9c9;
}

.table thead tr th,
.table thead tr td,
.table tbody tr td {
  border: 1px solid #cbc9c9;
  font-size: 0.8rem;
  text-align: center;
  vertical-align: middle;
}
.grableft {
  text-align: left !important;
}

.grabcenter {
  text-align: center !important;
}

.grabcenter svg {
    width: 15px;
    height: 15px;
    cursor: pointer;
    margin-left: 10px;
}
.grabright {
  text-align: right !important;
}
.table > :not(caption) > * > * {
  padding: 0.5rem 0.5rem;
  color: var(
    --bs-table-color-state,
    var(--bs-table-color-type, var(--bs-table-color))
  );
  background-color: var(--bs-table-bg);
  border-bottom-width: var(--bs-border-width);
  box-shadow: inset 0 0 0 9999px
    var(--bs-table-bg-state, var(--bs-table-bg-type, var(--bs-table-accent-bg)));
}

.table > tbody {
  vertical-align: inherit;
}

.table > thead {
  vertical-align: bottom;
}

.table-group-divider {
  border-top: calc(var(--bs-border-width) * 2) solid currentcolor;
}

.caption-top {
  caption-side: top;
}

.table-sm > :not(caption) > * > * {
  padding: 0.25rem 0.25rem;
}

.table-bordered > :not(caption) > * {
  border-width: var(--bs-border-width) 0;
}

.table-bordered > :not(caption) > * > * {
  border-width: 0 var(--bs-border-width);
}

.table-borderless > :not(caption) > * > * {
  border-bottom-width: 0;
}

.table-borderless > :not(:first-child) {
  border-top-width: 0;
}

.table-striped > thead > tr:nth-of-type(odd) > * {
  --bs-table-color-type: var(--bs-table-striped-color);
  --bs-table-bg-type: var(--bs-table-striped-bg);
}
.table-striped > thead > tr:nth-of-type(even) > * {
  --bs-table-color-type: var(--bs-table-striped-color);
  --bs-table-bg-type: var(--bs-table-striped-bg);
}

.table-striped > tbody > tr:nth-of-type(even) > * {
  --bs-table-color-type: var(--bs-table-striped-color);
  --bs-table-bg-type: var(--bs-table-striped-bg);
}

.table-striped-columns > :not(caption) > tr > :nth-child(2n) {
  --bs-table-color-type: var(--bs-table-striped-color);
  --bs-table-bg-type: var(--bs-table-striped-bg);
}

.table-active {
  --bs-table-color-state: var(--bs-table-active-color);
  --bs-table-bg-state: var(--bs-table-active-bg);
}

.table-hover > tbody > tr:hover > * {
  --bs-table-color-state: var(--bs-table-hover-color);
  --bs-table-bg-state: var(--bs-table-hover-bg);
}

.table-primary {
  --bs-table-color: #000;
  --bs-table-bg: #cfe2ff;
  --bs-table-border-color: #bacbe6;
  --bs-table-striped-bg: #c5d7f2;
  --bs-table-striped-color: #000;
  --bs-table-active-bg: #bacbe6;
  --bs-table-active-color: #000;
  --bs-table-hover-bg: #bfd1ec;
  --bs-table-hover-color: #000;
  color: var(--bs-table-color);
  border-color: var(--bs-table-border-color);
}

.table-secondary {
  --bs-table-color: #000;
  --bs-table-bg: #e2e3e5;
  --bs-table-border-color: #cbccce;
  --bs-table-striped-bg: #d7d8da;
  --bs-table-striped-color: #000;
  --bs-table-active-bg: #cbccce;
  --bs-table-active-color: #000;
  --bs-table-hover-bg: #d1d2d4;
  --bs-table-hover-color: #000;
  color: var(--bs-table-color);
  border-color: var(--bs-table-border-color);
}

.table-success {
  --bs-table-color: #000;
  --bs-table-bg: #d1e7dd;
  --bs-table-border-color: #bcd0c7;
  --bs-table-striped-bg: #c7dbd2;
  --bs-table-striped-color: #000;
  --bs-table-active-bg: #bcd0c7;
  --bs-table-active-color: #000;
  --bs-table-hover-bg: #c1d6cc;
  --bs-table-hover-color: #000;
  color: var(--bs-table-color);
  border-color: var(--bs-table-border-color);
}

.table-info {
  --bs-table-color: #000;
  --bs-table-bg: #cff4fc;
  --bs-table-border-color: #badce3;
  --bs-table-striped-bg: #c5e8ef;
  --bs-table-striped-color: #000;
  --bs-table-active-bg: #badce3;
  --bs-table-active-color: #000;
  --bs-table-hover-bg: #bfe2e9;
  --bs-table-hover-color: #000;
  color: var(--bs-table-color);
  border-color: var(--bs-table-border-color);
}

.table-warning {
  --bs-table-color: #000;
  --bs-table-bg: #fff3cd;
  --bs-table-border-color: #e6dbb9;
  --bs-table-striped-bg: #f2e7c3;
  --bs-table-striped-color: #000;
  --bs-table-active-bg: #e6dbb9;
  --bs-table-active-color: #000;
  --bs-table-hover-bg: #ece1be;
  --bs-table-hover-color: #000;
  color: var(--bs-table-color);
  border-color: var(--bs-table-border-color);
}

.table-danger {
  --bs-table-color: #000;
  --bs-table-bg: #f8d7da;
  --bs-table-border-color: #dfc2c4;
  --bs-table-striped-bg: #eccccf;
  --bs-table-striped-color: #000;
  --bs-table-active-bg: #dfc2c4;
  --bs-table-active-color: #000;
  --bs-table-hover-bg: #e5c7ca;
  --bs-table-hover-color: #000;
  color: var(--bs-table-color);
  border-color: var(--bs-table-border-color);
}

.table-light {
  --bs-table-color: #000;
  --bs-table-bg: #f8f9fa;
  --bs-table-border-color: #dfe0e1;
  --bs-table-striped-bg: #ecedee;
  --bs-table-striped-color: #000;
  --bs-table-active-bg: #dfe0e1;
  --bs-table-active-color: #000;
  --bs-table-hover-bg: #e5e6e7;
  --bs-table-hover-color: #000;
  color: var(--bs-table-color);
  border-color: var(--bs-table-border-color);
}

.table-dark {
  --bs-table-color: #fff;
  --bs-table-bg: #212529;
  --bs-table-border-color: #373b3e;
  --bs-table-striped-bg: #2c3034;
  --bs-table-striped-color: #fff;
  --bs-table-active-bg: #373b3e;
  --bs-table-active-color: #fff;
  --bs-table-hover-bg: #323539;
  --bs-table-hover-color: #fff;
  color: var(--bs-table-color);
  border-color: var(--bs-table-border-color);
}

.table-responsive {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.table tbody tr .mark {
  background: #08ac6d;
  color: #fff;
}

.table tbody tr .markotop {
  background: #fab002;
  color: #fff;
}
@media (max-width: 575.98px) {
  .table-responsive-sm {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
}

@media (max-width: 767.98px) {
  .table-responsive-md {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .table thead tr th,
  .table thead tr td,
  .table tbody tr td {
    border: 1px solid #cbc9c9;
    font-size: 0.5rem;
    text-align: center;
    vertical-align: middle;
  }
}

@media (max-width: 991.98px) {
  .table-responsive-lg {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
}

@media (max-width: 1199.98px) {
  .table-responsive-xl {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
}

@media (max-width: 1399.98px) {
  .table-responsive-xxl {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
}

.form-label {
  margin-bottom: 0.5rem;
}

.col-form-label {
  padding-top: calc(0.375rem + var(--bs-border-width));
  padding-bottom: calc(0.375rem + var(--bs-border-width));
  margin-bottom: 0;
  font-size: inherit;
  line-height: 1.5;
}

.col-form-label-lg {
  padding-top: calc(0.5rem + var(--bs-border-width));
  padding-bottom: calc(0.5rem + var(--bs-border-width));
  font-size: 1.25rem;
}

.col-form-label-sm {
  padding-top: calc(0.25rem + var(--bs-border-width));
  padding-bottom: calc(0.25rem + var(--bs-border-width));
  font-size: 0.875rem;
}

.overlay {
  position: fixed;
  z-index: 1001;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  display: none;
  justify-content: center;
  align-items: center;
  background-color: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
}

.overlay .formed {
  z-index: 1002;
  position: fixed;
  width: 500px;
  height: 250px;
  left: 50%;
  top: 50%;
  margin-left: -250px;
  margin-top: -125px;
  border-radius: 10px;
  overflow: hidden;
  transition: 0.3s;
  background: #fff;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: rgba(0, 0, 0, 0.14) 0px 16px 24px 2px,
    rgba(0, 0, 0, 0.12) 0px 6px 30px 5px, rgba(0, 0, 0, 0.2) 0px 8px 10px -7px !important;
}

.overlay .formed .container h1 {
  box-sizing: border-box;
  position: relative;
  margin-bottom: 20px;
  font-size: 1.1rem;
  color: #000;
}

.form-control {
  display: block;
  width: 400px;
  margin: 0 auto;
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #2c3034;
  background-color: #f4eeee;
  background-clip: padding-box;
  border: 1px solid #40ecf5;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border-radius: 3px;
  margin-bottom: 10px;
}

.form-controls {
  display: block;
  width: calc(100% - 2rem);
  margin: 0 auto;
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #2c3034;
  background-color: #f4eeee;
  background-clip: padding-box;
  border: 1px solid #40ecf5;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border-radius: 3px;
  margin-bottom: 0px;
}

.overlay .formed .container button {
  font-size: 1rem;
  border: transparent;
  color: #07c5c2;
  font-family: "Open Sans", sans-serif;
  padding: 0.75rem 1rem;
  text-decoration: none;
  transition: all 0.3s ease-out;
  text-transform: capitalize;
  line-height: 1;
  border-radius: 8px;
  cursor: pointer;

}

.overlay .formed .container h2 {
  box-sizing: border-box;
  position: relative;
  margin-bottom: 20px;
  font-size: 0.7rem;
  color: red;
  margin-top: -5px;
}

.overlay .formed .container button img {
  width: 30px;
  height: 30px;
}

.overlay .formed .container button:hover {
  color: #0ae71c;
  background-color: #07c5c2;
}

@media (max-width: 700px) {
  .overlay .formed {
    width: 90%;
    height: 220px;
    left: 5%;
    top: 50%;
    margin-top: -110px;
    margin-left: 0px;
  }
  .form-control {
    width: 80%;
  }
}


.swal2-input, .swal2-select {
  width: 100%;
  padding: 8px;
  font-size: 14px;
  margin: 5px 0;
  border: 1px solid #ccc;
  border-radius: 5px;
}
.swal2-label {
  font-weight: bold;
  display: block;
  margin-top: 10px;
  text-align: left;
  font-size: 15px;
}

.formcontainer {
  max-width: 100%;
  margin: auto;
  background-color: #fff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.formcontainer h2 {
  text-align: left;

  margin-bottom: 30px;
  color: #333;
}

.formcontainer .form-section {
  margin-bottom: 40px;
}

.formcontainer h3 {
  text-align: left;
  font-size: 18px;
  color: #3ba17a;
  margin-bottom: 15px;
  border-left: 5px solid#2e8b67;
  padding-left: 10px;
}

.formcontainer .form-group {
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
}

.formcontainer label {
  font-size: 15px;
  text-align: left;
  font-weight: 600;
  margin-bottom: 5px;
}

.formcontainer input,
select,
textarea {
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 16px;
}

.formcontainer textarea {
  resize: vertical;
  min-height: 80px;
}

.formcontainer .grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

@media (max-width: 768px) {
  .formcontainer .grid {
    grid-template-columns: 1fr;
  }
}

.formcontainer button {
  background-color: #3ba17a;
  color: #fff;
  border: none;
  padding: 12px 20px;
  border-radius: 5px;
  cursor: pointer;
  font-size: 16px;
}

.formcontainer button:hover {
  background-color: #3ba17a;
}

.formcontainer .error {
  color: red;
  font-size: 12px;
  margin-top: 5px;
  display: none;
  text-align: left;
}