*,
ul {
  margin: 0;

  padding: 0;
}

a,
a:hover {
  text-decoration: none;

  color: #262626;
}

body {
  font-size: 1.1rem;

  font-family: "Hind", sans-serif;

  color: #373737;
}

header {
  height: auto;
}

header.page-header {
  margin-bottom: 150px;

  aspect-ratio: 22/9;
}

header .slider img {
  width: 100%;

  aspect-ratio: 22/9;

  object-fit: cover;
}

.top-main {
  display: flex;

  align-items: center;

  justify-content: space-between;

  padding: 15px 0;

  margin: auto;
}

.top-header {
  position: sticky;

  top: 0;

  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.2);

  background: #fff;
}

.logo img {
  width: 150px;
}

.logo-top img {
  width: 20px;
}

nav ul {
  display: flex;

  list-style-type: none;
}

nav ul li a {
  font-size: 16px;

  color: #7c7c7c;

  font-weight: 600;

  display: block;

  padding: 10px;
}

nav ul li a:hover {
  color: #103920;

  transition: 0.5s;
}

.search {
  width: 100%;

  margin: auto;

  text-align: center;
}

.search input {
  width: 80%;

  border: 1px solid #ccc;

  border-radius: 5px;

  padding: 7px 10px;

  background: #eeeeee;
}

.search input::placeholder {
  font-weight: 500;

  font-size: 14px;
}

.search input:focus {
  border: 1px solid #103920;

  outline: none;

  transition: 0.5s;
}

.program {
  display: grid;

  grid-template-columns: repeat(3, 1fr);

  gap: 30px;

  list-style-type: none;
}

.program li {
  border-radius: 5px;

  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);

  transition: 0.5s;

  overflow: hidden;
}

.program li:hover {
  transform: scale(1.055);
}

.program li img {
  width: 100%;

  height: 200px;

  object-fit: cover;
}

.program li h2 {
  font-size: 16px;

  text-transform: uppercase;

  font-weight: 600;
}

.program li span {
  font-size: 12px;
}

.program li h5 {
  font-size: 16px;
}

.program-body {
  padding: 20px;
}

.container-main {
  width: 1200px;

  margin: auto;
}

.btn-main {
  background: rgb(22, 133, 64);

  background: linear-gradient(
    90deg,
    rgba(22, 133, 64, 1) 0%,
    rgba(79, 209, 34, 1) 100%
  );

  color: white;

  border: none;
}

.btn-main-outline {
  background: #fff;

  color: #168540;

  border: 1px solid #168540;
}

.newstv {
  height: 450px;

  background: #262626;

  border-radius: 5px;

  display: grid;

  grid-template-columns: 1fr 400px;
}

.newstv ul {
  overflow-y: scroll;

  height: 450px;
}

.card-custom::-webkit-scrollbar,
.newstv ul::-webkit-scrollbar {
  display: none;
}

.newstv ul li a {
  display: flex;

  gap: 10px;

  position: relative;
}

.newstv ul li a img {
  width: 130px;

  height: 70px;

  object-fit: cover;
}

.newstv ul li a h2 {
  font-size: 13px;

  font-weight: 400;
}

.newstv ul li {
  padding: 15px;

  cursor: pointer;
}

.newstv ul li:last-child {
  margin-bottom: 0;
}

.newstv ul li a {
  color: white;
}

.newstv ul li a i {
  position: absolute;

  font-size: 30px;

  left: 50%;

  top: 50%;

  transform: translate(-50%, -50%);
}

.newstv iframe {
  width: 100%;

  height: 450px;
}

.newstv ul li.active {
  background: #000;

  transition: 0.2s;
}

.berita {
  display: grid;

  gap: 30px;

  grid-template-columns: repeat(3, 1fr);

  list-style-type: none;
}

.berita img {
  width: 100%;

  height: 250px;

  object-fit: cover;
}

.berita h2 {
  font-size: 16px;

  font-weight: 700;

  color: white;
}

.berita span {
  font-size: 14px;
}

.berita li {
  position: relative;

  overflow: hidden;

  border-radius: 5px;
}

