* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --text-primary: #444447;
    --text-secondary: #62636C;
    --text-navbar: #8B8D98;

    --primary: #56B158;
    --secondary-light: #E9FDFF;

    --white: #FFFFFF;
    --bg-view: #F7F7F7;
    --borders: #E2E2E9;
    --btn-nav-menu: #B9BBC6;
    --btn-outline: #444447;
}

.text-primary {
    color: var(--text-primary);
}

.text-secondary {
    color: var(--text-secondary);
}

.text-navbar {
    color: var(--text-navbar);
}

.primary {
    color: var(--primary);
}

.secondary-light {
    color: var(--secondary-light);
}

.white {
    color: var(--white);
}

.bg-view {
    color: var(--bg-view);
}

.borders {
    color: var(--borders);
}

.btn-nav-menu {
    color: var(--btn-nav-menu);
}

.btn-outline {
    color: var(--btn-outline);
}


/* FONT RUBIK */
@font-face {
    font-family: 'Rubik';
    src: url('../../../font/rubik/Rubik-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Rubik';
    src: url('../../../font/rubik/Rubik-Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: 'Rubik';
    src: url('../../../font/rubik/Rubik-Bold.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
}

body {
    font-family: "Rubik", sans-serif;
    background-color: var(--bg-view);
}


/* BEGIN:: WRAPPER */
.wrapper {
    display: flex;
    flex-direction: column;
    max-width: 420px;
    width: 100%;
    height: auto;
    margin: 0 auto;
    background-color: var(--white);
}

/* END:: WRAPPER */


/* BEGIN:: BADGE-BUKTI-QRIS */
.wrapper .badge-qris {
    position: fixed;
    right: calc((100vw - 420px) / 2);
    bottom: 70px;
    cursor: pointer;
    z-index: 999;
}

.wrapper .badge-qris .bukti-qris-badge {
    width: 80px;
    height: auto;
    transition: transform 0.3s ease;
}

/* END:: BADGE-BUKTI-QRIS */


/* BEGIN:: SECTION-CONTAINER */
.section-container {
    position: relative;
    width: 100%;
    height: 315px;
}

.section-container .banner-utama-slider {
    width: 100%;
    height: auto;
}

.section-container .banner-utama-slider img {
    width: 100%;
    height: 315px;
    object-fit: cover;
    border-bottom-left-radius: 32px;
    border-bottom-right-radius: 32px;
    display: block;
}

.section-container .banner-utama-slider .slick-dots li {
    bottom: 64px;
    height: 10px !important;
    width: 10px !important;
    background-color: var(--btn-nav-menu);
    border-radius: 50%;
    margin: 0 4px !important;
}

.section-container .banner-utama-slider .slick-dots button {
    display: block;
    height: 10px !important;
    width: 10px !important;
    border-radius: 50%;
    border: none;
    text-indent: -9999px;
}

.section-container .banner-utama-slider .slick-dots li.slick-active button {
    background-color: var(--text-secondary);
}

.section-container .top-header {
    position: absolute;
    top: 0;
    width: 100%;
    max-width: 420px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 16px;
    padding-left: 16px;
    padding-right: 16px;
}

.logo-berkah-wakaf {
    height: 30px;
    width: auto;
}

.section-container .top-header .search-box {
    display: flex;
    align-items: center;
    background-color: var(--white);
    width: 58%;
    border-radius: 100px;
    padding: 8px 24px 8px 12px;
    box-shadow: 0.5px 0.5px 5px rgba(54, 59, 64, 0.1);
}

.section-container .top-header .search-box .search-icon {
    width: 14px;
    height: 14px;
    margin-right: 8px;
    color: var(--primary);
}

.section-container .top-header .search-box .search-input {
    border: none;
    outline: none;
    font-family: "Rubik", sans-serif;
    font-weight: 400;
    line-height: 1.5;
    color: var(--text-primary);
    font-size: 12px;
    flex: 1;
}

.section-container .top-header .search-box .search-input::placeholder {
    color: var(--text-navbar);
}

/* END:: SECTION-CONTAINER */


/* BEGIN:: SECTION-ICON-MENU */
.icon-section {
    position: relative;
    width: calc(100% - 32px);
    background-color: var(--white);
    border-radius: 12px;
    box-shadow: 2px 2px 10px rgba(54, 59, 64, 0.1);
    padding: 16px 8px;
    margin: -24px auto 0 auto;
}

.icon-section .icon-menu-utama {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: auto;
    text-align: center;
}

.icon-section .icon-menu-utama .icon-menu-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
}

.icon-section .icon-menu-utama .icon-menu-item img {
    width: 40px;
    height: 40px;
    margin-bottom: 8px;
}

.icon-section .icon-menu-utama .icon-menu-item p {
    font-size: 13px;
    color: var(--text-primary);
    margin: 0;
    line-height: 1.5;
}

/* .icon-section .icon-menu-sekunder {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: auto;
    text-align: center;
    margin-top: 16px;
} */

.icon-section .icon-menu-sekunder .icon-menu-small {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
}

.icon-section .icon-menu-sekunder .icon-menu-small img {
    width: auto;
    height: 40px;
    margin-bottom: 2px;
}

.icon-section .icon-menu-sekunder .icon-menu-small p {
    font-size: 12px;
    color: var(--text-primary);
    line-height: 1.5;
    margin: 0;
}

/* END:: SECTION-ICON-MENU */


/* BEGIN:: SECTION-BUTUH-PERTOLONGAN */
.section-pertolongan {
    width: 100%;
    height: auto;
    margin-top: 32px;
}

.section-pertolongan h3 {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0;
    padding-left: 16px;
}

.section-pertolongan .slider-container-pertolongan {
    position: relative;
    padding-left: 16px;
}

.section-pertolongan .slider-arrow-pertolongan {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 32px;
    height: 32px;
    border: none;
    background-color: #fff;
    border-radius: 50%;
    box-shadow: 0px 2px 8px rgba(98, 99, 108, 0.25);
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
}

.section-pertolongan .slider-arrow-left-pertolongan {
    left: 8px;
}

.section-pertolongan .slider-arrow-right-pertolongan {
    right: 8px;
}

.section-pertolongan .slider-arrow-pertolongan svg {
    width: auto;
    height: 12px;
    color: var(--text-secondary);
}

.section-pertolongan .wrap-pertolongan {
    display: flex;
    width: 100%;
    height: auto;
}

.section-pertolongan .wrap-pertolongan a {
    text-decoration: none;
}

.section-pertolongan .slick-slide {
    margin-right: 12px;
}

.section-pertolongan .program-pertolongan {
    position: relative;
    width: 100%;
    margin: 12px 0;
    cursor: pointer;
    border-radius: 8px;
    box-shadow: 1px 1px 8px rgba(54, 59, 64, 0.1);
}

.section-pertolongan .program-pertolongan img {
    width: 100%;
    max-width: 200px;
    height: 107px;
    margin: 0;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
    display: block;
}

.section-pertolongan .program-pertolongan .day-limit {
    position: absolute;
    top: 0;
    left: 0;
    font-size: 10px;
    font-weight: 500;
    padding: 4px 8px;
    border-top-left-radius: 8px;
    border-bottom-right-radius: 8px;
    background-color: var(--secondary-light);
}

.section-pertolongan .program-pertolongan .narasi {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 12px 8px;
}

.section-pertolongan .program-pertolongan .narasi .deskripsi-program .pertolongan-organization {
    display: flex;
    align-items: center;
    gap: 4px;
    margin-bottom: 8px;
}

.section-pertolongan .program-pertolongan .program-logo {
    width: auto;
    height: 9px;
    object-fit: cover;
}

.section-pertolongan .program-pertolongan .program-name {
    color: var(--text-secondary);
    font-size: 10px;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.section-pertolongan .program-pertolongan .pertolongan-title {
    color: var(--text-primary);
    min-height: 34px;
    font-weight: 600;
    font-size: 12px;
    line-height: 17px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.section-pertolongan .program-pertolongan .deskripsi-dana .dana-terkumpul {
    display: flex;
    align-items: center;
    gap: 8px;
}

.section-pertolongan .program-pertolongan .dana-terkumpul p {
    color: var(--text-primary);
    font-size: 10px;
    margin: 0;
}

.section-pertolongan .program-pertolongan .dana-terkumpul .pertolongan-collected {
    color: var(--primary);
    font-weight: 600;
    font-size: 12px;
    margin: 0;
}

.section-pertolongan .program-pertolongan .indikator {
    width: 100%;
    height: 5px;
    background-color: var(--borders);
    border-radius: 8px;
    margin-top: 8px;
    overflow: hidden;
}

.section-pertolongan .program-pertolongan .indikator .fill {
    height: 100%;
    background-color: var(--primary);
    border-radius: 8px;
}

/* END:: SECTION-BUTUH-PERTOLONGAN */


/* BEGIN:: SECTION-PROGRAM-PILIHAN */
.section-program-pilihan {
    width: 100%;
    height: auto;
    padding-left: 16px;
    padding-right: 16px;
    margin-top: 24px;
}

.section-program-pilihan h3 {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0;
}

.section-program-pilihan .program-banner-slider {
    position: relative;
    width: 100%;
    height: 100%;
    margin-top: 12px;
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
}

.section-program-pilihan .program-banner-slider img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
    display: block;
}

.section-program-pilihan .program-banner-slider .slick-dots {
    position: absolute;
    bottom: 12px;
    width: 100%;
    display: flex !important;
    justify-content: center;
    padding: 0;
    margin: 0;
    list-style: none;
}

.section-program-pilihan .program-banner-slider .slick-dots li {
    height: 10px !important;
    width: 10px !important;
    background-color: var(--btn-nav-menu);
    border-radius: 50%;
    margin: 0 4px !important;
}

.section-program-pilihan .program-banner-slider .slick-dots button {
    display: block;
    height: 10px !important;
    width: 10px !important;
    border-radius: 50%;
    border: none;
    text-indent: -9999px;
    background: transparent;
    cursor: pointer;
}

.section-program-pilihan .program-banner-slider .slick-dots li.slick-active button {
    background-color: var(--text-secondary);
}

/* END:: SECTION-PROGRAM-PILIHAN */


/* BEGIN:: SECTION-DONASI-SESUAI-LEMBAGA */
.section-donasi-lembaga {
    width: 100%;
    height: auto;
    padding-left: 16px;
    padding-right: 16px;
    margin-top: 24px;
}

.section-donasi-lembaga h3 {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0;
}

.section-donasi-lembaga .logo-lembaga-slider {
    position: relative;
    width: 100%;
    height: auto;
    border: 1px solid var(--borders);
    border-radius: 12px;
    margin-top: 12px;
    padding-top: 12px;
    padding-right: 12px;
    padding-bottom: 32px !important;
    margin-bottom: 0 !important;
    background-color: var(--white);
}

.section-donasi-lembaga .logo-lembaga-slider .lembaga-link {
    display: flex;
    justify-content: center;
}

.section-donasi-lembaga .logo-lembaga-slider .logo-container {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--white);
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.section-donasi-lembaga .logo-lembaga-slider .logo-container img {
    width: 40px;
    height: 40px;
    object-fit: contain;
    display: block;
}

.section-donasi-lembaga .logo-lembaga-slider .lembaga-link-lainnya {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
}

.section-donasi-lembaga .logo-lembaga-slider .logo-container-lainnya {
    width: 50px;
    height: 50px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.section-donasi-lembaga .logo-lembaga-slider .logo-container-lainnya img {
    width: auto;
    height: 32px;
}

.section-donasi-lembaga .logo-lembaga-slider .lihat-lembaga-text {
    margin-top: 4px;
    font-size: 12px;
    color: var(--text-primary);
    text-align: center;
}

.section-donasi-lembaga .logo-lembaga-slider .slick-slide {
    display: flex !important;
    justify-content: center;
    padding-left: 12px;
}

.section-donasi-lembaga .logo-lembaga-slider .slick-dots {
    position: absolute;
    bottom: 12px;
    display: flex !important;
    justify-content: center;
    width: 100%;
    padding: 0;
    margin: 0;
    list-style: none;
}

.section-donasi-lembaga .logo-lembaga-slider .slick-dots li {
    height: 10px !important;
    width: 10px !important;
    background-color: var(--borders);
    border-radius: 50%;
    margin: 0 4px !important;
}

.section-donasi-lembaga .logo-lembaga-slider .slick-dots button {
    display: block;
    height: 10px !important;
    width: 10px !important;
    border-radius: 50%;
    border: none;
    text-indent: -9999px;
    background: transparent;
    cursor: pointer;
}

.section-donasi-lembaga .logo-lembaga-slider .slick-dots li.slick-active button {
    background-color: var(--primary);
}

/* END:: SECTION-DONASI-SESUAI-LEMBAGA */


/* BEGIN:: SECTION-DONASI-SESUAI-LOKASI */
.section-donasi-lokasi {
    width: 100%;
    height: auto;
    padding-left: 16px;
    padding-right: 16px;
    margin-top: 24px;
}

.section-donasi-lokasi h3 {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0;
}

.section-donasi-lokasi .logo-lokasi-slider {
    position: relative;
    width: 100%;
    height: auto;
    border: 1px solid var(--borders);
    border-radius: 12px;
    margin-top: 12px;
    padding-top: 12px;
    padding-right: 12px;
    padding-bottom: 32px !important;
    margin-bottom: 0 !important;
    background-color: var(--white);
}

.section-donasi-lokasi .lokasi-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.section-donasi-lokasi .lokasi-link {
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.section-donasi-lokasi .lokasi-img {
    display: block;
    width: auto;
    height: 24px;
    margin: 0 auto;
}

.section-donasi-lokasi .lokasi-label {
    width: 65px;
    font-size: 12px;
    margin-top: 8px;
    color: var(--text-primary);
}

.section-donasi-lokasi .logo-lokasi-slider .slick-slide {
    display: flex !important;
    justify-content: center;
    padding-left: 12px;
}

.section-donasi-lokasi .slick-dots li {
    bottom: 36px;
    height: 10px !important;
    width: 10px !important;
    background-color: var(--borders);
    border-radius: 50%;
    margin: 0 4px !important;
}

.section-donasi-lokasi .slick-dots button {
    display: block;
    height: 10px !important;
    width: 10px !important;
    border-radius: 50%;
    border: none;
    text-indent: -9999px;
}

.section-donasi-lokasi .slick-dots li.slick-active button {
    background-color: var(--primary);
}

/* END:: SECTION-DONASI-SESUAI-LOKASI */


/* BEGIN:: SECTION-PROGRAM-UTAMA */
.section-program-utama {
    width: 100%;
    margin-top: 32px;
}

.section-program-utama h3 {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0;
    padding-left: 16px;
}

.section-program-utama .slider-container {
    position: relative;
    padding-left: 16px;
}

.section-program-utama .slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 32px;
    height: 32px;
    border: none;
    background-color: var(--white);
    border-radius: 50%;
    box-shadow: 0px 2px 8px rgba(98, 99, 108, 0.25);
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
}

.section-program-utama .slider-arrow-left {
    left: 8px;
}

.section-program-utama .slider-arrow-right {
    right: 8px;
}

.section-program-utama .slider-arrow svg {
    height: 12px;
    color: var(--text-secondary);
}

.section-program-utama .wrap-content-utama {
    display: flex;
    width: 100%;
    height: auto;
}

.section-program-utama .wrap-content-utama a {
    text-decoration: none;
}

.section-program-utama .slick-slide {
    margin-right: 12px;
}

.program-item {
    position: relative;
    width: 100%;
    max-width: 190px;
    height: auto;
    margin: 12px 0;
    cursor: pointer;
    border-radius: 8px;
    box-shadow: 1px 1px 8px rgba(54, 59, 64, 0.1);
    flex-shrink: 0;
    box-sizing: border-box;
}

.section-program-utama .program-item .program-image {
    width: 100%;
    max-width: 200px;
    height: 107px;
    margin: 0;
    border-radius: 8px 8px 0 0;
    display: block;
    object-fit: cover;
}

.section-program-utama .program-item .narasi {
    display: flex;
    flex-direction: column;
    margin: 0;
    gap: 12px;
    padding: 12px 8px;
}

.section-program-utama .program-item .narasi .deskripsi-program .program-organization {
    display: flex;
    align-items: center;
    gap: 4px;
    margin-bottom: 8px;
}

.section-program-utama .program-item .narasi .deskripsi-program .program-organization .program-logo {
    width: auto;
    height: 9px;
    object-fit: cover;
}

.section-program-utama .program-item .narasi .deskripsi-program .program-organization .program-name {
    color: var(--text-secondary);
    font-size: 10px;

    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.section-program-utama .program-item .narasi .deskripsi-program .program-title {
    min-height: 34px;
    color: var(--text-primary);
    font-weight: 600;
    font-size: 12px;
    line-height: 17px;

    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.section-program-utama .program-item .narasi .deskripsi-dana .dana-terkumpul {
    display: flex;
    align-items: center;
    gap: 8px;
}

.section-program-utama .program-item .narasi .deskripsi-dana .dana-terkumpul p {
    color: var(--text-primary);
    width: auto;
    font-size: 10px;
    margin: 0;
}

.section-program-utama .program-item .narasi .deskripsi-dana .dana-terkumpul h4 {
    color: var(--primary);
    width: auto;
    font-weight: 600;
    font-size: 12px;
    margin: 0;
}

.section-program-utama .program-item .narasi .deskripsi-dana .indikator {
    width: 100%;
    height: 5px;
    background-color: var(--borders);
    border-radius: 8px;
    margin-top: 8px;
    overflow: hidden;
}

.section-program-utama .program-item .narasi .deskripsi-dana .indikator .fill {
    height: 100%;
    background-color: var(--primary);
    border-radius: 8px;
}

/* Elemen "Lihat Program Lainnya"
    yang terletak di 3 Section, yakni :
    (.program-item, .program-pertolongan, .program-laporan) */
.lihat-program-lainnya {
    display: flex;
    width: 190px;
    max-width: 190px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: var(--white);
    border-radius: 8px;
    flex-shrink: 0;
    box-sizing: border-box;
// tinggi konten di file script.js setEqualHeight()
}

.lihat-program-lainnya svg {
    width: auto;
    height: 24px;
    margin-bottom: 12px;
    color: var(--primary);
}

.lihat-program-lainnya .lihat-program-text {
    color: var(--primary);
    font-size: 13px;
    text-align: center;
    line-height: 1.5;
}

/* END:: SECTION-PROGRAM-UTAMA */


/* BEGIN:: SECTION-BERGABUNG-BERSAMA */
.section-bergabung-bersama {
    width: 100%;
    margin-top: 24px;
}

.section-bergabung-bersama h3 {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0;
    padding-left: 16px;
}

.section-bergabung-bersama .slider-container-bergabung {
    position: relative;
    padding-left: 16px;
}

.section-bergabung-bersama .slider-arrow-bersama {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 32px;
    height: 32px;
    border: none;
    background-color: var(--white);
    border-radius: 50%;
    box-shadow: 0px 2px 8px rgba(98, 99, 108, 0.25);
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
}

.section-bergabung-bersama .slider-arrow-left-bergabung-bersama {
    left: 8px;
}

.section-bergabung-bersama .slider-arrow-right-bergabung-bersama {
    right: 8px;
}

.section-bergabung-bersama .slider-arrow-bersama svg {
    height: 12px;
    color: var(--text-secondary);
}

.section-bergabung-bersama .wrap-bergabung-bersama {
    display: flex;
    width: 100%;
    height: auto;
}

.section-bergabung-bersama .wrap-bergabung-bersama a {
    text-decoration: none;
}

.section-bergabung-bersama .slick-slide {
    margin-right: 12px;
}

.section-bergabung-bersama .program-item .program-image {
    width: 100%;
    max-width: 200px;
    height: 107px;
    margin: 0;
    border-radius: 8px 8px 0 0;
    display: block;
    object-fit: cover;
}

.section-bergabung-bersama .program-item .narasi {
    display: flex;
    flex-direction: column;
    margin: 0;
    gap: 12px;
    padding: 12px 8px;
}

.section-bergabung-bersama .program-item .narasi .deskripsi-program {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.section-bergabung-bersama .program-item .narasi .deskripsi-program .program-name {
    color: var(--text-secondary);
    font-size: 10px;
    font-weight: 500;

    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.section-bergabung-bersama .program-item .narasi .deskripsi-program .program-title {
    min-height: 34px;
    color: var(--text-primary);
    font-weight: 600;
    font-size: 12px;
    line-height: 17px;

    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.section-bergabung-bersama .program-item .narasi .btn-lihat-detail {
    display: flex;
    align-items: center;
    gap: 12px;
}

.section-bergabung-bersama .program-item .narasi .btn-lihat-detail .label {
    color: var(--primary);
    width: auto;
    font-size: 12px;
    font-weight: 500;
    margin: 0;
}

.section-bergabung-bersama .program-item .narasi .btn-lihat-detail .ic-lihat-detail {
    color: var(--primary);
    height: 16px;
    width: auto;
    font-weight: 600;
}

/* END:: SECTION-BERGABUNG-BERSAMA */


/* BEGIN:: SECTION-KATEGORI-POPULER */
.section-kategori-populer {
    width: 100%;
    height: auto;
    margin-top: 24px;
    margin-bottom: 8px;
}

.section-kategori-populer h3 {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0;
    padding-left: 16px;
}

.section-kategori-populer .slider-container-populer {
    position: relative;
    padding-left: 16px;
    padding-right: 16px;
}

.section-kategori-populer .slider-arrow-populer {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 32px;
    height: 32px;
    border: none;
    background-color: #fff;
    border-radius: 50%;
    box-shadow: 0px 2px 8px rgba(98, 99, 108, 0.25);
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
}

.section-kategori-populer .slider-arrow-left-kategori-populer {
    left: 8px;
}

.section-kategori-populer .slider-arrow-right-kategori-populer {
    right: 8px;
}

.section-kategori-populer .slider-arrow-populer svg {
    width: auto;
    height: 12px;
    color: var(--text-secondary);
}

.section-kategori-populer .wrap-kategori-populer {
    display: flex;
    width: 100%;
    height: auto;
}

.section-kategori-populer .slick-slide {
    margin-right: 12px;
}

.section-kategori-populer .program-populer {
    position: relative;
    width: 100%;
    margin-top: 12px;
    height: auto;
    cursor: pointer;
    border-radius: 8px;
}

.section-kategori-populer .program-populer img {
    width: 100%;
    height: auto;
    margin: 0;
    border-radius: 8px;
    display: block;
}

/* END:: SECTION-KATEGORI-POPULER */


/* BEGIN:: SECTION-SEDEKAH-SUBUH */
.section-program-subuh {
    width: 100%;
    height: auto;
    padding-left: 16px;
    padding-right: 16px;
    margin-top: 24px;
}

.section-program-subuh h3 {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0;
}

.section-program-subuh .banner-subuh-slider {
    position: relative;
    width: 100%;
    height: 100%;
    margin-top: 12px;
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
}

.section-program-subuh .banner-subuh-slider img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
    display: block;
}

/* END:: SECTION-SEDEKAH-SUBUH */


/* BEGIN:: SECTION-PROGRAM-LAINNYA */
.section-program-lainnya {
    width: 100%;
    height: auto;
    margin-top: 32px;
    padding: 16px;
    background-color: var(--secondary-light);
}

.section-program-lainnya h3 {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-primary);
}

.section-program-lainnya .program-link-lainnya {
    text-decoration: none;
}

.section-program-lainnya .program-lainnya-item {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
    height: auto;
    gap: 12px;
    padding: 16px 0;
    border-bottom: 0.5px solid var(--borders);
}

.section-program-lainnya .program-lainnya-item .program-image {
    width: 184px !important;
    height: 107px !important;
    margin: 0;
    border-radius: 8px;
    display: block;
    object-fit: cover;
}

.section-program-lainnya .program-lainnya-item .narasi {
    display: flex;
    width: 192px !important;
    flex-direction: column;
    margin: 0;
    padding: 0px;
    gap: 8px;
}

.section-program-lainnya .program-lainnya-item .narasi .deskripsi-program .program-title {
    color: var(--text-primary);
    font-weight: 600;
    font-size: 12px;
    line-height: 18px;

    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.section-program-lainnya .program-lainnya-item .narasi .deskripsi-program .program-organization {
    display: flex;
    align-items: center;
    gap: 4px;
    margin: 8px 0;
}

.section-program-lainnya .program-lainnya-item .narasi .deskripsi-program .program-organization .program-logo {
    width: auto;
    height: 9px;
    object-fit: cover;
}

.section-program-lainnya .program-lainnya-item .narasi .deskripsi-program .program-organization .program-name {
    color: var(--text-secondary);
    font-size: 10px;

    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.section-program-lainnya .program-lainnya-item .narasi .deskripsi-program .indikator {
    width: 100%;
    height: 5px;
    background-color: var(--borders);
    border-radius: 8px;
    overflow: hidden;
}

.section-program-lainnya .program-lainnya-item .narasi .deskripsi-program .indikator .fill {
    height: 100%;
    background-color: var(--primary);
    border-radius: 8px;
}

.section-program-lainnya .program-lainnya-item .narasi .deskripsi-dana .dana-terkumpul {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
}

.section-program-lainnya .program-lainnya-item .narasi .deskripsi-dana .dana-terkumpul p {
    color: var(--text-primary);
    width: auto;
    font-size: 10px;
    margin: 0;
}

.section-program-lainnya .program-lainnya-item .narasi .deskripsi-dana .dana-terkumpul h4 {
    color: var(--text-primary);
    width: auto;
    font-weight: 600;
    font-size: 12px;
    margin: 0;
}

.section-program-lainnya .program-lainnya-item .narasi .deskripsi-dana {
    display: flex;
    justify-content: space-between;
}

.section-program-lainnya .program-lainnya-item .narasi .deskripsi-dana .day-limit {
    display: flex;
    align-items: flex-end;
    flex-direction: column;
    gap: 4px;
}

.section-program-lainnya .program-lainnya-item .narasi .deskripsi-dana .day-limit p {
    color: var(--text-primary);
    width: 100%;
    font-size: 10px;
    margin: 0;
}

.section-program-lainnya .program-lainnya-item .narasi .deskripsi-dana .day-limit h4 {
    color: var(--text-primary);
    width: auto;
    font-weight: 600;
    font-size: 12px;
    margin: 0;
}

.section-program-lainnya .dynamic-domain {
    text-decoration: none;
}

.section-program-lainnya .btn-lihat-semua {
    display: flex;
    width: fit-content;
    justify-content: center;
    align-items: center;
    margin: 16px auto 0 auto;
    gap: 8px;
    padding: 8px 12px;
    border: 1px solid var(--primary);
    background-color: var(--secondary-light);
    border-radius: 100px;
    font-size: 12px;
    color: var(--primary);
}

.section-program-lainnya .btn-lihat-semua svg {
    width: 16px;
    height: 16px;
    color: var(--primary);
}

/* END:: SECTION-PROGRAM-LAINNYA */


/* BEGIN:: SECTION-TOTAL-DATA */
.section-total-data {
    display: flex;
    margin: 24px 16px;
    padding: 12px;
    width: auto;
    height: auto;
    justify-content: space-between;
}

.section-total-data .data-donatur,
.section-total-data .data-program,
.section-total-data .data-lembaga {
    display: flex;
    align-items: center;
}

.section-total-data .data-donatur svg,
.section-total-data .data-program svg,
.section-total-data .data-lembaga svg {
    width: 32px;
    height: 32px;
    color: var(--text-navbar);
}

.section-total-data .data-donatur .keterangan-donatur,
.section-total-data .data-program .keterangan-program,
.section-total-data .data-lembaga .keterangan-lembaga {
    display: flex;
    flex-direction: column;
    margin-left: 8px;
}

.section-total-data .data-donatur .keterangan-donatur p,
.section-total-data .data-program .keterangan-program p,
.section-total-data .data-lembaga .keterangan-lembaga p {
    color: var(--text-navbar);
    font-size: 12px;
}

.section-total-data .data-donatur .keterangan-donatur h4,
.section-total-data .data-program .keterangan-program h4,
.section-total-data .data-lembaga .keterangan-lembaga h4 {
    color: var(--primary);
    font-weight: 500;
    font-size: 14px;
    margin-top: 2px;
}

/* END:: SECTION-TOTAL-DATA */


/* BEGIN:: SECTION-LAPORAN-TERKINI */
.section-laporan-terkini {
    width: 100%;
    height: auto;
}

.section-laporan-terkini h3 {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0;
    padding-left: 16px;
}

.section-laporan-terkini .slider-container-laporan {
    position: relative;
    padding-left: 16px;
}

.section-laporan-terkini .slider-arrow-laporan {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 32px;
    height: 32px;
    border: none;
    background-color: #fff;
    border-radius: 50%;
    box-shadow: 0px 2px 8px rgba(98, 99, 108, 0.25);
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
}

.section-laporan-terkini .slider-arrow-left-laporan {
    left: 8px;
}

.section-laporan-terkini .slider-arrow-right-laporan {
    right: 8px;
}

.section-laporan-terkini .slider-arrow-laporan svg {
    width: auto;
    height: 12px;
    color: var(--text-secondary);
}

.section-laporan-terkini .wrap-laporan {
    display: flex;
    width: 100%;
    height: auto;
}

.section-laporan-terkini .wrap-laporan .program-laporan-link {
    text-decoration: none;
}

.section-laporan-terkini .slick-slide {
    margin-right: 12px;
}

.section-laporan-terkini .program-laporan {
    position: relative;
    width: 100%;
    margin: 12px 0;
    height: auto;
    cursor: pointer;
    border-radius: 8px;
    box-shadow: 1px 1px 8px rgba(54, 59, 64, 0.1);
}

.section-laporan-terkini .program-laporan .laporan-image {
    width: 100%;
    max-width: 200px;
    height: 107px;
    margin: 0;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
    display: block;
}

.section-laporan-terkini .program-laporan .narasi {
    display: flex;
    flex-direction: column;
    margin: 0;
    gap: 12px;
    padding: 12px 8px;
}

.section-laporan-terkini .program-laporan .narasi .deskripsi-program .laporan-organization {
    display: flex;
    align-items: center;
    gap: 4px;
    margin-bottom: 8px;
}

.section-laporan-terkini .program-laporan .narasi .deskripsi-program .laporan-organization .program-logo {
    width: auto;
    height: 9px;
    object-fit: cover;
}

.section-laporan-terkini .program-laporan .narasi .deskripsi-program .laporan-organization .program-name {
    color: var(--text-secondary);
    font-size: 10px;

    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.section-laporan-terkini .program-laporan .narasi .deskripsi-program .laporan-title {
    min-height: 34px;
    color: var(--text-primary);
    font-weight: 600;
    font-size: 12px;
    line-height: 17px;

    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* END:: SECTION-LAPORAN-TERKINI */


/* BEGIN:: SECTION-WAKTU-SHOLAT */
.section-waktu-sholat {
    display: flex;
    flex-direction: column;
    margin-top: 24px;
    margin-left: 16px;
    margin-right: 16px;
    width: auto;
    height: auto;
    border-radius: 12px;
    border: 0.5px solid var(--borders);
    overflow: hidden;
    background-color: var(--white);
    position: relative;
}

.section-waktu-sholat .bg-waktu-sholat {
    width: 100%;
    height: auto;
    position: relative;
    overflow: hidden;
}

.section-waktu-sholat .bg-waktu-sholat img {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
}

.section-waktu-sholat .header-sholat {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: absolute;
    top: 40px;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    z-index: 10;
}

.section-waktu-sholat .header-sholat .lokasi-sholat {
    display: flex;
    align-items: center;
    gap: 2px;
}

.section-waktu-sholat .header-sholat .lokasi-sholat svg {
    width: 14px;
    height: 14px;
    color: var(--primary);
}

.section-waktu-sholat .header-sholat .lokasi-sholat .lokasi-user {
    font-size: 12px;
    color: var(--text-secondary);
}

.section-waktu-sholat .header-sholat .jenis-sholat h4,
.section-waktu-sholat .header-sholat .jenis-sholat .waktu-sholat {
    font-size: 16px;
    font-weight: 600;
    margin-top: 8px;
    margin-bottom: 4px;
    color: var(--text-primary);
}

.section-waktu-sholat .header-sholat .pra-sholat {
    font-size: 12px;
    color: var(--text-navbar);
}

.section-waktu-sholat .header-sholat .date-sholat {
    font-size: 12px;
    color: var(--text-primary);
    margin-top: 8px;
}

.section-waktu-sholat .subheader-sholat {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    justify-content: space-between;
    align-items: center;
    margin: 12px;
}

.section-waktu-sholat .subheader-sholat .waktu-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    border-radius: 8px;
    gap: 4px;
}

.section-waktu-sholat .subheader-sholat .waktu-item .jam {
    font-size: 12px;
    padding: 4px 8px;
    background-color: #F1F2F4;
    border-radius: 4px;
    font-weight: 500;
    color: var(--text-primary);
}

.section-waktu-sholat .subheader-sholat .waktu-item .nama {
    font-size: 12px;
    font-weight: 500;
    color: var(--text-navbar);
}

.section-waktu-sholat .subheader-sholat .waktu-item.aktif .jam {
    background-color: var(--secondary-light);
}

.section-waktu-sholat .subheader-sholat .waktu-item.aktif .nama {
    color: var(--primary);
}

/* END:: SECTION-WAKTU-SHOLAT */


/* BEGIN:: SECTION-FUNDRAISER */
.section-fundraiser {
    width: 100%;
    height: auto;
    padding-left: 16px;
    padding-right: 16px;
    margin-top: 16px;
}

.section-fundraiser .banner-fundraiser-slider {
    position: relative;
    width: 100%;
    height: 100%;
    margin-top: 12px;
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
}

.section-fundraiser .banner-fundraiser-slider img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
    display: block;
}

/* END:: SECTION-FUNDRAISER */


/* BEGIN:: SECTION-FOOTER */
.section-footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-top: 12px;
    padding-left: 24px;
    padding-right: 24px;
    padding-bottom: 16px;
    color: var(--text-navbar);
}

.section-footer .footer-divider {
    width: 100%;
    height: 0.5px;
    background-color: var(--borders);
    border: none;
    margin: 16px 0;
}

.logo-berkah-wakaf-footer {
    height: 40px;
    width: auto;
    margin-bottom: 16px;
}

.section-footer .narasi-aggregator {
    font-size: 12px;
    line-height: 1.5;
    color: var(--text-navbar);
}

.section-footer .narasi-policy {
    display: flex;
    width: 90%;
    justify-content: center;
    align-items: center;
}

.section-footer .narasi-policy .dynamic-domain {
    text-decoration: none;
    font-size: 11px;
    color: var(--text-navbar);
}

.section-footer .narasi-policy span {
    color: var(--borders);
}

.section-footer .media-sosial {
    display: flex;
    width: 100%;
    justify-content: center;
    align-items: center;
    gap: 24px;
    margin-top: 24px;
}

.section-footer .media-sosial svg {
    width: 32px;
    height: 32px;
    color: var(--text-secondary);
}

/* END:: SECTION-FOOTER */


/* BEGIN:: SECTION-POWERED-BERSEDEKAH */
.powered-bersedekah {
    width: 100%;
    display: flex;
    flex-direction: column;
    background-color: var(--secondary-light);
    padding-top: 24px;
    padding-bottom: 90px;
    padding-left: 16px;
    padding-right: 16px;
    align-items: center;
    text-align: center;
    gap: 8px;
}

.powered-bersedekah .powered-title {
    font-size: 12px;
    color: var(--text-secondary);
    text-align: center;
}

.powered-bersedekah .powered-title .powered-title-sub {
    font-size: 12px;
    color: var(--text-secondary);
    text-align: center;
    font-weight: 600;
}

.powered-bersedekah .powered-content .powered-logo {
    width: auto;
    height: 20px;
    object-fit: contain;
}

/* END:: SECTION-POWERED-BERSEDEKAH */


/* BEGIN:: BOTTOM-NAVBAR */
.bottom-nav {
    position: fixed;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 420px;
    display: flex;
    justify-content: space-around;
    align-items: center;
    background-color: var(--white);
    border-top: 0.5px solid var(--borders);
    padding: 12px 4px;
    z-index: 100;
}

.bottom-nav .nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    width: 80px;
}

.bottom-nav .nav-item svg {
    width: 28px;
    height: 28px;
    margin-bottom: 4px;
}

.bottom-nav .nav-item p {
    font-size: 11px;
    color: var(--text-navbar);
    margin: 0;
}

.bottom-nav .nav-item .icon-fill {
    display: none;
    color: var(--primary);
}

.bottom-nav .nav-item.active .icon-fill {
    display: block;
}

.bottom-nav .nav-item .icon-outline {
    display: block;
    color: var(--btn-nav-menu);
}

.bottom-nav .nav-item.active .icon-outline {
    display: none;
}

/* END:: BOTTOM-NAVBAR */





/* BEGIN:: MOBILE (480px) */
@media screen and (max-width: 480px) {

    /* BEGIN:: SECTION-ICON-MENU */
    .icon-section .icon-menu-sekunder .icon-menu-small img {
        height: 32px;
    }

    /* END:: SECTION-ICON-MENU */


    /* BEGIN:: SECTION-BUTUH-PERTOLONGAN */
    .section-pertolongan .program-pertolongan .dana-terkumpul .pertolongan-collected {
        font-size: 11px;
    }

    /* END:: SECTION-BUTUH-PERTOLONGAN */


    /* BEGIN:: SECTION-DONASI-SESUAI-LOKASI */
    .section-donasi-lokasi .lokasi-label {
        width: 59px;
        font-size: 11px;
    }

    /* END:: SECTION-DONASI-SESUAI-LOKASI */


    /* BEGIN:: SECTION-PROGRAM-UTAMA */
    .section-program-utama .program-item .narasi .deskripsi-dana .dana-terkumpul h4 {
        font-size: 11px;
    }

    /* END:: SECTION-PROGRAM-UTAMA */


    /* BEGIN:: SECTION-TOTAL-DATA */
    .section-total-data .data-donatur svg,
    .section-total-data .data-program svg,
    .section-total-data .data-lembaga svg {
        width: 24px;
        height: 24px;
    }

    .section-total-data .data-donatur .keterangan-donatur p,
    .section-total-data .data-program .keterangan-program p,
    .section-total-data .data-lembaga .keterangan-lembaga p {
        font-size: 11px;
    }

    .section-total-data .data-donatur .keterangan-donatur h4,
    .section-total-data .data-program .keterangan-program h4,
    .section-total-data .data-lembaga .keterangan-lembaga h4 {
        font-size: 13px;
    }

    /* END:: SECTION-TOTAL-DATA */


    /* BEGIN:: SECTION-WAKTU-SHOLAT */
    .section-waktu-sholat .header-sholat .lokasi-sholat svg {
        width: 12px;
        height: 12px;
    }

    .section-waktu-sholat .header-sholat .lokasi-sholat .lokasi-user {
        font-size: 11px;
    }

    .section-waktu-sholat .header-sholat .jenis-sholat h4,
    .section-waktu-sholat .header-sholat .jenis-sholat .waktu-sholat {
        font-size: 14px;
    }

    .section-waktu-sholat .header-sholat .pra-sholat {
        font-size: 11px;
    }

    .section-waktu-sholat .header-sholat .date-sholat {
        font-size: 11px;
    }

    .section-waktu-sholat .subheader-sholat {
        margin-top: 4px;
    }

    .section-waktu-sholat .subheader-sholat .waktu-item .jam {
        font-size: 11px;
    }

    .section-waktu-sholat .subheader-sholat .waktu-item .nama {
        font-size: 11px;
    }

    /* END:: SECTION-WAKTU-SHOLAT */
}

/* END:: MOBILE (480px) */





/* BEGIN:: MOBILE (410px) */
@media screen and (max-width: 410px) {

    /* BEGIN:: SECTION-PROGRAM-LAINNYA */
    .section-program-lainnya .program-lainnya-item .program-image {
        width: 173px !important;
        height: 107px !important;
        object-fit: cover;
    }

    /* END:: SECTION-PROGRAM-LAINNYA */
}

/* END:: MOBILE (410px) */





/* BEGIN:: MOBILE (400px) */
@media screen and (max-width: 400px) {

    /* BEGIN:: SECTION-PROGRAM-LAINNYA */
    .section-program-lainnya .program-lainnya-item .program-image {
        width: 168px !important;
        height: 107px !important;
        object-fit: cover;
    }

    .section-program-lainnya .program-lainnya-item .narasi {
        width: 187px !important;
    }

    /* END:: SECTION-PROGRAM-LAINNYA */


    /* BEGIN:: SECTION-BUTUH-PERTOLONGAN */
    .section-pertolongan .program-pertolongan .dana-terkumpul .pertolongan-collected {
        font-size: 10px;
    }

    /* END:: SECTION-BUTUH-PERTOLONGAN */


    /* BEGIN:: SECTION-PROGRAM-UTAMA */
    .section-program-utama .program-item .narasi .deskripsi-dana .dana-terkumpul h4 {
        font-size: 10px;
    }

    /* END:: SECTION-PROGRAM-UTAMA */


    /* Elemen "Lihat Program Lainnya"
    yang terletak di 3 Section, yakni :
    (.program-item, .program-pertolongan, .program-laporan) */
    .lihat-program-lainnya {
        width: 160px;
    }


    .logo-berkah-wakaf {
        height: 28px;
        width: auto;
    }
}

/* END:: MOBILE (400px) */





/* BEGIN:: MOBILE (390px) */
@media screen and (max-width: 390px) {

    /* BEGIN:: SECTION-PROGRAM-LAINNYA */
    .section-program-lainnya .program-lainnya-item .program-image {
        width: 163px !important;
        height: 107px !important;
        object-fit: cover;
    }

    .section-program-lainnya .program-lainnya-item .narasi {
        width: 182px !important;
    }

    /* END:: SECTION-PROGRAM-LAINNYA */
}

/* END:: MOBILE (390px) */





/* BEGIN:: MOBILE (380px) */
@media screen and (max-width: 380px) {

    /* BEGIN:: SECTION-PROGRAM-LAINNYA */
    .section-program-lainnya .program-lainnya-item .program-image {
        width: 170px !important;
        height: 107px !important;
        object-fit: cover;
    }

    .section-program-lainnya .program-lainnya-item .narasi {
        width: 162px !important;
    }

    /* END:: SECTION-PROGRAM-LAINNYA */


    /* BEGIN:: SECTION-WAKTU-SHOLAT */
    .section-waktu-sholat .header-sholat {
        top: 36px;
    }

    .section-waktu-sholat .subheader-sholat {
        margin: 4px 8px 8px 8px;
    }

    /* END:: SECTION-WAKTU-SHOLAT */


    /* Elemen "Lihat Program Lainnya"
    yang terletak di 3 Section, yakni :
    (.program-item, .program-pertolongan, .program-laporan) */
    .lihat-program-lainnya {
        width: 140px;
    }
}

/* END:: MOBILE (380px) */





/* BEGIN:: MOBILE (370px) */
@media screen and (max-width: 370px) {

    /* BEGIN:: SECTION-PROGRAM-LAINNYA */
    .section-program-lainnya .program-lainnya-item .program-image {
        width: 166px !important;
        height: 107px !important;
        object-fit: cover;
    }

    .section-program-lainnya .program-lainnya-item .narasi {
        width: 159px !important;
    }

    /* END:: SECTION-PROGRAM-LAINNYA */


    /* BEGIN:: SECTION-BUTUH-PERTOLONGAN */
    .section-pertolongan .program-pertolongan .dana-terkumpul .pertolongan-collected {
        font-size: 9px;
        word-break: break-all;
    }

    /* END:: SECTION-BUTUH-PERTOLONGAN */


    /* BEGIN:: SECTION-PROGRAM-UTAMA */
    .section-program-utama .program-item .narasi .deskripsi-dana .dana-terkumpul h4 {
        font-size: 9px;
        word-break: break-all;
    }

    /* END:: SECTION-PROGRAM-UTAMA */


    /* BEGIN:: SECTION-WAKTU-SHOLAT */
    .section-waktu-sholat .subheader-sholat {
        margin: 8px 8px 12px 8px;
    }

    /* END:: SECTION-WAKTU-SHOLAT */


    /* BEGIN:: BOTTOM-NAVBAR */
    .bottom-nav {
        padding: 8px 2px;
    }

    .bottom-nav .nav-item p {
        font-size: 10px;
    }

    /* END:: BOTTOM-NAVBAR */
}

/* END:: MOBILE (370px) */





/* BEGIN:: MOBILE (360px) */
@media screen and (max-width: 360px) {

    /* BEGIN:: SECTION-PROGRAM-LAINNYA */
    .section-program-lainnya .program-lainnya-item .program-image {
        width: 161px !important;
        height: 107px !important;
        object-fit: cover;
    }

    .section-program-lainnya .program-lainnya-item .narasi {
        width: 154px !important;
    }

    /* END:: SECTION-PROGRAM-LAINNYA */


    /* Elemen "Lihat Program Lainnya"
    yang terletak di 3 Section, yakni :
    (.program-item, .program-pertolongan, .program-laporan) */
    .lihat-program-lainnya {
        width: 130px;
    }

    .logo-berkah-wakaf {
        height: 24px;
        width: auto;
    }
}

/* END:: MOBILE (360px) */





/* BEGIN:: MOBILE (350px) */
@media screen and (max-width: 350px) {

    /* BEGIN:: SECTION-PROGRAM-LAINNYA */
    .section-program-lainnya .program-lainnya-item .program-image {
        width: 150px !important;
        height: 107px !important;
        object-fit: cover;
    }

    .section-program-lainnya .program-lainnya-item .narasi {
        width: 156px !important;
    }

    /* END:: SECTION-PROGRAM-LAINNYA */


    /* BEGIN:: SECTION-WAKTU-SHOLAT */
    .section-waktu-sholat .subheader-sholat {
        margin: 12px 8px;
    }

    /* END:: SECTION-WAKTU-SHOLAT */
}

/* END:: MOBILE (350px) */





/* BEGIN:: MOBILE (340px) */
@media screen and (max-width: 340px) {

    /* BEGIN:: SECTION-PROGRAM-LAINNYA */
    .section-program-lainnya .program-lainnya-item .program-image {
        width: 140px !important;
        height: 107px !important;
        object-fit: cover;
    }

    .section-program-lainnya .program-lainnya-item .narasi {
        width: 155px !important;
    }

    /* END:: SECTION-PROGRAM-LAINNYA */


    /* Elemen "Lihat Program Lainnya"
    yang terletak di 3 Section, yakni :
    (.program-item, .program-pertolongan, .program-laporan) */
    .lihat-program-lainnya {
        width: 120px;
    }
}

/* END:: MOBILE (340px) */

/* END:: MOBILE (340px) */

header {
    display: none;
}
.body,
.body > div {
    padding: 0;
}
.container {
    padding: 0;
}
.footer {
    padding-bottom: 50px !important;
}
p {
    margin: 0;
}
.box-waktu-shalat {
    margin: 0 15px;
    position: relative;
    margin-top: 10px !important;
}