:root {
    --primary: #ff0000;
    --hover: #ff0000dd;
    --widthparallaxdesktop: 100%;
    --heightparallaxdesktop: 250px;
    --txtparallax: "Scroll untuk lanjut membaca";
    --font1 : MNCSansRegular,sans-serif;
    --font2: MNCSansBold, sans-serif;
}
*, html {
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
*,::after,::before {
    box-sizing: border-box
}
html * {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: greyscale;
    -webkit-backface-visibility: hidden;
}
a,body {
    color: #222;
}
a {
    text-decoration: none;
}
body {
    background: #fff;
    font-family: var(--font1);
    font-weight: 400;
    font-size: 14px;
    line-height: 1.5;
    color: #222;
}
body.overflow-hidden {
    overflow: hidden;
}
.content {
    min-width: 1024px;
    margin: 0 auto;
}
button {
    background-color: transparent;
    border: none;
    outline: 0;
    cursor: pointer;
}
img {
    max-width: 100%;
    height: auto;
}
input {
    outline: 0;
}
.center {
    display: block;
    margin: 0 auto;
}

figure {
    display: block;
}
.container {
    width: 1024px;
    margin-right: auto;
    margin-left: auto;
}
.media {
    position: relative;
}
.media-image {
    position: relative;
    overflow: hidden;
}
.media-image:before {
    content: "";
    left: 0;
    bottom: 0;
    background: #ddd;
    animation: 1s infinite shine
}
.media-image:after, .media-image:before {
    position: absolute;
    right: 0;
    top: 0;
}
.media-icon {
    background: rgba(191,191,191,.5);
    z-index: 2;
    position: absolute;
    top: 10px;
    left: 10px;
    width: 25px;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 25px;
    border-radius: 8px;
}


.media-icon svg {
    fill: none;
    stroke: rgb(255 255 255);
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.5;
    height: 19px;
}
.media-title {
    display: -webkit-box;
    margin: 0;
    overflow: hidden;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}
@-webkit-keyframes shimmer {
    100% {
        transform: translateX(100%)
    }
}
@keyframes shimmer {
    100% {
        transform: translateX(100%)
    }
}
.media-image:after {
    bottom: 0;
    left: 0;
    transform: translateX(-100%);
    background-image: linear-gradient(90deg,rgba(255,255,255,0) 0,rgba(255,255,255,.2) 20%,rgba(255,255,255,.5) 60%,rgba(255,255,255,0));
    -webkit-animation: 2s infinite shimmer;
    animation: 2s infinite shimmer;
    content: ""
}
.media-image img {
    position: absolute;
    height: 100%;
    width: 100%;
    object-fit: cover;
    transition: .5s;
    z-index: 1;
    left: 0;
}
.media-link:before {
    content: "";
    left: 0;
    bottom: 0;
    z-index: 3;
    position: absolute;
    right: 0;
    top: 0;
}
.media:hover .media-link {
    color: var(--primary) !important;
}
.media-text {
    flex: 1;
}
.media:hover .media-image img {
    -webkit-transform: scale(1.15);
    -moz-transform: scale(1.15);
    -ms-transform: scale(1.15);
    -o-transform: scale(1.15);
    transform: scale(1.15);
}
.billboard.parallax {
    background: #0d0d0d;
    min-width: 1032px;
    position: relative;
    z-index: 10;
}

.parallax-box {
    width: 100%;
    height: var(--heightparallaxdesktop);
    position: relative;
    max-width: 970px;
    left: 0;
    right: 0;
    margin-right: auto;
    margin-left: auto;
    padding: 0;
    margin-top: 0;
    margin-bottom: 0;
}
.parallax-box .widget {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    clip: rect(auto,auto,auto,auto);
}

.parallax-box .widget-parallax {
    width: var(--widthparallaxdesktop);
    height: auto;
    position: fixed;
    top: 0;
    -moz-transform: translateZ(0);
    -webkit-transform: translateZ(0);
    -ms-transform: translateZ(0);
    -o-transform: translateZ(0);
    transform: translateZ(0);
    margin: 0 auto;
    max-width: 970px;
    left: 0;
    right: 0;
}
header.header {
    background: #fff;
    position: sticky;
    top: 0;
    z-index: 10;
    box-shadow: #eeeeee 0px 1px 0px;
}
.header-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 10px;
}

.header-brand img {
    height: 30px;
    width: auto;
    display: block;
}

.header-brand a {
    display: block;
    outline: 0;
}
.widget.tag-search {
    display: none;
    position: absolute;
    top: 48px;
    width: 310px;
    height: auto;
    background-color: #fff;
    border-radius: 10px;
    border: 1px solid #e3e3e3;
    box-shadow: 15px -1px 31px 10px rgba(141,141,141,.2509803922);
    padding: 30px 16px;
    z-index: 1;
    padding-bottom: 16px;
}

.widget.tag-search .widget-title {
    font-size: 14px;
}

.widget.tag-search .widget-content {
    margin-bottom: 12px;
    width: 100%;
    overflow: hidden;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.widget.tag-search .media {
    cursor: pointer;
    font-family: var(--font1);
    font-size: 12px;
    font-weight: 400;
    line-height: 18px;
    border: .5px solid #222;
    border-radius: 20px;
    color: #333;
    display: inline-block;
}
.widget.tag-search .media svg {
    height: 14px;
    width: 14px;
}

.widget.tag-search .media .media-link {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 4px 8px;
}
.widget.tag-search .media:hover .media-link {
    color: #222 !important;
}
.widget.tag-search .media span {display: none;width: 14px;align-items: center;color: var(--primary);}
.widget.tag-search.show {
    display: block;
}
.widget.tag-search .media:nth-child(1) span, .widget.tag-search .media:nth-child(2) span {
    display: flex;
}
.header-search-wrapper {
    position: relative;
    width: 310px;
    height: 32px;
    border-radius: 128px;
    background: #fafafa;
    border: 1px solid #e3e3e3;
    overflow: hidden;
    display: flex;
    align-content: flex-start;
    align-items: center;
}

.header-input-search {
    width: 80%;
    height: 100%;
    padding: 4px 16px;
    border: none;
    background: #fafafa;
    color: #8c8c8c;
    font-family: var(--font1);
    font-size: 13px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
    transition: background-color .3s;
}

.header-search .btn-search {
    cursor: pointer;
    display: flex;
    justify-content: end;
    align-items: center;
    position: absolute;
    right: 2px;
    height: 100%;
    color: var(--primary);
}
button.mode {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
}
button.mode svg {
    display: none;
}
button.mode.icon-darkmode .light {
    display: block;
}
button.mode.icon-lightmode .dark {
    display: block;
}
button.network svg {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
}

button.network {
    display: flex;
    align-items: center;
    gap: 5px;
    height: 36px;
}
button.network span {
    font-family: var(--font2);
    font-size: 14px;
    display: flex;
    gap: 5px;
    align-items: center;
}
button.network.show span:after {
    transform: rotate(180deg);
}
button.network span:after {
    content: "";
    background: var(--primary);
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 320 512'%3E%3C!--!Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free Copyright 2025 Fonticons, Inc.--%3E%3Cpath d='M137.4 374.6c12.5 12.5 32.8 12.5 45.3 0l128-128c9.2-9.2 11.9-22.9 6.9-34.9s-16.6-19.8-29.6-19.8L32 192c-12.9 0-24.6 7.8-29.6 19.8s-2.2 25.7 6.9 34.9l128 128z'/%3E%3C/svg%3E");
    display: block;
    width: 8px;
    height: 13px;
}

.network-menu {
    display: none;
    background: #fff;
    top: 56px;
    z-index: 12;
    box-shadow: rgb(49 53 59 / 12%) 0 1px 3px 0;
    max-height: 355px;
    overflow-y: auto;
    padding: 15px 8px;
    left: 0;
    position: absolute;
    right: 0;
    margin: 0 auto;
}
.network-menu.show {
    display: block;
}
.network-menu nav {
    width: 1024px;
    margin: 0 auto;
}
.network-menu li {
    width: calc(25% - 9px);
}

.network-menu li a {
    font-weight: 700;
    font-family: var(--font2);
}
.network-menu li a:hover {
    color: var(--primary);
}
.network-menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 10px;
}

