html {
    overflow-y: hidden;
}

#program-page {
    margin: 0 10%;
    display: flex;
    flex-direction: column;
    align-content: center;
    align-items: center;
}

/* BEGIN:: Library */
.border-radius-5 {
    border-radius: 5px;
}
.border-radius-10 {
    border-radius: 10px;
}
.bg-grey {
    background-color: #F2F2F2;
}
.bg-button-color {
    color: #FFF;
    background-color: var(--button-color);
}
.bg-text-color {
    background-color: var(--text-color);
}
/* END:: Library */

/* BEGIN:: Banner */
.box-banner {
    width: 100%;
    min-height: 65px;
}
.box-banner .banner {
    width: 100%;
    position: relative;
}
.box-banner .banner > img {
    height: 350px;
    width: 100%;
}
.box-banner .banner > .title {
    position: absolute;
    bottom: 0;
    z-index: 1;
    padding: 100px 105px 90px 105px;
    background: linear-gradient(
            0deg
            , rgba(0,0,0,1) 0%, rgba(0,0,0,0.8323704481792717) 25%, rgba(255,255,255,0) 100%);
    width: 100%;
    border-radius: 0 0 10px 10px;
}
.box-banner .banner > .title > h2 {
    margin: 0 0 5px;
    color: #FFF;
    font-size: 28px;
    font-weight: 500;
}
.box-banner .banner > .title > h3 {
    margin: 0;
    color: #FFF;
    font-size: 16px;
    font-weight: 200;
}
.box-banner .banner > .box-url-link > div {
    cursor: pointer;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}
.box-banner ul.slick-dots {
    bottom: 60px;
}
.box-banner button.slick-arrow,
.box-banner button.slick-arrow {
    display: none !important;
}
.box-banner ul.slick-dots li {
    margin: 0;
    transition: all .5s;
}
.box-banner ul.slick-dots li.slick-active,
.box-banner ul.slick-dots li.slick-active button {
    width: 50px;
}
.box-banner ul.slick-dots li.slick-active button:before {
    padding: 0 !important;
    width: 50px;
    background-color: #FFF;
}
/* END:: Banner */

/*BEGIN:: Box Filter*/
.box-filter {
    display: flex;
    flex-wrap: nowrap;
    width: 100%;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 1;
    background-color: #FFF;
    padding: 10px 0;
    transition: all .5s;
}
.box-filter > div {
    width: fit-content;
}
.box-filter > .left {
    text-align: left;
}
.box-filter > .left > h1 {
    margin: 0 0 -5px;
    font-size: 22px;
    font-weight: 600;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 2px;
}
.box-filter > .left > h1 > b {
    color: #000;
}
.box-filter > .left > #counterProgram {
    font-size: 14px;
    margin: 0 10px 0 0;
    display: inline-flex;
    width: fit-content;
    min-width: 100px;
}
.box-filter > .left > #counterProgram:empty {
    height: 17px;
    vertical-align: sub;
}
.box-filter > .right {
    text-align: right;
    align-items: center;
    margin-left: auto;
}
.box-filter > .right > div {
    display: inline-flex;
}
.box-filter > .right > div.sort > label {
    margin: 7px 10px;
    font-size: 14px;
    font-weight: 500;
    color: #999;
}
.box-form-filter select,
.box-filter > .right > div > select {
    font-size: 14px;
    padding: 4px 10px;
    border: #CCC thin solid;
    cursor: pointer;
    border-radius: 5px;
    color: #666;
}
.box-filter #btnFilter {
    background-color: var(--text-color);
    color: #FFF;
    padding: 7px 20px;
    border-radius: 3px;
    font-size: 14px;
    vertical-align: top;
    margin: 0 0 0 10px;
    cursor: pointer;
    transition: .5s;
}
.box-filter #btnFilter:hover {
    background-color: var(--button-color);
}
.box-filter #btnFilter > i {
    margin-right: 5px;
    font-size: 12px;
}
.box-form-filter {
    position: sticky;
    top: 65px;
    display: none;
    justify-content: flex-end;
    align-items: center;
    width: 100%;
    padding: 15px;
    background-color: #EEE;
    border-radius: 5px;
    margin-bottom: 20px;
    z-index: 1;
}
.box-form-filter > div {
    margin-left: 10px;
}
.box-form-filter > div > label {
    margin: 0;
    margin-right: 10px;
    margin-left: 20px;
    font-size: 14px;
}
.box-form-filter > #btnFilterClose,
.box-form-filter > #btnSubmitFilter {
    display: none;
}
/*END:: Box Filter*/

