#loader-wrapper{
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 9999;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}
#loader-logo {
    width: 100px;
    height: auto;
    animation: zoomInOut 1.2s infinite;
}
.zoominout {
    animation: zoomInOut 1s infinite;
}
@keyframes zoomInOut {
    0% { transform: scale(1);}
    50% { transform: scale(1.15);}
    100% { transform: scale(1);}
}

.font-bold{
    font-weight: bold;
}
.fa-spin{
    animation: fa-spin .75s infinite linear;
}

.line-clamp{
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    display: -webkit-box;
    -webkit-box-orient: vertical;
}
.ellipsis{
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.header{
    background-color: #00cc00;
    padding: 8px 12px;
}
.header .fa,
.footer .fa{
    cursor: pointer;
}
.header-logo{
    max-height: 60px;
    object-fit: contain;
    padding: 5px 0;
}
.header-search{
    margin-top: 8px;
    margin-bottom: 8px;
}
.header-transparent{
    padding: 12px;
    margin-top: 4px;
    width: 100%;
    background-color: #fff;
    z-index: 9998;
}

.footer,
.footer-transparent{
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    padding: 0 12px;
}
.footer-transparent{
    padding: 12px;
    border-top: 1px solid #ddd;
    background-color: #fff;
}
.footer .col-3:hover{
    background-color: rgba(255, 255, 255, 0.2);
}
.footer .footer-menu{
    border-bottom: 4px solid transparent;
    display: block;
    color: #fff;
    text-decoration: none;
    padding: 12px 0 4px 0;
}
.footer .footer-menu.active{
    border-bottom: 4px solid #fff;
}
.footer .fab,
.footer .fas{
    font-size: 140%;
    margin-bottom: 0;
}
.footer .footer-menu-title{
    margin-top: -2px;
}

.menu .title{
    font-size: 120%;
    font-weight: bold;
    margin-bottom: 16px;
    color: #00cc00;
}
.menu-icon{
    max-height: 60px;
    object-fit: contain;
    padding: 5px 0;
}
.menu .menu-item{
    text-decoration: none;
    color: inherit;
}
.menu .menu-item-title{
    font-weight: bold;
    margin-top: 4px;
}

.produk{
    margin-bottom: 16px;
}
.produk-header{
    background-color: #f5f5f5;
    padding: 12px;
    margin-bottom: 12px;
    margin-left: calc(var(--bs-gutter-x, 0.75rem) * -1);
    margin-right: calc(var(--bs-gutter-x, 0.75rem) * -1);
    font-size: 120%;
}
.produk-item{
    margin-bottom: 12px;
    text-decoration: none;
    padding-bottom: 12px;
}
.produk-item:not(:last-child){
    border-bottom: 1px dashed #ddd;
}
.produk-item .col-right{
    padding-left: 0;
}
.produk-foto{
    background-size: cover;
    background-position: center;
    width: 28vw;
    height: 28vw;
    margin: auto;
    border-radius: 4vw;
    border: 1px solid #ddd;
}
.produk-action{
    font-size: 80%;
    margin-top: -12px;
    background-color: #fff;
    border-radius: 20px;
    border-width: 1px;
    border-color: #ddd;
    border-style: solid;
    width: 24vw;
    margin-left: auto;
    margin-right: auto;
    overflow: hidden;
    padding: 4px;
}
.produk-action.off{
    border-color: #ddd !important;
    color: #ddd !important;
}
.produk-action-btn{
    padding: 2px;
    border-width: 1px;
    border-color: #ddd;
    border-style: solid;
    border-radius: 20px;
}
.produk-action-jml{
    font-size: 16px;
    font-weight: bold;
}