.menubar {
    height: 36px;
    width: 36px;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-direction: column;
    color: var(--primary);
}
.header-menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: flex-start;
    gap: 20px;
    flex-wrap: wrap;
}

.header-menu .sub-menu {
    display: none;
}

.header-menu ul.widget > li > a {
    position: relative;
    overflow-y: hidden;
    padding-bottom: 10px;
    font-family: Inter,sans-serif;
    font-size: 16px;
    font-weight: 700;
    line-height: 24px;
    color: #0b0b0b;
}

.header-menu {
    padding-top: 10px;
    height: 44px;
}

.header-menu ul.widget > li:hover > a, .header-menu ul.widget > li.current-menu-item > a {
    color: var(--primary) !important;!i;!;
}
.header-menu ul.widget > li.current-menu-item > a:after {
    content: "";
    position: absolute;
    bottom: 6px;
    left: 0;
    width: 100%;
    height: 4px;
    border-radius: 4px 4px 0 0;
    background-color: var(--primary);
    transform: translateY(8px);
    transition: .3s ease-in-out;
}
.header-menu ul.widget > li.menu-item-has-children > a:after {
    content: "";
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 320 512'%3E%3C!--!Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free Copyright 2025 Fonticons, Inc.--%3E%3Cpath d='M137.4 374.6c12.5 12.5 32.8 12.5 45.3 0l128-128c9.2-9.2 11.9-22.9 6.9-34.9s-16.6-19.8-29.6-19.8L32 192c-12.9 0-24.6 7.8-29.6 19.8s-2.2 25.7 6.9 34.9l128 128z'/%3E%3C/svg%3E");
    display: block;
    width: 8px;
    height: 13px;
    background-repeat: no-repeat;
    background-position: center;
}
.header-menu ul.widget > li.menu-item-has-children > a {
    display: flex;
    align-items: center;
    gap: 10px;
}
.header-menu ul.widget > li:hover > .sub-menu {
    display: block;
    max-height: 320px;
    overflow-y: auto;
    padding-top: 8px;
    padding-bottom: 8px;
    box-shadow: 0 10px 15px -3px #0000001a,0 4px 6px -4px #0000001a;
}
.header-menu ul.widget > li > .sub-menu {
    transition: max-height .3s ease, padding .3s ease;
    overflow: hidden;
    max-height: 0;
    min-width: 150px;
    position: absolute;
    top: 34px;
    right: 0;
    background: #f0f0f0;
    z-index: 9;
}

.header-menu ul.widget > li {
    position: relative;
}

.header-menu ul.widget > li > .sub-menu a {
    position: relative;
    overflow-y: hidden;
    padding: 8px 15px;
    font-family: Inter,sans-serif;
    font-size: 14px;
    font-weight: 700;
    line-height: 24px;
    color: #0b0b0b;
    display: block;
}
.header-menu ul.widget > li > .sub-menu a:hover {
    color: var(--primary) !important;!i;!;
}
.postinfo {
    background: #f4f4f4;
    padding: 10px 0;
    display: none;
}
.postinfo.show {
    display: block;
}
.postinfo-row {
    display: flex;
    align-items: center;
    gap: 15px;
}

.postinfo-title {
    font-size: 14px;
    font-family: var(--font2);
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
}

.postinfo .share-title {
    display: block;
}
.main {
    margin-top: 20px;
    margin-bottom: 20px;
}


.billboard .widget {
    margin-bottom: 30px;
    border-radius: 7px;
    overflow: hidden;
}
.breaking-title {
    background: #171513;
    z-index: 1;
    display: flex;
    height: 100%;
    justify-content: center;
    align-items: center;
    flex: 1;
    white-space: nowrap;
    padding: 0 20px;
}
.breaking:after {
    content: "";
    width: 60px;
    height: 100%;
    top: 0;
    right: 0;
    z-index: 1;
    background: var(--primary);
    background: -moz-linear-gradient(left,var(--primary) 25%,rgba(52,52,52,0) 100%);
    background: -webkit-linear-gradient(left,var(--primary)  25%,rgba(52,52,52,0) 100%);
    background: linear-gradient(to left,var(--primary) 25%,rgba(52,52,52,0) 100%);
    position: absolute;
}

.breaking {
    position: relative;
    background: #171513;
}
.breaking-content {
    background: var(--primary);
}
.breaking, .breaking a {
    font-family: var(--font2);
    font-size: 14px;
    font-weight: 700;
    font-style: normal;
    line-height: 21px;
    color: #fff;
}

.breaking-box {
    display: flex;
    overflow: hidden;
    flex-wrap: nowrap;
    align-items: center;
    height: 40px;
}
.marquee a {
    margin-right: 100px;
    height: 40px;
    display: inline-flex;
    align-items: center;
}
.headline-row {
    display: flex;
    flex-wrap: wrap;
}

.headline-big, .headline-small {
    width: 50%;
}

.headline-big .media-image {
    height: 0;
    width: 100%;
    padding-bottom: 80.5%;
    border-radius: 16px;
    margin-bottom: 15px;
}
body.category .headline-big .media {
    display: flex;
    align-items: center;
    gap: 15px;
}
body.category .headline-big {
    width: 100%;
    margin-bottom: 30px;
}

body.category .headline .media-image {
    width: 100%;
    padding-bottom: 60%;
}
.media-category {
    color: var(--primary);
    font-weight: 700;
    font-family: var(--font1);
    font-style: normal;
}

.headline-big .media-title {
    font-family: var(--font2);
    font-size: 24px;
    margin-top: 10px;
}
body.category 
 .headline-big .media-title {
    -webkit-line-clamp: 4;
}
.headline-small {
    padding-left: 16px;
    gap: 16px;
    display: flex;
    flex-direction: column;
}
.headline-small .media-category {
    font-size: 12px;
}
.headline-small .media-image {
    height: 0;
    width: 128px;
    padding-bottom: 17.7%;
    border-radius: 8px;
}

.headline-small .media {
    display: flex;
    align-items: center;
    gap: 16px;
}

.headline-small .media-title {
    font-size: 15px;
    margin-top: 5px;
    font-family: var(--font2);
}
.headline-area .widget {
    margin-bottom: 30px;
}
.headline-big .media-text {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 3;
    color: #fff;
    background: #000;
    background: -moz-linear-gradient(top,rgba(0,0,0,.8) 0,rgba(255,255,255,0) 100%);
    background: -webkit-linear-gradient(top,rgba(0,0,0,.8) 0,rgba(255,255,255,0) 100%);
    background: linear-gradient(to top,rgba(0,0,0,.8) 0,rgba(255,255,255,0) 100%);
    padding: 0 16px 16px;
    border-radius: 0 0 16px 16px;
}