/* BEGIN:: Box List Program */
.box-list-program {
    padding: 0;
    width: 100%;
    border-radius: 10px;
    margin-bottom: 20px;
}
.box-list-program.list-program-no-banner {
    margin-top: 0;
}
.box-list-program > h4 {
    text-align: center;
    font-size: 16px;
    color: #666;
    margin: -5px 0 0;
    text-transform: capitalize;
    letter-spacing: 3px;
}
.box-list-program > .list-program {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    align-content: center;
    overflow: hidden;
    justify-content: left;
    padding: 20px;
}
.box-list-program > .list-program .program {
    width: calc(33.3% - 40px);
    margin: 20px;
    background-color: #FFF;
}
.box-list-program > .list-program .program * {
    cursor: pointer;
}
.box-list-program > .list-program .program > .thumbnail {
    position: relative;
    overflow: hidden;
}
.box-list-program > .list-program .program > .thumbnail.empty {
    height: 185px;
}
.box-list-program > .list-program .program > .thumbnail > img {
    height: 185px;
    width: 100%;
    border-radius: 5px 5px 0 0;
    transition: all 1s;
}
.box-list-program > .list-program .program:hover > .thumbnail > img {
    transform: scale(1.3);
}
.box-list-program > .list-program .program > .detail {
    padding: 10px 20px 20px;
    position: relative;
}
.box-list-program > .list-program .program > .detail > a > h3 {
    margin: 0 0 5px 0;
    font-size: 16px;
    font-weight: 600;
    color: #333333;
    height: 36px;
    line-height: 18px;
    cursor: pointer;
    transition: all .5s;

    text-decoration: none;
    display: -webkit-box;
    text-align: left;
    word-break: break-word;
    white-space: pre-wrap;
    text-overflow: ellipsis;
    overflow: hidden;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}
