#disqus_thread>iframe[src*="ads-iframe"]{display:none!important}
#disqus_thread>iframe[sandbox]{display:none!important}
#disqus_thread>iframe[sandbox] {display: none !important;}


.navmirror {
    width: 100%;
    position: fixed;
    bottom: 0;
    z-index: 999;
    left: 0;
    right: 0;
    background: #fff;
    box-shadow: rgba(0, 0, 0, 0.2) 0 1px 4px 0;
}

.navmirror.sticky {
    bottom: 0;
    z-index: 1;
}

.navmirror ul {
    padding: 0;
    margin: 0 auto;
    list-style: none;
    display: flex; /* Gunakan Flexbox untuk tata letak */
    justify-content: space-around; /* Spasi antara item */
    max-width: 975px;
}

.navmirror li {
    display: flex;
    flex-direction: column; /* Tumpuk elemen secara vertikal */
    flex: 1; /* Setiap elemen akan menyesuaikan ukuran layar */
    align-items: center; /* Pusatkan elemen secara horizontal */
    justify-content: space-around; /* Pusatkan elemen secara vertikal */
    width: 20%;
    font-size: 11px;
    text-align: center;
    padding: 7px 0;
}

.navmirror img {
    width: 19px;
    height: 19px;
    margin-bottom: 5px; /* Jarak antara gambar dan teks */
}

.navmirror li span {
    display: block;
    font-size: 12px;
    line-height: 1.2;
}

.navmirror a {
    display: flex; /* Membuat tautan menjadi container flex */
    flex-direction: column; /* Elemen di dalamnya ditumpuk */
    align-items: center; /* Pusatkan elemen di tengah */
    text-decoration: none;
    color: #5a5a5a;
}

.navmirror a:hover {
    color: #df0000; /* Warna teks saat hover */
}


/* BUTTON */
.btn-dark {
    list-style: none;
    box-sizing: border-box;
    margin: 0;
    font-family: inherit;
    overflow: visible;
    text-transform: none;
    -webkit-appearance: button;
    color: #fff;
    background-color: #343a40;
    border-color: #343a40;
    padding: .25rem .5rem;
    font-size: .875rem;
    line-height: 1.5;
    border-radius: .2rem;
    cursor: pointer;
}

.btn-danger {
    list-style: none;
    box-sizing: border-box;
    margin: 0;
    font-family: inherit;
    overflow: visible;
    text-transform: none;
    -webkit-appearance: button;
    color: #fff;
    background-color: #dc3545;
    border-color: #dc3545;
    padding: .25rem .5rem;
    font-size: .875rem;
    line-height: 1.5;
    border-radius: .2rem;
    cursor: pointer;
}

.mb-2 {
    margin-bottom: 20px;
}

.mt-2 {
    margin-top: 20px;
}

/* TOMBOL UPVOTE SUBSCRIBE */
.subscribe {
    position: fixed;
    bottom: 50px;
    left: 10px
}

.subscribe a {
    background: #fc0000;
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    padding: 5px 10px;
    float: left;
    margin-bottom: 10px
}

.subscribe a:first-child {
    margin-right: 10px
}

.subscribe a:last-child {
    background: #252525
}

@media (max-width: 600px) {
  .navmirror ul {
    flex-wrap: wrap;
  }
}