.headline-big .media-link {
    color: #fff;
}
.headline-big .media-image {
    margin-bottom: 0;
    padding-bottom: 78%;
}
.article-row {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
.article {
    width: 696px;
    display: flex;
    flex-wrap: wrap;
}
.article-wrapper {
    width: 100%;
}
.sidebar {
    width: 300px;
}
.header-box:before {
    content: "";
    width: 5px;
    height: 20px;
    display: block;
    background: var(--primary);
    border-radius: 50px;
}

.header-box {
    display: flex;
    gap: 10px;
    align-items: center;
}
.widget-title {
    margin: 0;
    font-family: var(--font2);
    font-weight: 700;
    font-size: 20px;
}
.sidebar .widget-title {
    font-size: 18px;
}
.widget-header {
    margin-bottom: 16px;
    display: flex;
    justify-content: space-between;
}
.header-more {
    background: var(--primary);
    color: #fff;
    padding: 4px 16px;
    border-radius: 32px;
    font-size: 12px;
    font-weight: 700;
    line-height: 21px;
    display: inline-block;
    font-family: var(--font2);
}
.grid .grid-box {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.grid .media {
    width: calc(33.3333333333% - 11px);
}
.grid .widget-content, .slider .widget-content {
    background-color: #f4f4f4;
    box-shadow: 0 6px 12px rgba(28, 39, 49, .05);
    border-radius: 8px;
    padding: 16px;
}

.grid-box .media-image {
    height: 0;
    width: 100%;
    padding-bottom: 68.5%;
    border-radius: 8px;
    margin-bottom: 10px;
}
.grid-box .media-title {
    font-size: 14px;
    margin-top: 6px;
    font-family: var(--font2);
}
.grid-box .media-category {
    font-size: 12px;
}
.slider .grid-item {
    padding: 0 8px;
}
.slider .arrow-item {
    position: absolute;
    bottom: -32px;
    background: #333;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    color: #fff;
    border-radius: 50em;
}

.slider .arrow-item.arrow-left {
    left: 0;
    margin-left: calc(50% - 25px);
}

.slider .arrow-item.arrow-right {
    right: 0;
    margin-right: calc(50% - 25px);
}
.slider .arrow-item.slick-disabled {
    cursor: default;
    background: #c1c1c1;
}
.slider .arrow-item svg {
    height: 15px;
}

.slider .widget-content {
    padding-bottom: 40px;
    padding-left: 8px;
    padding-right: 8px;
}
.video .video-box {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.video .media {
    width: calc(25% - 12px);
}

.video .media-title {
    font-size: 14px;
    font-family: var(--font2);
    font-weight: 700;
}


.video .media:first-child {
    width: 100%;
}

.video .media-image {
    height: 0;
    width: 100%;
    padding-bottom: 60%;
    border-radius: 8px;
    margin-bottom: 15px;
}
.video .media:first-child .media-image {
    border-radius: 16px;
}
.video .media:first-child .media-title {
    font-size: 24px;
}

.widget.video {
    display: flex;
    flex-direction: column;
    background-color: #030303;
    box-shadow: 0 6px 12px rgb(0 0 0 / 5%);
    border-radius: 8px;
    padding: 16px;
}

.video .media-link {
    color: #fff;
}

.video .widget-title {
    color: #fff;
}
.latest-area > .widget {
    margin-bottom: 30px;
}
.indeks .media {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.indeks .media-image {
    height: 0;
    width: 164px;
    padding-bottom: 15.7%;
    border-radius: 8px;
}
.indeks .media-category {
    font-size: 12px;
}
.media-more {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.media-date {
    font-size: 10px;
    font-weight: 400;
    color: #525252;
}
.indeks .media-title {
    font-size: 20px;
    font-family: var(--font2);
    margin-top: 10px;
}

.media-link {
    transition: color .3s ease-in-out;
}

.indeks .widget-content {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.sidebar .widget {
    margin-bottom: 30px;
}
.sidebar .widget:last-child {
    position: sticky;
    top: 110px;
}
.single .sidebar .widget:last-child {
    top: 160px;
}
.media-counter {
    font-family: var(--font2);
    font-style: normal;
    font-size: 18px;
    font-weight: 700;
    color: transparent;
    -webkit-text-fill-color: transparent;
    -webkit-text-stroke: 0.5px;
    -webkit-text-stroke-color: #0b0b0b;
    width: 30px;
}
.media:hover .media-counter {
    -webkit-text-fill-color: var(--primary);
    -webkit-text-stroke-color: var(--primary);
}
.populartag .media {
    display: flex;
    align-items: center;
    gap: 10px;
}

.populartag .media-text a {
    font-size: 16px;
    width: 100%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    font-weight: 700;
    line-height: 24px;
}

.populartag .widget-content {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    gap: 10px;
}
.widget.opini {
    background-color: #f4f4f4;
    box-shadow: 0 6px 12px rgba(28, 39, 49, .05);
    border-radius: 8px;
    padding: 16px;
}
.opini .media {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px;
}

.opini .media-image {
    width: 60px;
    padding-bottom: 60px;
    border-radius: 50em;
}

.opini .media-title {
    font-size: 14px;
    font-family: var(--font2);
    margin-top: 10px;
}

.opini .media-author {
    font-size: 11px;
    color: var(--primary);
    font-weight: 400;
}

.opini .widget-content {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.opini .media:nth-child(2n+2) {
    display: flex;
    flex-direction: row-reverse;
}

.opini .media:hover {
    background-color: #e3e3e3;
    border-radius: 8px;
}

.opini .media:hover .media-link {
    color: unset !important;
}

.opini .media-image img {
    transform: none !important;
}
.popularpos .media-title {
    font-size: 14px;
    font-family: var(--font2);
    font-weight: 700;
}

.popularpos .media {
    display: flex;
}

.popularpos .widget-content {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.popularpos .media-category {
    font-size: 12px;
}
.list .media-title a, .list2 .media-title a, .list3 .media-title a {
    color: #fff;
}

.list .widget-content, .list2 .widget-content, .list3 .widget-content {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.list .widget-title, .list2 .widget-title, .list3 .widget-title {
    color: #fff;
}
.list .media-title, .list2 .media-title, .list3 .media-title {
    font-size: 14px;
    font-family: var(--font2);
    font-weight: 700;
}
.list .header-box, .list2 .header-box, .list3 .header-box {
    display: flex;
    justify-content: center;
    width: 100%;
}


.list .header-box:before, .list2 .header-box:before, .list3 .header-box:before {
    display: none;
}
.list .media-image, .list3 .media-image {
    height: 0;
    width: 90px;
    padding-bottom: 90px;
    border-radius: 8px;
}

.list .media, .list3 .media {
    display: flex;
    align-items: center;
    gap: 10px;
}
.list3 .media:first-child {
    flex-direction: column;
}
.list, .list2, .list3 {
    background-color: #030303;
    box-shadow: 0 6px 12px rgba(28, 39, 49, .05);
    border-radius: 8px;
    padding: 16px;
}
.list2 .media-image, .list3 .media:first-child .media-image {
    height: 0;
    width: 100%;
    padding-bottom: 60%;
    border-radius: 8px;
    margin-bottom: 10px;
}
.widget-footer a {
    display: block;
    text-align: center;
    margin-top: 15px;
    background: var(--primary);
    color: #fff;
    padding: 10px 16px;
    border-radius: 32px;
    font-size: 14px;
    font-weight: 700;
    line-height: 21px;
    font-family: var(--font2);
}
.grid .widget-footer a {
    display: inline-flex;
    width: 190px;
    justify-content: center;
}

.grid .widget-footer {
    display: flex;
    justify-content: center;
}

.widget-footer a:hover, .header-more:hover, .trigger:hover {
    background: var(--hover);
}
.trigger {
    display: inline-block;
    text-align: center;
    background: var(--primary);
    color: #fff;
    padding: 10px 16px;
    border-radius: 32px;
    font-size: 14px;
    font-weight: 700;
    line-height: 21px;
    font-family: var(--font2);
}

.info {
    text-align: center;
    padding-top: 30px;
}
.video .media-image:before, .list .media-image:before, .list2 .media-image:before, .list3 .media-image:before {
    background: #383838;
}

.video .media-image:after, .list .media-image:after, .list2 .media-image:after, .list3 .media-image:after {
    background-image: linear-gradient(90deg, rgb(51 51 51) 0, rgba(51, 51, 51, .2) 20%, rgba(51, 51, 51, .5) 60%, rgba(51, 51, 51, 0));
}
.breadcrumb {
    font-size: 14px;
    margin-bottom: 15px;
}
.breadcrumb ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
}

.breadcrumb ul li {
    display: flex;
    align-items: center;
}

.breadcrumb ul li svg {
    height: 9px;
    width: 9px;
    margin: 0 10px;
    color: #9a9a9a;
}

.breadcrumb a {
    color: #777;
}

.breadcrumb ul li:last-child a {
    color: #0b0b0b;
    font-weight: 700;
}
.article-header {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 15px;
}
.article-header h1 {
    margin: 0;
    font-size: 30px;
    font-family: var(--font2);
    line-height: 1.3;
}
.article-date {
    color: #777;
    font-size: 13px;
}
.share-title {font-family: var(--font2);display: none;}
.share ul {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
    gap: 5px;
}
.share-box a {
    background: #919191;
    color: #fff;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50em;
    position: relative;
}
.share-box svg {
    height: 16px;
}
.share-box a.facebook {
    background: #3b5998;
}

.share-box a.twitter {
    background: #000;
}

.share-box a.whatsapp {
    background: #25d366;
}

.share-box a.telegram {
    background: #0088cc;
}
.share-box a.copied::before {
    content: attr(data-title);
    width: auto;
    background: #333;
    padding: 2px 5px;
    border-radius: 4px;
    font-size: 10px;
    white-space: nowrap;
    top: 40px;
    position: absolute;
    color: #fff;
    text-align: center;
}
.share-box a.instagram {
    background: #5851db;
    background: -moz-radial-gradient(left bottom,ellipse cover,#ffdc80 15%,#e1306c 55%,#5851db 100%);
    background: -webkit-radial-gradient(left bottom,ellipse cover,#ffdc80 15%,#e1306c 55%,#5851db 100%);
    background: radial-gradient(ellipse at left bottom,#ffdc80 15%,#e1306c 55%,#5851db 100%);
}
.share {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 500;
}
.article-author-avatar .media-image {
    width: 32px;
    height: 0;
    padding-bottom: 32px;
    display: block;
    border-radius: 50em;
}

.article-author {
    display: flex;
    align-items: center;
    gap: 6px;
}

.article-author-name a {
    font-family: var(--font2);
    font-size: 13px;
    display: flex;
    align-items: center;
    gap: 5px;
}
.author-verified {
    background-image: url("data:image/svg+xml,%0A%3Csvg viewBox='0 0 22 22' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M20.396 11c-.018-.646-.215-1.275-.57-1.816-.354-.54-.852-.972-1.438-1.246.223-.607.27-1.264.14-1.897-.131-.634-.437-1.218-.882-1.687-.47-.445-1.053-.75-1.687-.882-.633-.13-1.29-.083-1.897.14-.273-.587-.704-1.086-1.245-1.44S11.647 1.62 11 1.604c-.646.017-1.273.213-1.813.568s-.969.854-1.24 1.44c-.608-.223-1.267-.272-1.902-.14-.635.13-1.22.436-1.69.882-.445.47-.749 1.055-.878 1.688-.13.633-.08 1.29.144 1.896-.587.274-1.087.705-1.443 1.245-.356.54-.555 1.17-.574 1.817.02.647.218 1.276.574 1.817.356.54.856.972 1.443 1.245-.224.606-.274 1.263-.144 1.896.13.634.433 1.218.877 1.688.47.443 1.054.747 1.687.878.633.132 1.29.084 1.897-.136.274.586.705 1.084 1.246 1.439.54.354 1.17.551 1.816.569.647-.016 1.276-.213 1.817-.567s.972-.854 1.245-1.44c.604.239 1.266.296 1.903.164.636-.132 1.22-.447 1.68-.907.46-.46.776-1.044.908-1.681s.075-1.299-.165-1.903c.586-.274 1.084-.705 1.439-1.246.354-.54.551-1.17.569-1.816zM9.662 14.85l-3.429-3.428 1.293-1.302 2.072 2.072 4.4-4.794 1.347 1.246z' fill='%231d9bf0'%3E%3C/path%3E%3C/svg%3E%0A");
    width: 20px;
    height: 20px;
    display: inline-block;
    background-repeat: no-repeat;
}

.article-subheader {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: -10px;
}
.article-detail > .widget {
    margin-bottom: 30px;
}
.article-featured img, .article-text figure img {
    width: 100%;
    height: auto;
    border-radius: 16px;
    display: block;
}
.article-text figure {
    max-width: 100%;
}
.article-text {
    font-size: 16px;
    font-family: Inter, sans-serif;
    max-width: 696px;
}

.article-detail figcaption {
    font-family: Inter, sans-serif;
    font-size: 12px;
    color: #777;
    margin-top: 10px;
}
.article-detail .article-content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
}
.article-content.notfull .article-box {
    max-width: 520px;
}
.article-detail .article-adv {
    margin-left: 16px;
    z-index: 2;
    width: 160px;
    margin-top: 8px;
}
.article-detail .sticky-post {
    z-index: 2;
    position: sticky;
    top: 160px;
}
.bacajuga {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    font-family: var(--font2);
    align-items: center;
    background: #f4f4f4;
    padding: 15px;
    border-radius: 8px;
    border-left: 7px solid var(--primary);
    transition: .3s ease-in-out;
}
.bacajuga:hover {
    transform: translate(-1px,-4px);
    box-shadow: 0 4px 4px rgba(0,0,0,.25);
}
.bacajuga .media-text {
    display: flex;
    flex-direction: column;
}

.bacajuga .media-image {
    width: 80px;
    padding-bottom: 80px;
    height: 0;
    border-radius: 8px;
}
.bacajuga strong {
    color: var(--primary);
    font-size: 14px;
    margin-bottom: 5px;
}

.bacajuga .media-link {
    font-size: 16px;
    display: -webkit-box;
    margin: 0;
    overflow: hidden;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}
.parallxads {
    margin-right: auto;
    margin-left: auto;
    width: 100%;
    height: 300px;
    position: relative;
    left: 0;
    right: 0;
    margin-bottom: 0;
    background: #0d0d0d;
}

.parallxads:before {
    content: var(--txtparallax);
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    display: block;
    color: #fff;
    text-align: center;
    text-transform: uppercase;
    font-weight: 700;
    font-size: 9px;
    z-index: 1;
    background: var(--primary);
    padding: 2px 0;
    font-family: var(--font2);
    letter-spacing: 1px;
}

.parallxads-wrap {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    clip: rect(auto,auto,auto,auto);
}

.parallxads-box {
    height: auto;
    position: fixed;
    top: 110px;
    -moz-transform: translateZ(0);
    -webkit-transform: translateZ(0);
    -ms-transform: translateZ(0);
    -o-transform: translateZ(0);
    transform: translateZ(0);
    margin: 0 auto;
    width: 100%;
    text-align: center;
    max-width: 696px;
}

.notfull .parallxads-box {
    max-width: 520px;
}
.pagination-post {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 15px;
    align-items: center;
    margin-top: 16px;
    margin-bottom: 16px;
    background: #f4f4f4;
    box-shadow: 0 6px 12px rgba(28, 39, 49, .05);
    border-radius: 8px;
    padding: 16px;
}

.paginationPostNum {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 7px;
}

span.btn-next, .showall-page a {
    flex-wrap: wrap;
    gap: 5px;
    background: #e1e0e0;
    height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 700;
    border-radius: 50em;
    font-size: 12px;
    padding: 0 13px;
}

span.btn-next svg {
    height: 12px;
}

.paginationPostLabel {
    font-family: var(--font2);
}

.paginationPostLink {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 7px;
}

.paginationPostLink .post-page-numbers {
    background: #e3e3e3;
    width: 30px;
    height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 700;
    border-radius: 50em;
    font-size: 12px;
}
.paginationPostLink .post-page-numbers.current, .paginationPostLink .post-page-numbers:hover, span.btn-next:hover, .showall-page a:hover {
    background: var(--primary) !important;!i;!;
    color: #fff;
}
.tag-post .widget {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 15px;
}

.tag-post .widget .widget-header {margin: 0;}

.tag-post .widget .header-box:before {
    display: none;
}

.tag-post .widget .widget-content ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 7px;
    flex-wrap: wrap;
}
.tag-post li {
    color: var(--primary);
    border: 1px solid var(--primary);
    border-radius: 50px;
    display: block;
}

.tag-post li:hover {
    background: var(--primary);
}

.tag-post li:hover a {
    color: #fff;
}
.tag-post li a {
    max-width: 150px;
    overflow: hidden;
    display: block;
    position: relative;
    text-overflow: ellipsis;
    white-space: nowrap;
    color: var(--primary);
    padding: 6px 10px;
}

.tag-post .widget .widget-content {
    flex: 1;
}

.tag-post {
    margin-top: 30px;
    margin-bottom: 30px;
}
.avatar-image {
    width: 34px;
    height: 0;
    padding-bottom: 30px;
    border-radius: 50em;
    overflow: hidden;
    margin-left: -16px;
    border: 2px solid #fff;
    z-index: 1;
}

.redaksi {
    padding: 10px;
    background: #f7f7f7;
    border-radius: 4px;
    margin-top: 30px;
    margin-bottom: 30px;
}
.redaksi-header {
    display: flex;
    flex: 1 1 0%;
    flex-direction: row;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: center;
    justify-content: space-between;
}
.redaksi-content.hide {
    display: none;
}
.redaksi-avatar {
    flex: 1;
}
.btn-redaksi.show i {
    transform: rotate(180deg);
}
.redaksi .redaksi-avatar-box .image-ava {
    margin-right: -14px;
    display: inline-block;
    width: 24px;
    height: 24px;
    font-size: 14px;
    font-weight: 500;
    border-radius: 50%;
    background: #eee;
    text-align: center;
    vertical-align: middle;
    overflow: hidden;
    position: relative;
}
.redaksi .author-image img, .redaksi .redaksi-avatar-box .image-ava img {
    display: block;
    object-fit: cover;
    width: 100%;
    height: 100%;
    position: absolute;
}
.redaksi .btn-redaksi {
    appearance: none;
    user-select: none;
    padding: 0;
    transition: .2s;
    position: relative;
    background: 0 0;
    border: 1px solid transparent;
    border-radius: 3px;
    width: auto;
    vertical-align: middle;
    text-align: center;
    text-decoration: none;
    display: flex;
    flex-direction: row-reverse;
    -webkit-box-align: center;
    align-items: center;
    cursor: pointer;
}
.btn-redaksi .icon-arrow {
    display: flex;
    margin-left: 2px;
    -webkit-box-pack: center;
    justify-content: center;
    filter: invert(0%) sepia(6%) saturate(26%) hue-rotate(336deg) brightness(103%) contrast(100%);
    width: 18px;
    max-width: 18px;
    height: 18px;
    background-position: center;
    background-size: 12px;
    background-repeat: no-repeat;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512'%3E%3C!--! Font Awesome Pro 6.2.1 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license (Commercial License) Copyright 2022 Fonticons, Inc. --%3E%3Cpath d='M233.4 406.6c12.5 12.5 32.8 12.5 45.3 0l192-192c12.5-12.5 12.5-32.8 0-45.3s-32.8-12.5-45.3 0L256 338.7 86.6 169.4c-12.5-12.5-32.8-12.5-45.3 0s-12.5 32.8 0 45.3l192 192z'/%3E%3C/svg%3E");
}
.redaksi .label-btn {
    display: block;
    -webkit-box-pack: center;
    font-size: 13px;
    font-weight: 600;
    align-items: center;
    height: 18px;
    line-height: 1.6;
}
.redaksi .redaksi-content {
    margin-top: 8px;
}
.redaksi .author-item {
    display: flex;
    flex-direction: row;
    -webkit-box-align: center;
    align-items: center;
    padding-top: 8px;
    padding-bottom: 8px;
}
.redaksi .author-image {
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: center;
    justify-content: center;
    padding: 0;
    width: 48px;
    height: 48px;
    background: #eee;
    color: #fff;
    border-radius: 50%;
    margin-right: 6px;
    overflow: hidden;
    position: relative;
}
.redaksi .author-image a {
    display: block;
    height: 100%;
    width: 100%;
}
.redaksi .author-text {
    display: flex;
    flex: 1 1 0%;
    flex-direction: column;
    padding-right: 8px;
}
.redaksi .author-name {
    display: flex;
    flex-direction: row;
    -webkit-box-align: center;
    align-items: center;
    font-size: 14px;
    font-weight: 600;
}
.redaksi .author-name svg {
    color: var(--primary);
    height: 14px;
    margin-left: 6px;
    display: block;
}
.redaksi .author-role {
    color: #999;
    font-size: 12px;
    line-height: 16px;
    font-weight: 400;
}
.comment-respond {
    border-radius: 12px
}
.comment-reply-title small a {
    text-transform: capitalize;
    margin-left: 5px;
    display: block;
    color: var(--primary);
    font-size: 14px;
}
.comment-notes {
    line-height: 1.4;
    font-size: 13px;
    color: #6f6f6f
}
input#author,input#email {
    margin: 0 0 10px;
    background: #fff;
    width: 100%;
    padding: 10px 16px;
    font-size: 13px;
    border-radius: 16px;
    box-shadow: 0 2px 4px 0 rgba(0,0,0,.15);
}
textarea#comment {
    background: #fff;
    border: 1px solid #e6e6e6;
    width: 100%;
    resize: unset;
    font-size: 13px;
    padding: 15px 15px 60px;
    height: 166px!important;
    border-radius: 16px;
    -webkit-box-shadow: 0 2px 4px 0 rgb(0 0 0 / 15%);
    box-shadow: 0 2px 4px 0 rgb(0 0 0 / 15%);
    overflow: hidden;
}
input#author,input#email,textarea#comment:focus {
    outline: 0;
    border: 1px solid #e6e6e6;
}
.commentBox {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start
}
p.form-submit {
    margin: 0;
    border-radius: 0 0 14px 14px;
    width: calc(100% - 2px);
    resize: unset;
    text-align: right;
    padding: 10px;
    border-top: 1px solid #e6e6e6;
    position: absolute;
    right: 1px;
    bottom: 8px;
    background: #eaeaea;
    left: 1px
}

p.form-submit input[type=submit] {
    font-size: 14px;
    display: inline-block;
    padding: 7px 12px;
    line-height: 1.4;
    cursor: pointer;
    vertical-align: top;
    background: var(--primary);
    border-radius: 50em;
    color: #fff;
    border: 0;
    font-family: var(--font2);
}
.comment-reply-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    margin: 0;
    font-family: var(--font2);
    font-weight: 700;
    font-size: 20px;
}
.notif {
    line-height: 1.4;
    font-size: 14px;
    padding: 15px;
    margin: -16px;
    border: 0;
    text-align: center
}
.notif-header {
    font-weight: 700;
    font-family: var(--font2);
}
.notif-image svg {
    height: 100px;
    color: #d7d7d7;
}
h2.comments_title {
    display: block;
    border: none;
    margin: 10px 10px 20px;
    padding: 0;
    font-weight: 700;
    line-height: 1.4;
    font-size: 18px;
    font-family: var(--font2);
}
.commentBodyText,.notfound-desc,p.logged-in-as {
    font-size: 13px;
    color: #666;
}
.commentsArea>ol {
    padding: 0;
    margin: 0;
    list-style: none
}
.commentsArea li {
    margin: 0 0 15px;
    padding: 15px 0;
    border-bottom: 1px solid #e6e6e6
}
.commentAvatar {
    margin: 0 10px 0 0;
    width: 50px;
    height: 50px;
    position: relative;
    overflow: hidden;
    border-radius: 50em;
    background: #e4e4e4;
    float: left
}
.commentAvatar img {
    display: block;
    object-fit: cover;
    width: 100%;
    z-index: 2;
    position: relative;
    height: 100%
}
.commentBodyText {
    line-height: 1.4;
    display: block;
    word-wrap: break-word;
    margin: 5px 0 0;
    color: #222;
    font-family: Inter, sans-serif;
    font-size: 14px;
}
.commentAuthorName {
    font-size: 14px;
    font-weight: 700;
    font-family: var(--font2);
}
.commentHeader time {
    font-size: 10px;
    color: #777;
}
.commentBodyFooter {
    font-size: 12px;
    color: #a7a7a7;
    margin: 10px 0 0;
    display: flex;
    align-items: center
}
.commentBodyFooter a {
    margin-right: 15px;
    color: #777;
}
.comment-btnshare {
    display: flex;
    color: #a7a7a7;
    align-items: center
}
.comment-share-button {
    display: flex;
    align-items: center
}
.comment-share-button a {
    width: 22px;
    height: 22px;
    font-size: 14px;
    vertical-align: middle;
    background: #a7a7a7;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -o-border-radius: 5px;
    border-radius: 5px;
    display: flex;
    margin: 0 0 0 5px;
    color: #fff;
    line-height: 14px;
    justify-content: center;
    align-items: center
}
.comments-pagination a,.comments-pagination span,.notfound-button a {
    position: relative;
    text-align: center;
    cursor: pointer;
    vertical-align: top;
    background: var(--primary)
}
.commentBodyModeration {
    background: #a7a7a7;
    color: #fff;
    padding: 3px 7px;
    border-radius: 3px;
    font-size: 12px
}
.commentsArea ol,.commentsArea ul {
    list-style: none
}
.commentBodyText p {
    display: inline
}
.commentReplyTo {
    display: inline-flex;
    font-weight: 700;
    align-items: flex-start;
    flex-wrap: wrap
}
.commentReplyTo svg {
    height: 14px;
    margin-right: 6px
}
.comments-pagination {
    display: block;
    padding-left: 0;
    margin: 20px 0;
    border-radius: 4px;
    text-align: center;
    position: relative
}
.comments-pagination a,.comments-pagination span {
    font-size: 16px;
    display: inline-flex;
    line-height: 1.4;
    padding: 8px 16px;
    border: 1px solid transparent;
    border-radius: 4px;
    color: #fff;
    align-items: center;
    width: auto;
    flex-wrap: wrap
}
.comments-pagination span.current {
    z-index: 2;
    color: #fff;
    cursor: default;
    background-color: var(--primary);
    border-color: var(--primary)
}
.comments-pagination a svg,.notfound-button svg {
    height: 14px;
    margin-left: 10px
}
.comment-form-cookies-consent label {
    font-size: 13px;
    margin-left: 35px;
    margin-top: 3px;
}
.comment-form-cookies-consent {
    display: flex;
    align-items: center;
    position: relative;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    cursor: pointer;
}
.comment-form-cookies-consent #wp-comment-cookies-consent {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    width: 100%;
    height: 100%;
}
.comment-form-cookies-consent label:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 25px;
    width: 25px;
    background-color: #c9c9c9;
    display: block;
    cursor: pointer;
    font-size: 17px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    border-radius: 5px;
}
.comment-form-cookies-consent #wp-comment-cookies-consent:checked ~ ::before {
    content: "";
    background: var(--primary);
}
.comment-form-cookies-consent #wp-comment-cookies-consent:checked ~ ::after {
    left: 10px;
    top: 6px;
    width: 7px;
    height: 12px;
    border: solid white;
    border-width: 0 3px 3px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
    content: "";
    position: absolute;
    top: 5px;
    left: 9px;
}
#comments,#respond,.comment-respond {
    padding: 15px;
    overflow: hidden;
    background: #f4f4f4;
    box-shadow: 0 6px 12px rgba(28, 39, 49, .05);
    border-radius: 8px;
    margin-bottom: 30px;
}

