#zakat-page {
    margin: 0 10%;
    display: flex;
    flex-direction: column;
    align-content: center;
    align-items: center;
}

/* BEGIN:: Library */
h2.title {
    text-align: center;
    font-size: 28px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 5px;
    color: #999;
}
h2.title > span {
    color: #333;
    margin-right: 5px;
}
.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:: Status Penerimaan */
.box-status-penerimaan {
    width: 80%;
    min-width: 825px;
    text-align: center;
    padding: 20px;
    background-color: #FFF;
    margin: -50px auto 0px;
    border: #DDD 1px solid;
    z-index: 2;
}
.box-status-penerimaan > h2 {
    display: none;
}
.box-status-penerimaan > .status-penerimaan {
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
}
.box-status-penerimaan > .status-penerimaan > .box {
    text-align: center;
    margin: 0 30px;
}
.box-status-penerimaan > .status-penerimaan > .box > .value {
    display: block;
    font-size: 26px;
    margin: 0 0 -10px;
    color: var(--text-color);
    /*color: var(--button-color);*/
    font-weight: 500;
    letter-spacing: 1px;
    position: relative;
}
.box-status-penerimaan > .status-penerimaan > .box > .value.empty {
    margin-bottom: -2px;
}
.box-status-penerimaan > .status-penerimaan > .box > .value > i {
    color: var(--background-button-color-tranparent);
    font-size: 15px;
    position: absolute;
    top: 5px;
    right: -19px;
}
.box-status-penerimaan > .status-penerimaan > .box > .caption {
    font-size: 14px;
    font-weight: 400;
    color: #999;
    margin: 0;
}
/* Tooltips */
.box-status-penerimaan > .status-penerimaan > .box > .value > .tooltips {
    position: absolute;
    top: -10px;
    right: -30px;
    padding: 0;
}
.box-status-penerimaan > .status-penerimaan > .box > .value > .tooltips * {
    cursor: pointer;
}
.box-status-penerimaan > .status-penerimaan > .box > .value > .tooltips > .dropdown-toggle > i {
    font-size: 18px;
    color: var(--background-banner-color-tranparent);
}
.box-status-penerimaan > .status-penerimaan > .box > .value > .tooltips > .dropdown-menu {
    width: max-content;
}
.box-status-penerimaan > .status-penerimaan > .box > .value > .tooltips > .dropdown-menu > ul {
    padding: 0 10px;
    margin: 0;
}
.box-status-penerimaan > .status-penerimaan > .box > .value > .tooltips > .dropdown-menu > ul > li {
    list-style: none;
    line-height: 20px;
}
.box-status-penerimaan > .status-penerimaan > .box > .value > .tooltips > .dropdown-menu > ul > li > span {
    display: inline-block;
    font-size: 13px;
    letter-spacing: 0px;
}
.box-status-penerimaan > .status-penerimaan > .box > .value > .tooltips > .dropdown-menu > ul > li > span.sumber {
    margin-right: 40px;
}
.box-status-penerimaan > .status-penerimaan > .box > .value > .tooltips > .dropdown-menu > ul > li > span.nilai {
    color: var(--button-color);
    text-align: right;
    float: right;
    margin-top: 1px;
}
/* Drop Down */
.dropdown-toggle::after {
    display: none !important;
}
.dropdown-menu-arrow {
    top: -25px;
    left: 0px;
    width: 0;
    height: 0;
    position: relative;
}
.dropdown-menu-arrow:before,
.dropdown-menu-arrow:after{
    content: "";
    position: absolute;
    display: block;
    width: 0;
    height: 0;
    border-width: 7px 8px;
    border-style: solid;
    border-color: transparent;
    z-index: 1001;
}
.dropdown-menu-arrow:after{
    bottom: -18px;
    right: -23px;
    border-bottom-color: #fff;
}
.dropdown-menu-arrow:before{
    bottom: -17px;
    right: -23px;
    border-bottom-color: rgba(0,0,0,.2);
}
/* END:: Status Penerimaan */

/* BEGIN:: Box List Program */
.box-list-program {
    padding: 30px 0 0;
    width: 100%;
    border-radius: 10px;
}
.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: center;
    margin-top: 30px;
    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: 165px;
}
.box-list-program > .list-program .program > .thumbnail > img {
    height: 165px;
    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;
}
.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 > .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: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;
}
/* END:: Box List Program */

/*BEGIN:: Box Zakat */
.box-zakat {
    margin-top: 0px;
    width: 100%;
}
.box-zakat > .banner-zakat {
    position: relative;
    z-index: -1;
}
.box-zakat > .banner-zakat > img {
    width: 100%;
}
.box-zakat > .banner-zakat > .title {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    background-color: var(--background-banner-color-tranparent);
}
.box-zakat > .banner-zakat > .title > div {
    width: 100%;
    text-align: center;
}
.box-zakat > .banner-zakat > .title > div > h2 {
    margin: 0;
    text-transform: uppercase;
    font-weight: 600;
    color: #FFF;
    padding: 0 10%;
}
.box-zakat > .banner-zakat > .title > div > h3 {
    font-size: 20px;
    color: #FFF;
    padding: 0 10%;
}
.box-zakat > .form-zakat {
    padding: 30px 25px 0;
}
section.form-zakat {
    padding: 40px 0 !important;
    margin: 0 !important;
    width: 100% !important;
}
/*END:: Box Zakat */

/* BEGIN:: Box Deskripsi Zakat */
.box-deskripsi-zakat {
    margin: 50px 0
}
.box-deskripsi-zakat > h1 {
    text-align: center;
    color: var(--button-color);
    font-size: 30px;
    font-weight: 500;
}
.box-deskripsi-zakat > h2 {
    font-size: 20px;
    text-align: center;
    margin: 20px 0 30px;
}
.box-deskripsi-zakat > p {
    text-align: justify;
}
.box-deskripsi-zakat > p img {
    width: 100%;
}
/* END:: Box Deskripsi Zakat */

/* BEGIN:: Box Error */
.box-error {
    color: #90111A;
    font-size: 12px;
    text-align: center;
}
/* END:: Box Error */

.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; } }