.box-list-program > .list-program .program:hover > .detail > a > h3 {
    color: var(--text-color);
}
.box-list-program > .list-program .program > .detail > .daerah {
    font-size: 12px;
    color: #999;
    margin: 0;
}
.box-list-program > .list-program .program > .detail > .daerah > i {
    margin-right: 5px;
    font-size: 11px;
}
.box-list-program > .list-program .program > .detail > .cicilan {
    position: absolute;
    right: 20px;
    top: 17px;
    font-size: 11px;
    background-color: var(--text-color);
    color: #FFF;
    padding: 0 10px;
    border-radius: 5px;
    margin: 0;
}
.box-list-program > .list-program .program > .detail > .kategori {
    font-size: 13px;
    color: #999;
    display: block;
    margin: -3px 0 10px;
}
.box-list-program > .list-program .program > .detail > .box-nilai {
    display: flex;
    flex-wrap: nowrap;
}
.box-list-program > .list-program .program > .detail > .box-nilai.caption {
    font-size: 10px;
    color: #999;
    margin-bottom: -5px;
}
.box-list-program > .list-program .program > .detail > .box-nilai.value {
    font-size: 14px;
    font-weight: 600;
}
.box-list-program > .list-program .program > .detail > .box-nilai.value > .left {
    color: var(--text-color);
}
.box-list-program > .list-program .program > .detail > .box-nilai.value > .right {
    color: var(--button-color);
}
.box-list-program > .list-program .program > .detail > .box-nilai.target {
    font-size: 10px;
    font-weight: 600;
    color: #999;
}
.box-list-program > .list-program .program > .detail > .box-nilai > label {
    width: 100%;
    margin: 0;
}
.box-list-program > .list-program .program > .detail > .box-nilai > label > i {
    font-size: 12px;
    font-style: normal;
}
.box-list-program > .list-program .program > .detail > .box-nilai > label.right {
    text-align: right;
}
.box-list-program > .list-program .program > .detail > .box-target {
    background-color: #999;
    height: 5px;
    width: 100%;
    margin: 5px 0 2px;
}
.box-list-program > .list-program .program > .detail > .box-target > div {
    height: 5px;
    width: 20%;
    background-color: var(--button-color);
}
.box-list-program > .list-program .program > .detail a > .btn-donasi{
    text-align: center;
    width: 100%;
    color: #FFF;
    background-color: var(--button-color);
    padding: 5px;
    font-size: 16px;
    letter-spacing: 1px;
    font-weight: 600;
    margin: 20px 0 0;
    transition: all .5s;
}
.box-list-program > .list-program .program > .detail a > .btn-donasi.selesai {
    background-color: #999;
}
.box-list-program > .list-program .program:hover > .detail a > .btn-donasi {
    background-color: var(--text-color);
}
.box-list-program > .list-program .program a *,
.box-list-program > .list-program .program a:hover,
.box-list-program > .list-program .program a:hover *{
    cursor: pointer;
    text-decoration: none !important;
}
.box-list-program > .list-program .program > .detail .empty {
    margin: 3px 5px !important;
}
/* Box List Selesai */
.box-list-program.selesai > .list-program,
.box-list-program.zakat > .list-program{
    display: block;
}
.box-list-program.selesai > .list-program > .program,
.box-list-program.zakat > .list-program > .program{
    display: inline-block;
    width: calc(33% - 40px);
}
.box-list-program.selesai > .list-program .program > .detail > .box-nilai > label.left {
    display: none;
}
.box-list-program > .list-program div.box-lihat-selengkapnya {
    margin: 20px;
}
.box-list-program > .list-program div.box-lihat-selengkapnya * {
    cursor: pointer;
}
.box-list-program > .list-program div.box-lihat-selengkapnya > a:hover {
    text-decoration: none !important;
}
.box-list-program > .list-program div.box-lihat-selengkapnya > a > .lihat-selengkapnya {
    display: flex;
    height: 398px;
    align-items: flex-end;
    justify-content: flex-end;
    padding: 20px 30px;
    background-color: var(--background-button-color-tranparent);
    transition: all .5s;
}
.box-list-program > .list-program div.box-lihat-selengkapnya > a:hover > .lihat-selengkapnya {
    background-color: var(--button-color);
}
.box-list-program > .list-program div.box-lihat-selengkapnya > a > .lihat-selengkapnya > label {
    color: #FFF;
    font-size: 20px;
    font-weight: 600;
    letter-spacing: 1px;
    text-align: right;
    width: 150px;
    line-height: 22px;
}
.box-list-program > .list-program > .empty-search {
    display: none;
    width: 100%;
    justify-content: center;
    align-items: center;
    text-align: center;
}
.box-list-program > .list-program > .empty-search > img {
    display: block;
    height: 200px;
    margin: 40px auto;
}
.box-list-program > .list-program > .empty-search > b {
    margin: 0 5px;
}
.box-list-program > .list-program > .empty-search > a {
    display: block;
}

/* Komunitas */
.box-filter > .left.caption-komunitas {
    display: none;
}
.box-filter > .left.caption-komunitas > h1 {
    font-size: 20px;
    letter-spacing: 1px;
    color: #000;
}
.box-filter > .left.caption-komunitas > label {
    margin-bottom: 0;
    line-height: 16px;
    font-size: 13px;
}
.box-list-program .program .box-komunitas {
    display: flex;
    flex-wrap: nowrap;
    margin-bottom: 5px;
}
.box-list-program .program .box-komunitas > img {
    height: 14px;
    margin-right: 10px;
}
.box-list-program .program .box-komunitas > label {
    font-size: 12px;
    margin: 0 0 0 -5px;
}
/* END:: Box List Program */

.empty:empty {
    border-radius: 4px;
    height: 20px;
    background-image: linear-gradient(
            100deg
            , rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.3) 50%, rgba(255, 255, 255, 0) 80% ), linear-gradient( lightgray 100vh, transparent 0 );
    background-size: 175px 200px, 100% 200px;
    background-position: 0 0, 0 0;
    animation: empty-shine 1s infinite;
}
@keyframes empty-shine { to { background-position: 500px 0, 0 0; } }