.comment-form {
    position: relative;
}

.commentBody {
    flex: 1;
}
.sticky-ads-right {
    position: fixed;
    top: 110px;
    right: 49%;
    margin-right: -680px;
    z-index: 9;
    text-align: left;
    width: 160px;
}
.sticky-ads-left {
    position: fixed;
    top: 110px;
    left: 49%;
    margin-left: -680px;
    z-index: 9;
    text-align: left;
    width: 160px;
}
.single .sticky-ads-left, .single .sticky-ads-right {
    top: 160px;
}
.banner {
    position: relative;
    display: block;
    margin: 0 auto;
}
.banner:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    background: #e1e0e0;
    background-repeat: no-repeat;
    background-position: center;
    background-size: 22px;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 15 15' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M5 6C4.44772 6 4 6.44772 4 7V8H6V7C6 6.44772 5.55228 6 5 6Z' fill='%23999'/%3E%3Cpath d='M11 8H9.5C9.22386 8 9 8.22386 9 8.5C9 8.77614 9.22386 9 9.5 9H11V8Z' fill='%23999'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M0 4.5C0 3.11929 1.11929 2 2.5 2H12.5C13.8807 2 15 3.11929 15 4.5V10.5C15 11.8807 13.8807 13 12.5 13H2.5C1.11929 13 0 11.8807 0 10.5V4.5ZM4 10V9H6V10H7V7C7 5.89543 6.10457 5 5 5C3.89543 5 3 5.89543 3 7V10H4ZM11 7H9.5C8.67157 7 8 7.67157 8 8.5C8 9.32843 8.67157 10 9.5 10H12V5H11V7Z' fill='%23999'/%3E%3C/svg%3E");
}
.banner.ads970250 {
    width: 970px;
    max-width: 100%;
    height: 250px;
}
.banner.ads160600 {
    width: 160px;
    max-width: 100%;
    height: 600px;
}
.banner.ads72890 {
    width: 728px;
    max-width: 100%;
    height: 90px;
}
.banner.ads300600 {
    width: 300px;
    max-width: 100%;
    height: 600px;
}
.banner.ads300300 {
    width: 300px;
    max-width: 100%;
    height: 300px;
}
footer.footer {
    background: #030303;
    border-top: 5px solid var(--primary);
    padding: 30px 0;
    color: #fff;
}
.social .social-box {
    display: flex;
    gap: 15px;
}