.berita li .text-berita {
  position: absolute;

  bottom: 0;

  left: 0;

  width: 100%;

  padding: 50px 20px 20px 20px;

  background: rgb(34, 124, 50);

  background: linear-gradient(
    0deg,
    rgba(34, 124, 50, 1) 5%,

    rgba(35, 128, 9, 0) 100%
  );

  color: white;
}

.img-scale {
  position: relative;

  overflow: hidden;

  height: 250px;

  margin-bottom: 10px;
}

.img-scale:hover img {
  transform: scale(1.3);

  transition: 1s;
}

footer {
  margin-top: 150px;
}

footer .menu li a {
  padding: 8px 0;

  display: block;

  font-weight: 600;

  color: #7c7c7c;
}

footer p {
  line-height: 26px;
}

footer .sosmed {
  display: flex;

  gap: 10px;

  list-style-type: none;
}

footer .sosmed i {
  width: 40px;

  height: 40px;

  background: #7c7c7c;

  display: inline-flex;

  align-items: center;

  justify-content: center;

  border-radius: 50%;

  color: white;

  font-size: 20px;
}

footer .sosmed i.fa-facebook {
  background: #3564d2;
}

footer .sosmed i.fa-instagram {
  background: #d235ab;
}

footer .sosmed i.fa-youtube {
  background: #d23545;
}

footer .sosmed i.fa-twitter {
  background: #35a8d2;
}

footer .sosmed i.fa-google {
  background: #d24535;
}

.bg-soft {
  background: #eef5ff;
}

.list-none {
  list-style-type: none;

  gap: 20px;
}

main p {
  line-height: 27px;
}

.tabmenu {
  border-top: 1px solid #ddd;

  border-bottom: 1px solid #ddd;
}

.tabmenu ul {
  display: flex;

  list-style-type: none;

  gap: 20px;
}

.tabmenu ul li {
  display: block;

  padding: 15px 0;

  color: #494949;

  font-weight: 700;

  cursor: pointer;

  position: relative;

  font-size: 16px;
}

.tabmenu ul li .notif {
  background: #168540;

  font-size: 11px;

  padding: 2px 10px 0 10px;

  display: inline-block;

  border-radius: 25px;

  color: white;
}

.tabmenu ul li:hover,
.tabmenu ul li.active {
  border-bottom: 4px solid #103920;
}

.container-fixed {
  width: 500px;

  margin: auto;

  background: #fff;

  padding-bottom: 50px;
}

.top-fix {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.09);

  padding: 15px 20px;

  background: #fff;

  font-weight: 700;
}

.program-fix {
  padding: 30px 20px;

  display: flex;

  gap: 20px;
}

.program-fix img {
  width: 160px;

  border-radius: 5px;

  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.program-fix h5 {
  font-size: 14px;

  font-weight: 600;
}

.nominal ul {
  display: flex;

  flex-wrap: wrap;

  list-style-type: none;

  justify-content: space-between;
}

.nominal ul li {
  width: 30%;

  margin-bottom: 11px;
}

.nominal ul li label {
  width: 100%;

  padding: 20px;

  border: 2px solid #eeeeee;

  text-align: center;

  border-radius: 10px;

  font-weight: 600;

  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);

  transition: 0.2s;

  position: relative;
}

.nominal ul li label i {
  color: #168540;

  font-size: 16px;

  position: absolute;

  right: 3px;

  top: 3px;

  display: none;
}

.nominal ul li input {
  display: none;
}

.nominal ul li input:checked + label {
  border: 2px solid #168540;
}

.nominal ul li input:checked + label i {
  display: block;
}

.buttons-group {
  list-style-type: none;

  overflow: hidden;

  width: 100%;

  border: 1px solid #ddd;

  justify-content: space-between;

  display: flex;

  border-radius: 5px;
}

.buttons-group li:last-child {
  border: none;
}

.buttons-group li {
  flex: 1;

  border-right: 1px solid #ddd;
}

.buttons-group li input {
  display: none;
}

.buttons-group li label {
  display: inline-block;

  padding: 10px 0;

  text-align: center;

  width: 100%;

  margin: 0;
}

.buttons-group li.active,
.buttons-group li input:checked + label,
.buttons-group li label:hover {
  background: #168540;

  color: white;
}

.form-input {
  position: relative;
}