.social svg {
    width: 16px;
    height: 16px;
    color: #fff;
}

.social a {
    background: var(--primary);
    width: 32px;
    height: 32px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50em;
}
.footer-row {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.footer-left {
    width: 40%;
}

.footer-right {
    width: calc(60% - 30px);
    display: flex;
    justify-content: space-around;
    gap: 30px;
}
.footer .widget-title {
    font-size: 16px;
    font-family: var(--font1);
}

.footer .widget {
    margin-bottom: 30px;
}

.footer-left .widget {
    text-align: center;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.footer-left .widget-header {
    width: 100%;
    display: flex;
    justify-content: center;
}

.footer-left .widget img {
    height: 40px !important;
    width: auto;
}
.footer .widget ul.menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer .widget ul.menu a {
    color: #bdbdbd;
    font-size: 12px;
    display: block;
    padding: 5px 0;
}

.footer .widget ul.menu .sub-menu {
    display: none;
}
.widget.app .widget-content {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
}

.widget.app .widget-content a, .widget.app .widget-content img {
    display: block;
}
.ads-sticky-bottom {
    margin: 0 auto;
    padding: 0;
    position: fixed;
    bottom: 0;
    width: 728px;
    z-index: 11;
    height: auto;
    text-align: center;
    background: hsla(0,0%,100%,.8);
    min-height: 60px;
    max-height: 90px;
    left: 0;
    right: 0
}
.btn-ads-close {
    position: absolute;
    background: var(--primary);
    display: flex;
    right: calc(50% - 35px);
    top: -24px;
    padding: 2px 2px 2px 10px;
    line-height: 1;
    color: #fff;
    cursor: pointer;
    border-radius: 50em;
    align-items: center;
    font-weight: 600;
    font-size: 11px;
    text-transform: uppercase;
}
.ads-close-icon {
    position: relative;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: flex;
    width: 17px;
    height: 17px;
    background: #e3e2e2;
    align-items: center;
    justify-content: center;
    border-radius: 50em;
    margin-left: 5px;
}
.ads-close-icon:after,.ads-close-icon:before {
    content: "";
    position: absolute;
    top: 45%;
    right: 2px;
    width: 65%;
    height: 2px;
    background: #111;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg)
}
.ads-close-icon:before {
    content: "";
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
}
.on-top {
    position: fixed;
    bottom: 100px;
    z-index: 9;
    background: var(--primary);
    right: 0;
    left: 0;
    width: 45px;
    height: 45px;
    margin: 0 auto;
    transform: translateX(501px);
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    border-radius: 50em;
}
.footer-bottom {
    margin-bottom: 30px;
    text-align: center;
    color: #bdbdbd;
    font-size: 13px;
}
.sidebarmenu-transparent {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 22;
    background: rgba(33,33,33,.6);
    -webkit-backdrop-filter: blur(7.5px);
    backdrop-filter: blur(7.5px);
    width: 100%;
    height: 100%;
    transition: left .3s ease-in-out;
    -webkit-transition: left .3s ease-in-out;
    transition: right .3s ease-in-out;
    -webkit-transition: right .3s ease-in-out;
    display: none;
}
.sidebarmenu-transparent.open {
    display: block;
}
.sidebarmenu {
    position: fixed;
    top: 0;
    right: -450px;
    display: flex;
    flex-direction: column;
    gap: 32px 0;
    padding: 24px;
    width: 423px;
    height: 100vh;
    background: #fff;
    z-index: 23;
    transition: left .3s ease-in-out;
    -webkit-transition: left .3s ease-in-out;
    transition: right .3s ease-in-out;
    -webkit-transition: right .3s ease-in-out;
}

.sidebarmenu.open {right: 0;}
.sidebarmenu-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.sidebarmenu-logo img {
    height: 30px;
    width: auto;
    display: block;
}

.sidebarmenu-content ul.menu {
    padding: 0;
    margin: 0;
    list-style: none;
    display: flex;
    flex-direction: row;
    gap: 15px;
    flex-wrap: wrap;
}

.sidebarmenu-content .widget-title {
    font-family: var(--font2);
}

.sidebarmenu-content {
    display: flex;
    width: 100%;
    height: 100vh;
    overflow-y: scroll;
    flex-direction: column;
    scrollbar-width: thin;
    scrollbar-color: #3d3d3d #fff;
    gap: 32px 0;
}

.sidebarmenu-content .widget {
    padding: 0 16px;
}
.sidebarmenu-content ul.menu li {
    width: calc(50% - 10px);
}
.sidebarmenu-content ul.menu li a {
    font-size: 13px;
    font-weight: 600;
}

.sidebarmenu-content ul.menu li a:hover {
    color: var(--primary);
}
.sidebarmenu-close svg {
    color: var(--primary);
    height: 20px;
}
.wp-block-gallery {
    align-items: unset !important;
    flex-wrap: unset !important;
    align-items: unset !important;
    gap: unset !important;
    display: block !important;
    max-width: 100% !important;
    overflow: hidden !important;
}

.slick-gallery figcaption {
    text-align: left !important;
    font-size: 12px;
    margin-top: 10px;
    flex-grow: unset !important;
    flex-basis: unset !important;
    display: block !important;
    line-height: 1.5;
}

.slick-gallery .spotlight {
    overflow: hidden;
    height: 0 !important;
    position: relative !important;
    display: block !important;
    padding-bottom: 60%;
}

.slick-gallery .spotlight img {
    width: 100% !important;
    height: 100% !important;
    position: absolute;
    object-fit: cover;
}

.wp-block-gallery .btn-prev, .wp-block-gallery .btn-next {
    position: absolute;
    z-index: 2;
    top: 185px;
    background-size: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    color: #fff;
    background: #00000080;
    border-radius: 8px;
}

.wp-block-gallery .btn-next {
    right: 5px;
}

.wp-block-gallery .btn-prev {
    left: 5px;
}

.wp-block-gallery .btn-prev svg, .wp-block-gallery .btn-next svg {
    height: 22px;
}

.wp-block-gallery .slick-gallery .spotlight:after {
    /* content: ""; */
    background-image: url("data:image/svg+xml,%3Csvg style='fill:%23fff;' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' viewBox='0 0 392.619 392.619' xml:space='preserve'%3E%3Cg%3E%3Cpolygon points='149.206,222.201 103.831,267.576 103.846,216.848 73.309,247.384 73.31,319.31 145.235,319.31 175.772,288.773 125.044,288.788 170.418,243.414 170.418,222.201 '/%3E%3Cpolygon points='243.414,170.418 288.788,125.043 288.773,175.771 319.31,145.235 319.309,73.309 247.384,73.309 216.847,103.846 267.575,103.831 222.201,149.205 222.201,170.418 '/%3E%3Cpolygon points='170.418,149.206 125.043,103.831 175.771,103.845 145.235,73.309 73.309,73.309 73.309,145.235 103.845,175.771 103.83,125.044 149.205,170.418 170.418,170.418 '/%3E%3Cpolygon points='288.789,267.576 243.414,222.201 222.201,222.201 222.201,243.414 267.576,288.789 216.848,288.774 247.385,319.31 319.31,319.31 319.31,247.384 288.774,216.848 '/%3E%3Cpath d='M310.724,0.929H81.896C36.738,0.929,0,37.667,0,82.825v226.97c0,45.157,36.738,81.896,81.896,81.896h228.828 c45.157,0,81.896-36.738,81.896-81.896V82.825C392.619,37.667,355.881,0.929,310.724,0.929z M362.619,309.795 c0,28.615-23.28,51.896-51.896,51.896H81.896C53.28,361.69,30,338.41,30,309.795V82.825c0-28.616,23.28-51.896,51.896-51.896 h228.828c28.615,0,51.896,23.28,51.896,51.896V309.795z'/%3E%3Cpolygon style='fill:%2300000080;' points='243.414,222.201 279.645,222.201 279.645,170.418 243.414,170.418 222.201,170.418 222.201,149.205 222.201,112.974 170.418,112.974 170.418,149.206 170.418,170.418 149.205,170.418 112.974,170.418 112.974,222.201 149.206,222.201 170.418,222.201 170.418,243.414 170.418,279.645 222.201,279.645 222.201,243.414 222.201,222.201 '/%3E%3C/g%3E%3C/svg%3E");
    background-color: #000000d9;
    position: absolute;
    top: 4px;
    right: 4px;
    z-index: 2;
    display: block;
    width: 35px;
    height: 35px;
    background-size: 21px;
    background-repeat: no-repeat;
    background-position: center;
    border-radius: 5px;
}

.wp-block-gallery .slick-dots li.slick-active button {
    display: block;
    margin-right: 3px;
}

.wp-block-gallery .slick-dots li button {
    display: none;
    background: unset;
    width: unset;
    height: unset;
    color: unset;
}

.wp-block-gallery .slick-dots {
    display: none !important;!i;!;
    width: 100%;
    padding: 11px;
    background: #e7e7e7;
    border-radius: 4px;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-family: Montserrat,sans-serif;
    counter-reset: section;
    list-style: none;
    border: 1px solid #e5e5e5;
    position: relative;
    margin-top: 15px;
    color:    var(--active);
}

.wp-block-gallery .slick-dots button {
    background: transparent;
    border: 0;
    outline: 0;
    font-weight: 600;
    font-size: 14px;
    line-height: 1;
}

.wp-block-gallery .slick-dots li:after {
    counter-increment: section;
    content: "dari " counter(section) "";
}

.wp-block-gallery .slick-dots li:after {
    font-size: 0;
    display: block;
}

.wp-block-gallery .slick-dots li:last-child::after {
    font-size: 14px;
    line-height: 1;
}

.wp-block-gallery .slick-dots li {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    height: unset;
    width: unset;
    margin: unset;
}
.loading {
    width: 32px;
    height: 32px;
    position: relative;
    margin: 12px auto;
    display: none;
}

.loading .double-bounce1, .loading .double-bounce2 {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-color: var(--primary);
    opacity: .6;
    position: absolute;
    top: 0;
    left: 0;
    -webkit-animation: 2s ease-in-out infinite sk-bounce;
    animation: 2s ease-in-out infinite sk-bounce
}

.loading .double-bounce2 {
    -webkit-animation-delay: -1s;
    animation-delay: -1s
}

@-webkit-keyframes sk-bounce {
    0%,100% {
        -webkit-transform: scale(0)
    }

    50% {
        -webkit-transform: scale(1)
    }
}

@keyframes sk-bounce {
    0%,100% {
        transform: scale(0);
        -webkit-transform: scale(0)
    }

    50% {
        transform: scale(1);
        -webkit-transform: scale(1)
    }
}
.no-more {
    color: #666666;
    font-size: 12px;
    display: none;
    align-items: center;
    justify-content: center;
    gap: 5px;
    font-weight: 500;
    padding: 15px 0;
}
.no-more svg {
    color: var(--primary);
    height: 16px;
}

.author-box.widget {
    background: #272727;
    padding: 30px 20px;
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    text-align: center;
    color: #fff;
}

.author-box .media-image {
    width: 150px;
    padding-bottom: 150px;
    height: 0;
    border-radius: 50em;
}

.author-name h1 {
    display: inline-flex;
    font-size: 16px;
    font-family: var(--font2);
    gap: 5px;
    align-items: center;
    margin: 0;
}

.author-bio {
    font-size: 12px;
    margin-top: 20px;
}
.kanal-header {
    font-size: 20px;
    font-weight: 700;
    padding: 17px 15px;
    font-family: var(--font2);
}
.kanal-menu {
    border-radius: 3px;
    position: sticky;
    top: 75px;
    overflow: hidden;
    background: #272727;
    color: #fff;
    border-radius: 16px;
}
.kanal-menu ul li svg {
    height: 10px;
    color: var(--primary)
}
.kanal-menu ul li a {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    padding: 14px 0 12px;
    margin-bottom: 2px;
    border-bottom: 1px solid #373535;
    font-size: 14px;
    font-weight: 700;
    color: #fff;
}
.kanal-menu ul {
    list-style: none;
    padding: 0;
    margin: 0
}
.kanal-menu ul li {
    padding: 0 25px;
}
.kanal-menu ul li:last-child a {
    border: 0
}

.kanal-menu ul li a:hover {
    color: var(--primary);
}
#boxDate {
    position: relative;
    flex: 1;
}
#boxDate svg {
    color: #727272;
    position: absolute;
    right: 5px;
    top: 0px;
    padding: 11px;
    height: 40px;
    width: 40px;
    cursor: pointer;
}
#startDate {
    padding: 12px;
    border: 1px solid rgba(0,0,0,.1);
    background-color: #fff;
    z-index: 2;
    padding-right: 40px;
    appearance: none;
    outline: 0;
    width: 100%;
    border-radius: 32px;
    font-size: 13px;
}

.widget-subheader {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
    padding: 10px;
    background: #f4f4f4;
    box-shadow: 0 6px 12px rgba(28, 39, 49, .05);
    border-radius: 16px;
}

.btn-form-indeks {
    display: block;
    text-align: center;
    background: var(--primary);
    color: #fff;
    padding: 10px 16px;
    border-radius: 32px;
    font-size: 14px;
    font-weight: 700;
    line-height: 21px;
    font-family: var(--font2);
    min-width: 150px;
    cursor: pointer;
}
.header-brand .logo-darkmode,
.sidebarmenu .logo-darkmode {
    display: none;
}
.notfound {
    display: flex;
    flex-direction: column;
    align-content: center;
    width: 100%;
    align-items: center;
    padding: 100px 0;
    padding-top: 70px;
}
.notfound-title h1 {
    font-size: 130px;
    line-height: 0;
    font-family: var(--font2);
}

.notfound-title {
    text-align: center;
}

.notfound-title .oops {
    font-size: 26px;
    color: var(--primary);
    font-weight: 600;
    margin-top: -41px;
    font-family: var(--font2);
}
.notfound-desc {
    text-align: center;
    color: #666;
}
.notfound-button a {
    display: inline-flex;
    text-align: center;
    background: var(--primary);
    color: #fff;
    padding: 10px 16px;
    border-radius: 32px;
    font-size: 14px;
    font-weight: 700;
    line-height: 21px;
    font-family: var(--font2);
    align-items: center;
}
.notfound-button svg {
    height: 16px;
}