.form-input span {
  position: absolute;

  left: 20px;

  top: 35%;

  font-weight: 700;

  font-size: 20px;

  transform: translateY(-50%);
}

.form-input textarea,
.form-input input {
  padding: 13px;

  border: 1px solid #ddd;

  width: 100%;

  border-radius: 4px;
}

.form-input-sm input,
.form-input-sm select {
  padding: 6px 13px;

  border: 1px dashed #818181;

  width: 100%;

  border-radius: 4px;
}

.form-input input:focus {
  border: 1px solid #168540;

  outline: none;
}

.form-input-sm input:focus {
  border: 1px dashed #168540;

  outline: none;
}

.form-input input::placeholder,
.form-input textarea::placeholder {
  font-weight: 500;

  color: #9e9e9e;
}

.form-input-sm input::placeholder,
.form-input-sm textarea::placeholder {
  font-weight: 400;

  color: #9e9e9e;

  font-size: 14px;
}

.switch input {
  display: none;
}

.switch label {
  border-radius: 50px;

  width: 60px;

  border: 1px solid #ddd;

  padding: 2px;

  background: #e2e2e2;
}

.switch label span {
  width: 25px;

  height: 25px;

  border-radius: 50%;

  display: block;

  background: #7c7c7c;

  position: relative;

  transition: 0.5s;
}

.switch input:checked + label span {
  margin-left: 30px;

  background: #168540;
}

.switch input:checked + label {
  background: #16854023;

  border: 1px solid #168540;
}

.btn-donasi {
  background: rgb(22, 133, 64);

  background: linear-gradient(
    90deg,
    rgba(22, 133, 64, 1) 0%,
    rgba(79, 209, 34, 1) 100%
  );

  padding: 15px;

  border-radius: 5px;

  border: none;

  text-align: center;

  color: white;

  font-weight: 600;

  font-size: 16px;

  position: fixed;

  bottom: 10px;

  left: 50%;

  transform: translateX(-50%);

  width: 450px;

  z-index: 9999;
}

.fa-bars {
  font-size: 16px;
}

.metode {
  background: #3564d220;

  border-radius: 5px;

  padding: 20px;

  align-items: center;

  justify-content: space-between;

  display: flex;

  margin: 10px 0 20px 0;
}

.metode button {
  border: 1px solid #3564d255;

  padding: 5px 15px;

  border-radius: 4px;

  font-size: 12px;
}

:popover-open {
  border-radius: 10px;

  position: fixed;

  left: 50%;

  top: 50%;

  border: none;

  transform: translate(-50%, -50%);

  transition: 0.5s;

  max-height: 90vh;
}

:popover-open::-webkit-scrollbar {
  display: none;
}

::backdrop {
  background: #00000088;
}

.pop-header {
  padding: 30px;

  background: #4b70f5;

  color: white;

  text-align: center;

  font-weight: 700;

  font-size: 24px;
}

.list-bank {
  list-style-type: none;
}

.list-bank li:first-child {
  background: #eef5ff;

  padding: 20px;

  font-weight: 600;

  border-bottom: 1px solid #ddd;

  border-top: 1px solid #ddd;
}

.list-bank li.bank input {
  display: none;
}

.list-bank li.bank label {
  padding: 14px 20px;

  display: flex;

  align-items: center;

  justify-content: space-between;

  border-bottom: 1px solid #ddd;

  position: relative;

  margin: 0;
}

.list-bank li.bank label i {
  position: absolute;

  right: 5px;

  top: 5px;

  color: #168540;

  display: none;
}

.list-bank li.bank input:checked + label {
  background: #16854035;
}

.list-bank li.bank input:checked + label i {
  display: block;
}

.list-bank li.bank label img {
  width: 50px;
}

.list-bank li.bank:last-child {
  border: none;
}

.list-bank li:hover {
  background: #e9e9e9;

  cursor: pointer;
}

.sliders img {
  width: 100px;

  height: 100px;

  object-fit: contain;

  animation: scroll 60s linear infinite;
}

.slide-track {
  width: 100%;

  display: flex;

  gap: 3em;

  overflow: hidden;
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translatex(-1000%);
  }
}

.nominal-lain {
  display: none;
}