.notfound {
    display: flex;
    flex-direction: column;
    align-content: center;
    width: 100%;
    align-items: center;
    padding: 100px 0;
    padding-top: 70px;
}
.notfound-title h1 {
    font-size: 130px;
    line-height: 0;
    font-family: var(--font2);
}

.notfound-title {
    text-align: center;
}

.notfound-title .oops {
    font-size: 26px;
    color: var(--primary);
    font-weight: 600;
    margin-top: -41px;
    font-family: var(--font2);
}
.notfound-desc {
    text-align: center;
    color: #666;
}
.notfound-button a {
    display: inline-flex;
    text-align: center;
    background: var(--primary);
    color: #fff;
    padding: 10px 16px;
    border-radius: 32px;
    font-size: 14px;
    font-weight: 700;
    line-height: 21px;
    font-family: var(--font2);
    align-items: center;
}
.notfound-button svg {
    height: 16px;
}
.darkmode .header-brand .logo-light,
.darkmode .sidebarmenu .logo-light {
    display: none !important;
}
.darkmode .header-brand .logo-darkmode,
.darkmode .sidebarmenu .logo-darkmode {
    display: block;
}
body.darkmode .widget.tag-search, 
body.darkmode, body.darkmode .header-input-search, body.darkmode .header-search-wrapper, body.darkmode #startDate {
    background-color: #131313;
}

body.darkmode header.header, body.darkmode textarea#comment, body.darkmode input#author, body.darkmode input#email, body.darkmode textarea#comment:focus, body.darkmode .network-menu .sub-menu, body.darkmode .sidebarmenu, body.darkmode .network-menu {
    background-color: #131313;
    box-shadow: #232323 0px 1px 0px;
}
body.darkmode, body.darkmode textarea#comment, body.darkmode a, body.darkmode .header-menu ul.widget > li > a, body.darkmode .commentBodyText, body.darkmode .breadcrumb ul li:last-child a, body.darkmode input#author, body.darkmode input#email, body.darkmode textarea#comment:focus, body.darkmode #startDate, body.darkmode .header-menu ul.widget > li > .sub-menu a, body.darkmode .network-menu li.menu-item-has-children > a, body.darkmode button.network span {
    color: #fff;
}
body.darkmode .banner:before, body.darkmode p.form-submit, body.darkmode .paginationPostLink .post-page-numbers, body.darkmode span.btn-next, body.darkmode .showall-page a, body.darkmode .opini .media:hover {
    background-color: #272727;
}
body.darkmode .grid .widget-content, body.darkmode .slider .widget-content, body.darkmode .widget.opini, body.darkmode .postinfo, body.darkmode .pagination-post, body.darkmode .redaksi, body.darkmode #comments, body.darkmode #respond, body.darkmode .comment-respond, body.darkmode .bacajuga, body.darkmode .breaking-title, body.darkmode .widget-subheader, body.darkmode .header-menu ul.widget > li > .sub-menu {
    background-color: #181818;
}
body.darkmode .media-date, body.darkmode .comment-notes, body.darkmode .commentBodyText, body.darkmode .notfound-desc, body.darkmode p.logged-in-as, body.darkmode .article-detail figcaption, body.darkmode .article-date, body.darkmode .redaksi-label, body.darkmode .breadcrumb a, body.darkmode .commentHeader time {
    color: #9a9a9a;
}
body.darkmode .media-counter {
    -webkit-text-stroke-color: #a8a8a8;
}
body.darkmode .media-image:before {
    background: #383838;
}
body.darkmode .media-image:after {
    background-image: linear-gradient(90deg, rgb(51 51 51) 0, rgba(51, 51, 51, .2) 20%, rgba(51, 51, 51, .5) 60%, rgba(51, 51, 51, 0));
}
body.darkmode .widget.tag-search .media,
body.darkmode .widget.tag-search,
body.darkmode .header-search-wrapper, body.darkmode .commentsArea li, body.darkmode textarea#comment, body.darkmode p.form-submit, body.darkmode .avatar-image, body.darkmode input#author, body.darkmode input#email, body.darkmode textarea#comment:focus, body.darkmode #startDate {
    border-color: #2c2c2c;
}
body.darkmode .widget.tag-search {
    box-shadow: 15px -1px 31px 10px rgb(9 9 9 / 25%);
}
body.darkmode .widget.tag-search .media .media-link {
    color: #fff !important;
}