.full-width {
  width: 100%;

  height: 100vh;

  position: relative;

  display: flex;

  align-items: center;

  justify-content: center;

  flex-direction: column;
}

.card-custom {
  height: 95vh;

  width: 500px;

  background: #fff;

  box-shadow: 0 3px 30px rgba(0, 0, 0, 0.05);

  border-radius: 10px;

  padding: 30px;

  overflow-y: scroll;

  font-family: "Segoe UI", sans-serif;
}

.instruksi-list {
  margin: 10px 30px 10px 30px;
}

.instruksi-list li {
  padding: 3px 10px;

  font-size: 12px;
}

.instruksi-list li:last-child {
  padding-bottom: 0;

  font-size: 12px;
}

.btn-fixed {
  position: fixed;

  right: 10px;

  bottom: 10px;
}

.btn-fixed i.fa-whatsapp {
  width: 50px;

  height: 50px;

  display: inline-flex;

  align-items: center;

  justify-content: center;

  border-radius: 50%;

  background: #168540;

  color: white;

  font-size: 28px;
}

.btn-fixed span {
  font-size: 11px;

  display: block;

  background: #fff;

  font-weight: 700;

  padding: 5px 10px;

  border-radius: 5px;

  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.09);

  position: absolute;

  left: -105px;

  top: 10px;
}

.qris {
  width: 60%;
}

.info {
  background: rgb(23, 223, 58);

  background: linear-gradient(
    0deg,
    rgba(23, 223, 58, 1) 5%,

    rgba(40, 152, 29, 1) 100%
  );

  padding: 50px 0;

  margin: 50px 0;
}

.info-list {
  display: flex;

  justify-content: space-between;

  color: white;
}

.info-list li {
  text-align: center;

  border-right: 1px solid #ffffff34;

  flex: 1;
}

.info-list li h1 {
  font-weight: 800;

  margin: 0;
}

.info-list li h2 {
  font-weight: 300;

  font-size: 20px;
}

.info-list li i {
  font-size: 40px;

  margin-bottom: 30px;
}

/* SKELETON CSS */

:root {
  --loader-background-color: #eeeeee;

  --loader-highlight-color: #dedede;
}

.cards {
  background-color: #fff;

  border-radius: 8px;

  padding: 20px;

  text-align: center;
}

.skeleton-loader {
  height: 20px;

  background: linear-gradient(
    90deg,
    var(--loader-background-color) 25%,

    var(--loader-highlight-color) 50%,

    var(--loader-background-color) 75%
  );

  background-size: 200% 100%;

  animation: loading 2s infinite ease-in-out;

  border-radius: 8px;

  margin-bottom: 20px;
}

.cover-image-skeleton {
  width: 100%;

  height: 200px;

  background: linear-gradient(
    90deg,
    var(--loader-background-color) 25%,

    var(--loader-highlight-color) 50%,

    var(--loader-background-color) 75%
  );

  background-size: 200% 100%;

  animation: loading 2s infinite ease-in-out;

  border-radius: 8px;

  margin-bottom: 20px;
}

.skeleton-loader-button {
  width: 100px;

  height: 40px;

  background: linear-gradient(
    90deg,
    var(--loader-background-color) 25%,

    var(--loader-highlight-color) 50%,

    var(--loader-background-color) 75%
  );

  background-size: 200% 100%;

  animation: loading 2s infinite ease-in-out;

  border-radius: 5px;
}

.list-donatur li {
  border-bottom: 1px dashed #ddd;

  padding: 15px 0;
}

.list-donatur li:first-child {
  padding-top: 0;
}

/* HTML: <div class="loader"></div> */

.loader {
  width: 50px;

  padding: 8px;

  aspect-ratio: 1;

  border-radius: 50%;

  background: #25b09b;

  --_m: conic-gradient(#0000 10%, #000), linear-gradient(#000 0 0) content-box;

  -webkit-mask: var(--_m);

  mask: var(--_m);

  -webkit-mask-composite: source-out;

  mask-composite: subtract;

  animation: l3 1s infinite linear;

  margin-bottom: 10px;
}

@keyframes l3 {
  to {
    transform: rotate(1turn);
  }
}

.loading {
  position: fixed;

  left: 0;

  top: 0;

  width: 100%;

  height: 100%;

  background: #000000c2;

  display: none;

  align-items: center;

  justify-content: center;

  z-index: 99999;
}

.loading > div {
  background: #fff;

  display: flex;

  align-items: center;

  justify-content: center;

  flex-direction: column;

  width: 200px;

  height: 150px;

  border-radius: 5px;
}

.notfound {
  width: 100%;

  height: 100vh;

  display: flex;

  align-items: center;

  justify-content: center;

  flex-direction: column;

  text-align: center;
}

@keyframes loading {
  0% {
    background-position: 200% 0;
  }

  100% {
    background-position: -200% 0;
  }
}

.login {
  background: #fff;

  background: url("../images/login_bg.jpg") no-repeat;

  background-position: center;

  background-size: cover;

  height: 100vh;

  width: 100%;

  display: flex;

  align-items: center;

  justify-content: center;
}

.bg-images {
  background: #fff;

  background: url("../images/login_bg.jpg") no-repeat;

  background-position: center;

  background-size: cover;

  height: 100vh;

  width: 100%;
}

.headline {
  font-size: 13px !important;

  line-height: 20px;

  -webkit-line-clamp: 2;

  display: -webkit-box;

  -webkit-box-orient: vertical;

  overflow: hidden;
}

.tags {
  display: flex;

  list-style-type: none;

  gap: 5px;

  margin-bottom: 10px;
}

.tags li a {
  display: block;

  font-size: 12px;

  padding: 3px 15px 2px 15px;

  border-radius: 3px;

  background: #16854129;

  color: #168541;

  font-weight: 500;

  border: 1px solid #16854197;

  transition: 0.5s;
}

.tags li a:hover {
  background: #168540;

  color: #fff;
}

.list-news img {
  width: 100%;
}

.list-news li {
  border-bottom: 1px dashed #ddd;

  margin-bottom: 15px;

  padding-bottom: 15px;

  font-size: 16px;
}

.list-news li img {
  margin: 15px 0;
}

.filter {
  display: flex;

  list-style-type: none;

  gap: 10px;
}

.filter li {
  border-radius: 25px;

  padding: 5px 20px;

  border: 1px solid #636363;

  font-weight: 600;

  color: #636363;

  position: relative;
}

.filter-body {
  position: absolute;

  left: 0;

  background: #fff;

  z-index: 999;

  overflow: hidden;

  border-bottom-left-radius: 10px;

  border-bottom-right-radius: 10px;

  top: 40px;

  display: none;
}

.filter-content {
  list-style-type: none;

  max-height: 200px;

  overflow-y: scroll;
}

.filter-content li {
  border: none;

  padding: 0;

  display: grid;

  align-items: center;

  grid-template-columns: 40px 1fr;

  width: 280px;

  margin: 0;
}

.filter-content li label {
  padding: 5px;

  margin: 0;
}

.filter li:hover .filter-body {
  display: block;
}

.card-custom h6 {
  font-size: 16px;

  font-weight: 700;
}

.card-custom .img-bank {
  width: 100px;
}

.story{
	margin: 20px 0;
  overflow: hidden;
}
.story ul{
	display: flex;
	gap: 20px;
	list-style-type: none;
}
.story ul li img{
	width: 100px;
	height: 100px;
	object-fit: cover;
	background: linear-gradient(white, white) padding-box,
	linear-gradient(to right, rgb(0, 139, 23), rgb(204, 155, 50)) border-box;
	border-radius: 50em;
	border:5px solid transparent;
}
.story-modal{
	position: fixed;
	left: 0;
	top: 0;
	height: 100vh;
	width: 100%;
	background: #000000a1;
	opacity: 0;
	visibility: hidden;
	transform: scale(1.1);
	z-index: 999;
	transition: visibility 0s linear 0.25s, opacity 0.25s 0s, transform 0.25s;
	display: flex;
	align-items: center;
	justify-content: center;
}
.story-modal.show {
	opacity: 1;
	visibility: visible;
	transform: scale(1);
	transition: visibility 0s linear 0s, opacity 0.25s 0s, transform 0.25s;
}
.story-modal img{
	height: 95vh;
}
.story-modal .fa-times{
	position: absolute;
	right: 10px;
	top: 10px;
	font-size: 30px;
	color: white;
}
@media only screen and (max-width: 768px) {
 
  .story-modal img{
		width: 100%;
		height: auto;
	}
	.story ul{
		gap: 10px;
	}
	.story ul li img{
		width: 60px;
		height: 60px;
		border:4px solid transparent;
	}
  .card-custom h6 {
    font-size: 18px !important;
  }

  .card-custom .card p {
    font-size: 12px !important;
  }

  .filter {
    flex-direction: column;
  }

  .headline {
    display: none;
  }

  .list-news li img {
    aspect-ratio: 16/9;
  }

  .notfound img {
    width: 100%;
  }

  .notfound h2 {
    font-size: 16px;
  }

  .tabmenu ul li {
    font-size: 12px;
  }

  .info-list li h1 {
    font-size: 28px;
  }

  .info-list li h2 {
    font-size: 16px;
  }

  .info-list li i {
    font-size: 40px;

    margin-bottom: 30px;
  }

  .info-list {
    flex-direction: column;
  }

  .info-list li {
    border-right: none;
  }

  .card-custom img.qris {
    width: 60% !important;
  }

  .top-header {
    position: relative;
  }

  .big {
    font-size: 18px;
  }

  .card-custom {
    width: 95%;
  }

  .card-custom i.fa-badge-dollar {
    width: 50px !important;
  }

  .card-custom img.lazis {
    width: 150px !important;
  }

  .card-custom .img-bank {
    width: 60px;
  }

  .card-custom h6 {
    font-size: 16px !important;

    font-weight: 600;
  }

  .card-custom h6.text-mobile {
    font-size: 14px !important;

    font-weight: 600;
  }

  .card-custom small {
    font-size: 12px;
  }

  :popover-open {
    width: 80% !important;
  }

  .btn-donasi {
    width: 90%;
  }

  body {
    overflow-x: hidden;
  }

  .container-main {
    width: 90%;
  }

  .newstv,
  .program {
    grid-template-columns: 1fr;
  }

  .newstv > div:first-child,
  .newstv iframe {
    height: 250px;
  }

  .newstv {
    height: 650px;

    overflow-x: scroll;
  }

  .newstv::-webkit-scrollbar {
    display: none;
  }

  .program {
    gap: 0;
  }

  .program li,
  .cards {
    display: grid;

    grid-template-columns: 150px 1fr;

    box-shadow: none !important;

    gap: 10px;

    margin-bottom: 20px;
  }

  .program li.skelekton {
    display: block !important;
  }

  .program li h5,
  .program li h2 {
    font-size: 14px;

    text-transform: capitalize;
  }

  .program li span {
    font-size: 11px;
  }

  .program li .mb-4 {
    margin-bottom: 0 !important;
  }

  .program .progress {
    margin-top: 0 !important;
  }

  .program li img {
    width: 150px;

    height: 110px;

    border-radius: 5px;
  }

  .program-body {
    padding: 0;
  }

  .berita {
    grid-template-columns: 1fr 1fr;

    gap: 5px;
  }

  .berita li {
    margin-bottom: 20px;
  }

  .berita li .text-berita {
    position: relative;

    background: #fff;

    color: #444;

    padding: 0;
  }

  .img-scale,
  .berita img {
    height: 100px;
  }

  .berita h2 {
    -webkit-line-clamp: 2;

    display: -webkit-box;

    -webkit-box-orient: vertical;

    overflow: hidden;

    line-height: 1.3em;
  }

  .berita span {
    font-size: 11px;
  }

  nav {
    position: fixed;

    background: #fff !important;

    left: -100%;

    height: 100vh;

    top: 0;

    transition: 0.5s;

    width: 80%;

    z-index: 9999999;
  }

  nav ul {
    display: block;

    background: #fff !important;
  }

  nav ul li a {
    padding: 10px 20px;

    display: block;
  }

  nav.show {
    left: 0;
  }

  header.page-header,
  header .slider img {
    aspect-ratio: 12/9;
  }

  header.page-header {
    margin-bottom: 10px;
  }

  h2 {
    font-size: 20px;
  }

  h6 {
    font-size: 13px;
  }

  .card-custom h6 {
    font-size: 13px;
  }

  .logo img {
    width: 100px;
  }

  footer .logo img {
    width: 50%;
  }

  footer ul {
    margin-left: 15px;
  }

  .container-fixed {
    width: 100%;
  }

  .program-fix img {
    width: 100px;

    object-fit: cover;
  }

  .nominal ul li {
    width: 32%;
  }

  .nominal ul li label {
    padding: 20px 10px;

    font-size: 16px;
  }

  .buttons-group {
    font-size: 14px;
  }

  small {
    font-size: 10px;
  }

  .text-mobile {
    text-transform: uppercase;

    font-weight: bold;

    font-size: 40px;

    text-align: left;
  }

  .cover-image-skeleton {
    width: 100%;

    height: 120px;

    margin: 0;
  }

  .skeleton-loader {
    height: 10px;

    margin-bottom: 10px;

    border-radius: 5px;
  }

  .skeleton-loader-button {
    width: 80px;

    height: 30px;

    background: linear-gradient(
      90deg,
      var(--loader-background-color) 25%,

      var(--loader-highlight-color) 50%,

      var(--loader-background-color) 75%
    );

    background-size: 200% 100%;

    animation: loading 2s infinite ease-in-out;

    border-radius: 5px;

    margin: 0;
  }

  .cards {
    padding: 0;
  }

  .search input {
    width: 80%;

    border: 1px solid #ccc;

    border-radius: 3px;

    padding: 5px 10px;
  }

  .search input::placeholder {
    font-size: 12px;
  }

  .top-main {
    padding: 10px 0;
  }

  .fixed-mobile {
    position: fixed;

    bottom: 10px;

    left: 50%;

    transform: translateX(-50%);

    width: 90% !important;

    z-index: 999;
  }

  /* .deskripsi {

		height: 500px;

		overflow: hidden;

	} */

  .deskripsi.show {
    height: auto;

    overflow: visible;
  }

  .list-donatur li p {
    line-height: 18px;

    margin-top: 20px;
  }

  .list-donatur li p small {
    font-size: 14px;
  }

  .list-donatur li h5 {
    font-size: 14px;
  }

  .list-bank li.bank label {
    font-size: 14px;
  }
}

.copy {
  border: none;

  background: none;
}

.info-sm {
  font-size: 12px;

  line-height: 18px;
}

.deskripsi ul,
.deskripsi ol {
  margin-left: 30px;
}

.closed {
  position: fixed;

  right: 10px;

  top: 10px;

  font-size: 30px;

  display: none !important;

  color: red;
}

.closed.show {
  display: block !important;
}

.input-number {
  display: grid;

  grid-template-columns: 50px 1fr;

  overflow: hidden;

  border-radius: 4px;

  border: 1px solid #ccc;
}

.input-number input {
  padding: 15px;

  border: none;

  background: #ebebeb;

  text-align: right;

  font-weight: bold;

  font-size: 20px;
}

.input-number input:focus {
  outline: none;
}

.input-number span {
  display: flex;

  align-items: center;

  justify-content: center;

  border-right: 1px solid #ddd;

  font-weight: bold;

  font-size: 20px;
}

/* CSS */

.metode-bayar button#metode {
  background-color: initial;

  background-image: linear-gradient(-180deg, #00d775, #00bd68);

  border-radius: 5px;

  box-shadow: rgba(0, 0, 0, 0.1) 0 2px 4px;

  color: #ffffff;

  cursor: pointer;

  display: inline-block;

  font-family: Inter, -apple-system, system-ui, Roboto, "Helvetica Neue", Arial,
    sans-serif;

  height: 48px;

  line-height: 48px;

  outline: 0;

  overflow: hidden;

  padding: 0 20px;

  pointer-events: auto;

  position: relative;

  text-align: center;

  touch-action: manipulation;

  user-select: none;

  -webkit-user-select: none;

  vertical-align: top;

  white-space: nowrap;

  width: 100%;

  z-index: 9;

  border: 0;
}

.metode-bayar button#metode:hover {
  background: #00bd68;
}
.deskripsi-news img {
  height: auto !important;
  object-fit: cover;
}
