@import url('../../style.css');

/* #region: Mix */

/* Backdrop/Overlay */
#backdrop {
    position: fixed;
    width: 100%;
    height: 100%;
    inset: 0;
    background: rgba(0,0,0,0.7);
    z-index: 998;
    display: none;
}

/* #region: Close */
._close {
    position: absolute;
    top: 0;
    right: 0;
    background: var(--colordarktrans);
    color: var(--colorwhite);
    width: 40px;
    height: 40px;
    font-size: 30px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-bottom: 10px;
    transition: .3s ease;
    z-index: 1;
}
._close:hover {
    background: var(--color2);
}
#osidebar ._close,
#komentar ._close {
    background: var(--color1);
}
/* #endregion */

/* #region: Box Content */
.box-content {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.box-content>._title {
    display: flex;
    align-items: center;
    gap: 10px;
    overflow: hidden;
    position: relative;
}
.box-content>._title h2,
.box-content>._title h3,
.box-content>._title h4 {
    margin: 0;
    font-size: 1.4em;
    flex-shrink: 0;
    font-weight: 700;
}
.box-content>._title ._icon {
    color: var(--color1);
    font-size: 1.3em;
}
.box-content>._title ._more {
    margin-left: auto;
}
/* #endregion */

/* #region: Loop */
.loop {
    border: 1px solid var(--colorborder);
    background: linear-gradient(to bottom, var(--colorbg), var(--colorlight));
    position: relative;
    transition: all .3s;
    overflow: hidden;
    width: 100%;
    border-radius: var(--x2bradius);
    flex-direction: row-reverse;
}
.loop ._pigura {
    width: 100%;
    height: 220px;
    overflow: hidden;
    display: flex;
    flex-shrink: 0;
    position: relative;
}
.loop ._pigura img {
    transition: all .3s ease;
}
.loop:hover ._pigura img {
    filter: brightness(.8);
}
.loop:hover ._content h3 {
    text-decoration: underline;
}
.loop ._content {
    padding: 20px;
}
.loop ._content h3 {
    font-size: 1.1em;
    color: var(--bodycolor);
}
.loop ._content h3 a:hover {
    color: var(--color1);
}
.loop ._category {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
}
.loop ._category a {
    color: var(--color2);
    line-height: 1em;
    font-size: .9em;
    border-radius: var(--bradius);
}
.loop ._category a:after {
    content: ',';
}
.loop ._category a:last-child:after {
    display: none;
}
.loop ._detail {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    font-size: .9em;
}
.loop ._detail li {
    display: flex;
    gap: 5px;
    align-items: center;
}
.loop ._detail li:not(._comments) {
    opacity: .7;
}
.loop ._detail li i {
    font-size: 1.1em;
}
.loop ._excerpt p {
    margin: 0;
}
.loop .video-thumb {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    visibility: hidden;
    transition: all .3s ease;
}
.loop:hover .video-thumb {
    visibility: visible;
}
.loop .play-thumb {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: var(--colordarktrans);
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    fill: var(--colorlighttrans);
    stroke: var(--colorlighttrans);
    z-index: 1;
}
.loop ._duration,
.loop .img-thumb {
    position: absolute;
    right: 10px;
    bottom: 10px;
    background: var(--colordarktrans);
    color: var(--colorwhite);
    padding: 7px;
    line-height: 1em;
    font-size: .8em;
    border-radius: var(--bradius);
}
.loop .img-thumb {
    left: 10px;
    bottom: 10px;
    top: unset;
    right: unset;
}
.loop ._category,
.loop ._excerpt,
.loop ._detail li:not(._date) {
    display: none;
}

/* Loop Grid */
.grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

/* Loop List */
.list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.list .loop {
    display: flex;
    align-self: unset;
}
.list ._pigura {
    width: 280px;
    height: auto;
    overflow: hidden;
    display: block;
    position: relative;
}
.list ._pigura img {
    position: absolute;
    top: 0;
    left: 0;
}
/* #endregion */

/* #endregion */

/* #region: Sidebar & Content */
#osidebar {
    border-right: 1px solid var(--colorborder);
    padding: 20px;
    transition: all 0.3s ease-in-out;
    background: var(--colorlight);
    z-index: 999;
    position: fixed;
    top: 0;
    left: 0;
    width: var(--sidewidth);
    height: 100vh;
    overflow-y: auto;
    overflow-x: hidden;
}
#osidebar > * {
    flex-shrink: 0;
}
#osidebar._active {
    left: 0;
    border-right: none;
}
#osidebar._active ._close {
    display: flex!important;
    position: fixed;
}
#osidebar._active .light-dark {
    display: none;
}

.top-header {
    display: none;
}
.top-header .side-toggle {
    width: 40px!important;
    height: 40px;
    padding: 0;
    border-radius: var(--x10bradius);
}

#ocontent {
    padding: 20px var(--autopad);
    margin-left: var(--sidewidth);
}
/* #endregion */

/* #region: Logo */
.side-logo b,
.top-logo b {
    font-size: 1.6em;
    font-weight: 700;
    color: var(--color1);
}
.side-logo p,
.top-logo p {
    color: var(--bodycolor);
    line-height: 1.4em;
    font-size: .9em;
}
.side-logo .logo-web,
.top-logo .logo-web {
    max-width: 100%;
    max-height: 100px;
    width: auto;
    height: auto;
    padding: 5px 0;
    display: block;
}
.top-logo .logo-web {
    max-height: 60px;
}

/* #endregion */

/* #region: Social Media */
.side-socmed a {
    display: flex;
    align-items: center;
    gap: 10px;
}
.side-socmed img {
    filter: invert(1);
    height: 22px;;
}
.side-socmed i[class*="icofont-"] {
    font-size: 14px;
    width: 28px;
    height: 28px;
    background: #333;
    color: var(--colorwhite);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color .3s ease;
    flex-shrink: 0;
    border-radius: 50%;
}
.side-socmed a:hover i[class*="icofont-"] {
    background: var(--color1);
}
.side-socmed a:hover span {
    text-decoration: underline;
}
/* #endregion */

/* #region: Search */
.toggle-search {
    display: none;
    cursor: pointer;
}
.toggle-search:hover {
    opacity: 0.8;
}
.side-search {
    border: 1px solid var(--colorborder);
    border-radius: var(--x10bradius);
    background: var(--colorbg);
}
.side-search input {
    height: 40px;
    border: none!important;
    background: none!important;
    flex-grow: 1;
    width: 100%;
    border-left: 1px solid var(--colorborder)!important;
    border-top-left-radius: 0!important;
    border-bottom-left-radius: 0!important;
    border-top-right-radius: var(--x10bradius)!important;
    border-bottom-right-radius: var(--x10bradius)!important;
}
.side-search button {
    height: 40px;
    width: 40px;
    background: none;
    color: var(--bodycolor);
    flex-shrink: 0;
}
/* #endregion */

/* #region: Side Menu */
nav.side-menu {
    padding-bottom: 15px;
    border-bottom: 1px solid var(--colorborder);
}
nav.side-menu i[class*="fa-"],
nav.side-menu i[class*="fas-"],
nav.side-menu i[class*="far-"],
nav.side-menu i[class*="fab-"] {
    margin-right: 10px;
    width: 15px;
    text-align: center;
}
nav.side-menu>ul {
    display: flex;
    flex-direction: column;
    gap: 5px;
}
nav.side-menu>ul>li {
    padding: 8px;
    border-radius: var(--bradius);
}
nav.side-menu>ul>li:hover {
    background: var(--bodybg);
}
nav.side-menu ul li {
    list-style: none;
    margin: 0;
    position: relative;
    transition: .3s;
    line-height: 1em;
}
nav.side-menu li a {
    text-decoration: none;
    line-height: 1em;
}
nav.side-menu>ul>li>a {
    font-weight: 700;
}
nav.side-menu>ul>li>span {
    cursor: pointer;
    position: absolute;
    right: 7px;
    top: 10px;
}
nav.side-menu>ul>li._active {
    color: var(--color1);
    background: var(--colorbg);
    border-radius: var(--bradius);
}
nav.side-menu>ul>li._active>a {
    color: var(--color1);
}
nav.side-menu>ul>li:has(.children),
nav.side-menu>ul>li:has(.sub-menu) {
    position: relative;
    padding-right: 25px;
}
nav.side-menu>ul>li>.children,
nav.side-menu>ul>li>.sub-menu {
    display: none;
    white-space: nowrap;
    font-size: .95em;
    padding-top: 5px;
}
nav.side-menu>ul>li>ul::-webkit-scrollbar,
nav.side-menu>ul>li>ul::-webkit-scrollbar {
    display: none;
}
nav.side-menu>ul>li>ul:hover::-webkit-scrollbar,
nav.side-menu>ul>li>ul:hover::-webkit-scrollbar {
    display: block;
}
nav.side-menu>ul>li>ul>li {
    padding: 0;
}
nav.side-menu li li a {
    padding: 10px;
    display: block;
}
nav.side-menu li li li:before {
    content: '';
    position: absolute;
    top: 7px;
    left: 15px;
    width: 7px;
    height: 7px;
    border-bottom: 1px solid var(--colordarktrans);
    border-left: 1px solid var(--colordarktrans);
}
nav.side-menu li li li {
    padding: 0 0 0 10px;
}
nav.side-menu li li li a {
    padding: 7px 7px 7px 20px;
}
/* #endregion */

/* #region: Header Menu */
nav.head-menu ._toggle {
    width: 100%;
    color: var(--bodycolor);
    background: var(--colorbg);
    font-weight: 500;
    display: none;
    border-bottom: 1px solid var(--colorborder);
}
nav.head-menu {
    border: 1px solid var(--colorborder);
    border-radius: var(--x2bradius);
    background: var(--colorbg);
    padding: 13px;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
    position: relative;
}
nav.head-menu._sticky {
    position: sticky!important;
    top: 0;
    z-index: 99;
}
nav.head-menu._sticky._active {
    box-shadow: -1px 2px 10px 2px rgba(0, 0, 0, 0.05);
}
nav.head-menu:before {
    content: '';
    position: absolute;
    top: -1px;
    left: -1px;
    right: -1px;
    height: 5px;
    background: linear-gradient(to right, var(--color1) 50%, var(--color2) 50%);
}
nav.head-menu i[class*="fa-"],
nav.head-menu i[class*="fas-"],
nav.head-menu i[class*="far-"],
nav.head-menu i[class*="fab-"] {
    margin-right: 5px;
    width: 15px;
    text-align: center;
}
nav.head-menu > ul {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}
nav.head-menu ul li {
    list-style: none;
    padding: 10px;
    margin: 0;
    position: relative;
    transition: .3s;
    text-transform: capitalize;
    line-height: 1em;
}
nav.head-menu li a {
    text-decoration: none;
    line-height: 1em;
}
nav.head-menu > ul > li {
    padding: 0;
}
nav.head-menu > ul > li > a {
    font-weight: 500;
}
nav.head-menu > ul > li > span {
    cursor: pointer;
    position: absolute;
    right: -3px;
    top: 50%;
    transform: translateY(-50%); 
}
nav.head-menu > ul > li._active {
    color: var(--color1);
}
nav.head-menu > ul > li._active > a {
    color: var(--color1);
}
nav.head-menu>ul>li:has(.children),
nav.head-menu>ul>li:has(.sub-menu) {
    position: relative;
    padding-right: 20px;
}
nav.head-menu > ul > li > .children,
nav.head-menu > ul > li > .sub-menu {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    z-index: 98;
    max-height: 500px;
    overflow-y: auto;
    overflow-x: hidden;
    min-width: 150px;
    max-width: 200px;
    background: var(--colorbg);
    display: none;
    white-space: nowrap;
    font-size: .85em;
    padding: 5px 10px;
    border: 1px solid var(--colorborder);
    border-radius: var(--bradius);
}
nav.head-menu > ul > li > ul::-webkit-scrollbar,
nav.head-menu > ul > li > ul::-webkit-scrollbar {
    display: none;
}
nav.head-menu > ul > li > ul:hover::-webkit-scrollbar,
nav.head-menu > ul > li > ul:hover::-webkit-scrollbar {
    display: block;
}
nav.head-menu > ul > li > ul > li {
    padding: 0;
}
nav.head-menu > ul > li > ul > li {
    border-bottom: 1px solid var(--colordarktrans);
}
nav.head-menu > ul > li > ul > li:last-child {
    border-bottom: none;
}
nav.head-menu li li a {
    padding: 10px ;
    display: block;
}
nav.head-menu li li li:before {
    content: '';
    position: absolute;
    top: 7px;
    left: 15px;
    width: 7px;
    height: 7px;
    border-bottom: 1px solid var(--colordarktrans);
    border-left: 1px solid var(--colordarktrans);
}
nav.head-menu li li li {
    padding: 0 0 0 10px;
}
nav.head-menu li li li a {
    padding: 7px 7px 7px 20px;
}
/* #endregion */

/* #region: Flash Blog (Breaking News) */
#flash-blog {
    background: var(--colorbg);
    border-radius: var(--x2bradius);
    border: 1px solid var(--colorborder);
    padding: 10px;
}
#flash-blog ._title {
    flex-shrink: 0;
    padding: 10px 20px;
    line-height: 1em;
    background: var(--color1);
    font-weight: 700;
    color: var(--colorwhite);
    border-radius: var(--bradius);
}
#flash-blog .splide {
    flex-grow: 1;
    overflow: hidden;
}
#flash-blog .splide__slide {
    font-size: .95em;
    line-height: 1.3em;
}
#flash-blog img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
}
/* #endregion */

/* #region: Top Tags (Trending Tags) */
.top-tags ._title {
    font-weight: 700;
    flex-shrink: 0;
}
.top-tags ._content {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: .95em;
}
.top-tags a {
    padding: 3px 8px;
    background: var(--colorbg);
    border: 1px solid var(--colorborder);
    border-radius: var(--bradius);
}
/* #endregion */

/* #region: Headline Blog (Slider)*/
#head-blog {
    border-radius: var(--x2bradius);
    overflow: hidden;
}
#head-blog ._category,
#head-blog ._detail li:not(._date, ._comments) {
    display: inherit;
}
#head-blog .loop {
    border: none;
}
#head-blog ._pigura {
    height: 400px;
}
#head-blog ._pigura:after {
    position: absolute;
    content: '';
    width: 100%;
    height: 100%;
    bottom: 0;
    left: 0;
    background: linear-gradient(to top, #111, transparent);
    opacity: .9;
}
#head-blog ._content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px 70px;
}
#head-blog ._content>* {
    justify-content: center;
    text-align: center;
}
#head-blog h3 a,
#head-blog ._detail {
    color: var(--colorwhite);
}
#head-blog h3 {
    font-size: 1.6em;
    color: var(--colorwhite);
}
#head-blog ._category {
    position: static;
}
#head-blog .img-thumb,
#head-blog .video-thumb,
#head-blog .play-thumb {
    display: none;
}
#head-blog ._excerpt {
    display: none;
}
#head-blog .splide__arrow--prev {
    left: 20px;
}
#head-blog .splide__arrow--next {
    right: 20px;
}
#head-blog .customize-partial-edit-shortcut button {
    left: 20px;
    top: 20px;
}
/* #endregion */

/* #region: Featured Blog (Post Unggulan) */
#feat-blog._bg {
    padding: 30px;
    border-radius: var(--x2bradius);
    border: 1px solid var(--colorborder);
    background: var(--colorbg);
    overflow: hidden;
}
#feat-blog._bg .loop {
    border: none;
}
#feat-blog._bg.box-content>._title h2 {
    color: var(--colorwhite);
}
#feat-blog._bg .post-slider .splide__arrow svg {
    fill: var(--colorwhite);
}
#feat-blog._bg .post-slider .splide__arrow {
    border-color: var(--colorwhite);
}
#feat-blog ._category {
    display: inherit;
    position: absolute;
    left: 10px;
    top: 10px;
}
#feat-blog ._category a {
    padding: 5px 7px;
    background: var(--color2);
    color: var(--colorlight);
    border-radius: var(--bradius);
}
#feat-blog ._category a:after {
    display: none;
}
#feat-blog ._excerpt {
    display: -webkit-box;
}
/* #endregion */

/* #region: Featured Category (Kategori Unggulan) */
#feat-cat ._excerpt {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
}
#feat-cat .oketabs-bttns {
    padding-left: 20px;
    gap: 5px;
    margin-left: auto;
}
#feat-cat .oketabs-bttns>button {
    padding: 5px 10px;
    border: none;
    background: none;
    color: var(--color1);
    font-size: 1.1em;
    transition: .3s;
}
#feat-cat .oketabs-bttns>button.active {
    color: var(--colorlight);
    background: var(--color2);
}
#feat-cat .oketabs-bttns>button.active:hover {
    color: var(--colorwhite);
}
#feat-cat .oketabs-bttns>button:hover {
    color: var(--color2);
}
#feat-cat ._more {
    margin-top: 10px;
    display: inline-block;
}
#feat-cat .loop {
    flex-direction: row;
}
#feat-cat .loop ._pigura {
    width: 200px;
}
/* #endregion */

/* #region: Latest Blog (Post Terbaru) */
#latest-blog ._category {
    display: inherit;
}

/* Latest Blog - List */
#latest-blog .list ._excerpt {
    display: -webkit-box;
}
/* #endregion */

/* #region: Recommended Blog (Post Rekomendasi) */
#recom-blog .loop {
    flex-direction: row;
}
#recom-blog ._category {
    display: inherit;
}
#recom-blog .img-thumb,
#recom-blog .video-thumb,
#recom-blog .play-thumb,
#recom-blog ._duration {
    display: none;
}
#recom-blog ._pigura {
    width: 150px;
}
#recom-blog ._content {
    justify-content: center;
    flex-direction: column-reverse;
}
#recom-blog h3 {
    -webkit-line-clamp: 2;
    line-clamp: 2;
}
/* #endregion */

/* #region: Video & Photo Blog */
#video-blog .img-thumb,
#photo-blog .video-thumb,
#photo-blog .play-thumb,
#photo-blog ._duration {
    display: none;
}
#video-blog .loop ._pigura {
    height: 200px;
}
#photo-blog .loop ._pigura {
    height: 240px;
}
#video-blog ._content,
#photo-blog ._content {
    flex-direction: column-reverse;
}
#video-blog ._detail,
#photo-blog ._detail {
    margin-bottom: -5px !important;
}
/* #endregion */

/* #region: Trending Blog */
#trending-blog .list {
    gap: 0;
    border-radius: var(--x2bradius);
    border: 1px solid var(--colorborder);
    overflow: hidden;
}
#trending-blog .loop {
    border: none;
    border-radius: 0;
    background: var(--colorlight);
    flex-direction: row;
}
#trending-blog .loop:nth-child(even) {
    background: var(--colorbg);
}
#trending-blog ._pigura {
    width: 150px;
}
#trending-blog ._content {
    width: 100%;
    padding: 20px 100px 20px 20px;
    position: relative;
    overflow: hidden;
}
#trending-blog ._detail li:not(._date, ._comments) {
    display: inherit;
}
#trending-blog ._category {
    display: inherit;
}
#trending-blog ol.list {
    list-style: none;
    counter-reset: list-counter;
    padding: 0;
    margin: 0;
}
#trending-blog ol .loop {
    counter-increment: list-counter;
}
#trending-blog ol .loop ._content::after {
    content: counter(list-counter);
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 100px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-size: 46px;
    font-weight: 700;
    color: var(--colorlight);
    text-shadow:
    -1px -1px 0 var(--color1),
    1px -1px 0 var(--color1),
    -1px  1px 0 var(--color1),
    1px  1px 0 var(--color1);
    transition: all .3s ease-in-out;
}
#trending-blog ol .loop:hover ._content::after {
    color: var(--color1);
    text-shadow: none;
    font-size: 70px;
}
/* #endregion */

/* #region: Related Blog */
#related-blog .loop {
    display: flex;
}
#related-blog ._pigura {
    width: 120px;
    height: auto;
}
#related-blog ._pigura img {
    position: absolute;
    top: 0;
    left: 0;
}
/* #endregion */

/* #region: Scrollup */
.scrollup {
    display: none;
    align-items: center;
    justify-content: center;
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    color: var(--color1);
    border: 1px solid var(--colorborder);
    background: var(--colorbg);
    font-size: 20px;
    border-radius: var(--bradius);
    z-index: 99;
    cursor: pointer;
    transition: 0.3s;
}
.scrollup:hover {
    color: var(--color2);
}
.scrollup._show {
    display: flex;
    animation: fadeIn 0.3s ease-in-out;
}
/* #endregion */

/* #region: Footer */
#footer {
    background: var(--colorlight);
    border: 1px solid var(--colorborder);
    border-radius: var(--x2bradius);
    padding: 20px;
}
#footer ._top>div {
    flex: 1;
    min-width: 0;
}
#footer ._top {
    padding-bottom: 20px;
    border-bottom: 1px solid var(--colorborder);
}
#footer ._top h4 {
    color: var(--color1);
    font-weight: 700;
}
#footer ._menu ul {
    display: flex;
    gap: 5px 15px;
    font-size: .9em;
    list-style: none;
    justify-content: center;
    flex-wrap: wrap;
}
#footer ._menu ul a:hover {
    color: var(--color2);
    text-decoration: underline;
}
#footer ._menu i[class*="fa-"], 
#footer ._menu i[class*="fas-"], 
#footer ._menu i[class*="far-"], 
#footer ._menu i[class*="fab-"] {
    margin-right: 5px;
}
#footer ._menu li ul {
    display: none;
}
#copyright {
    text-align: center;
}
#copyright h5 {
    display: inline-block;
    font-size: .9em;
    font-weight: 500;
}
/* #endregion */

/* #region: Single - Featured */
.single-content ._featured {
    max-height: 500px;
    border-radius: var(--x2bradius);
    border: 1px solid var(--colorborder);
    background: var(--colorbg);
    overflow: hidden;
}
.single-content ._featured._fullheight {
    max-height: unset;
}
.single-content ._featured._fullheight img {
    margin: 0 auto;
    display: block;
}
.single-content ._featured-caption {
    font-size: .9em;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--colorborder);
}
.single-content h1 {
    font-weight: 700;
}
/* #endregion */

/* #region: Single - Category */
.single-content>._category {
    margin-bottom: -10px !important;
}
.single-content ._category a {
    background: var(--color1);
    color: var(--colorwhite);
    padding: 8px;
    line-height: 1em;
    font-size: .9em;
    display: inline-block;
    border-radius: var(--bradius);
}
.single-content ._category a:hover {
    background: var(--color2);
}
/* #endregion */

/* #region: Single - Content (2 Columns) */
.single-content>._content ._col1 {
    min-width: 0;
}
.single-content ._artikel {
    font-size: inherit;
    line-height: 1.6em;
}
.single-content ._font-size {
    line-height: normal;
    padding: 10px;
    background: var(--colorlight);
}
.single-content ._font-size ._control {
    flex-shrink: 0;
    border-radius: var(--bradius);
    border: 1px solid var(--colorborder);
    background: var(--colorbg);
    margin-left: auto;
}
.single-content ._font-size ._control a {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}
.single-content ._font-size ._control a:first-child {
    font-size: .9em;
    border-right: 1px solid var(--colorborder);
}

.single-content>._content ._col2 {
    flex-shrink: 0;
    flex-grow: 0;
    width: 60px;
    position: sticky;
    top: 20px;
    height: fit-content;
}
.single-content>._content ._col2._sticky {
    top: 60px;
}
.single-content>._content ._col2 ._detail li {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}
.single-content>._content ._col2 ._detail li i {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: .3s;
    background: var(--colorborder);
    font-size: 24px;
}
.single-content>._content ._col2 ._detail li:hover i {
    background: var(--color2);
}
.single-content>._content ._col2 ._detail li .avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
}
/* #endregion */

/* #region: Single - Gallery & Video */
.single-content ._gallery ._image {
    background: var(--colorbg);
    position: relative;
    overflow: hidden;
    border-radius: var(--x2bradius);
    border: 1px solid var(--colorborder);
}
.single-content ._gallery ._image img {
    display: block;
    margin: 0 auto;
}
.single-content ._gallery ._caption {
    border-bottom: 1px solid var(--colorborder);
    padding-bottom: 10px;
}
.single-content ._gallery ._image ._nav {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
    transition: .3s ease;
    width: 100%;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    font-size: 24px;
}
.single-content ._gallery ._image ._nav a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: var(--colordarktrans);
    border-radius: var(--x10bradius);
    color: var(--colorwhite);
}
.single-content ._gallery ._image ._nav a:hover {
    background: var(--color2);
}
.single-content ._gallery ._image ._nav ._next {
    margin-left: auto;
}
.single-content ._gallery a.disabled {
    pointer-events: none;
    opacity: 0.5;
    cursor: not-allowed;
}
.single-content ._gallery ._navigation {
    text-align: center;
    padding: 5px 0;
    position: relative;
    font-weight: 600;
}
.single-content ._gallery ._navigation span {
    font-size: 1.2em;
}
.single-content ._gallery ._navigation a {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    background: var(--colorbg);
    padding: 10px;
    line-height: 1em;
    text-transform: uppercase;
    font-size: .85em;
    letter-spacing: 1px;
    border-radius: var(--x2bradius);
}
.single-content ._gallery ._navigation a._next {
    right: 0;
    left: unset;
}
.single-content ._gallery ._thumbnail {
    display: flex;
    gap: 10px;
}
.single-content ._gallery ._thumbnail img {
    opacity: .3;
    transition: .3s ease;
    width: 140px;
    max-width: unset;
    border-radius: var(--x2bradius);
}
.single-content ._gallery ._thumbnail img:hover,
.single-content ._gallery ._thumbnail .current img {
    opacity: 1;
}
.single-content ._gallery ._thumbnail .current {
    cursor: inherit;
}

/* Single - Gallery Carousel */
#post-galeri .lslide img {
    display: block;
    margin: 0 auto;
}
.single-content._blog .lslide,
.single-content._blog .lSGallery img {
    background: var(--colorbg);
    border-radius: var(--x2bradius);
    border: 1px solid var(--colorborder);
    overflow: hidden;
}
.single-content._blog .lSGallery {
    margin-top: 10px !important;
}

/* Single - Video */
.single-content ._video iframe {
    width: 100%;
    height: 400px;
    border-radius: var(--x2bradius);
    overflow: hidden;
}
/* #endregion */

/* #region: Single - Page Links */
.page-links {
    border-top: 1px solid var(--colorborder);
    padding-top: 10px;
    display: flex;
    gap: 10px;
    align-items: center;
    font-size: 1.1em;
}
.page-links .post-page-numbers {
    min-width: 40px;
    padding: 5px 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--x2bradius);
    background: var(--colorbg);
    border: 1px solid var(--colorborder);
}
.page-links .post-page-numbers:not(.current):hover {
    background: var(--colorbg);
    border-color: var(--color2);
    color: var(--color2);
}
.page-links .post-page-numbers.current {
    color: var(--color1);
    font-weight: 700;
}
/* #endregion */

/* #region: Single - Related (Baca Juga) */
.related-content {
    padding-left: 15px;
    margin: 20px 0;
    border-left: 4px solid var(--color2);
    display: flex;
    flex-direction: column;
    gap: 5px;
}
.related-content a {
    color: var(--color1);
    font-weight: 600;
    font-size: 1.1em;
}
.related-content a:hover {
    text-decoration: underline;
    color: var(--color2);
}
/* #endregion */

/* #region: Single - Informasi Artikel & Author */
.single-content ._info h4 a {
    color: var(--color1);
}
.single-content ._info h4 a:hover {
    color: var(--color2);
}
.single-content ._info .avatar {
    border-radius: 50%;
    float: left;
    margin: 0 15px 5px 0;
    width: 80px;
    height: 80px;
}

/* Author Box */
.author img {
    width: 96px;
    height: 96px;
    overflow: hidden;
    float: left;
    margin: 0 15px 5px 0;
}
/* #endregion */

/* #region: Single - ePaper */
.single-content._epaper ._featured {
    max-width: 300px;
    flex-shrink: 0;
    align-self: flex-start;
}
.single-content._epaper ._detail {
    flex-grow: 1;
    margin-bottom: -5px;
}
.single-content._epaper ._detail ._price {
    border-top: 1px solid var(--colorborder);
    padding-top: 10px;
    font-weight: 700;
    font-size: 1.5em;
    color: var(--color2);
    margin: 10px 0 !important;
}

/* Loop ePaper */
.loop._epaper ._pigura {
    height: 320px;
}

/* #region: PDF Viewer */
#pdf-viewer {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 999;
    display: none;
    padding: 50px 20px 20px;
    /* display: flex; */
    justify-content: center;
    align-items: center;
}
#pdf-viewer ._nav {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 50px;
    background: var(--color1);
    display: flex;
    gap: 40px;
    justify-content: center;
    align-items: center;
    padding: 0 10px;
    color: var(--colorwhite);
}
#pdf-viewer ._nav button {
    padding: 5px 10px;
}
#pdf-viewer ._nav button:disabled,
#pdf-viewer ._content button:disabled {
    background: none !important;
    opacity: 0.3;
    cursor: not-allowed;
}
#pdf-viewer ._info {
    background: rgba(0, 0, 0, 0.3);
    padding: 5px;
    border-radius: var(--bradius);
}
#pdf-viewer ._content {
    max-width: 800px;
    max-height: calc(100% - 90px);
    overflow: auto;
    text-align: center;
}
#pdf-viewer ._content button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 2em;
    cursor: pointer;
    width: 60px;
    height: 60px;
    border-radius: var(--x10bradius);
    background: var(--colordarktrans);
}
#pdf-viewer ._content button:hover {
    background: var(--color2);
}
#pdf-viewer ._content ._next {
    right: 40px;
}
#pdf-viewer ._content ._prev {
    left: 40px;
}
#pdf-canvas {
    width: 100%;
    height: auto;
}
#pdf-loading {
    display: none;
}
/* #endregion */
/* #endregion */

/* #region: Archive */
.archive ._excerpt {
    display: -webkit-box;
    -webkit-line-clamp: 4;
    line-clamp: 4;
}

/* Filter Archive */
.filter-archive {
    border-top: 1px solid var(--colorborder);
    border-bottom: 1px solid var(--colorborder);
    padding: 20px 0;
}
/* #endregion */

/* #region: Ads / Iklan Banner */
.banner {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    border-radius: var(--x2bradius);
    overflow: hidden;
    background: var(--colorbg);
    border: 1px solid var(--colorborder);
    min-height: 60px;
}

/* Banner Floating */
.banner-floating {
    position: absolute !important;
    width: 160px;
    min-height: 590px;
    overflow: hidden;
    transition: .3s;
    top: 19px;
    background: var(--colorbg);
    border: 1px solid var(--colorborder);
    border-radius: var(--x2bradius);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    /* z-index: 98; */
}
.banner-floating._side {
    position: fixed!important;
    top: 20px;
}
.banner-floating ._close {
    position: absolute;
    top: 0;
    left: 0;
    right: unset;
    font-size: 20px;
    width: 30px;
    height: 30px;
    border-bottom-right-radius: var(--bradius);
}
.banner-floating._bottom {
    position: fixed !important;
    top: unset;
    bottom: 0;
    left: calc(50% + (var(--sidewidth) / 2));
    transform: translateX(-50%);
    width: var(--maxwidth);
    max-height: 150px;
    min-height: 40px;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    overflow: hidden;
    transition: .5s;
    background: var(--colorbg);
    border-bottom: none;
    z-index: 1;
}
.banner-floating._bottom img {
    width: auto;
    max-height: 150px;
    border-bottom: none;
    border-top-left-radius: var(--x2bradius);
    border-top-right-radius: var(--x2bradius);
}
.banner-floating._bottom ._close {
    width: unset;
    height: unset;
    font-size: 13px;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    padding: 0 10px;
    border-bottom-left-radius: var(--bradius);
}
.banner-floating._left {
    left: 50%;
    margin-left: -375px;
}
.banner-floating._right {
    right: 50%;
    margin-right: -715px;
}

/* Banner Parallax */
.banner-parallax {
    width: 100%;
    position: relative;
    margin: 20px 0;
    display: flex;
    justify-content: center;
    min-height: 400px;
    -webkit-clip-path: polygon(0px 0px, 100% 0px, 100% 100%, 0px 100%) !important;
    clip-path: polygon(0px 0px, 100% 0px, 100% 100%, 0px 100%) !important;
    background: var(--colorbg);
    border: 1px solid var(--colorborder);
    border-radius: var(--x2bradius);
    overflow: hidden;
    display: none;
}
._home .banner-parallax,
.archive.list .banner-parallax {
    margin: 0;
}
.banner-parallax img {
    max-width: 100%;
    max-height: 800px;
}
.banner-parallax ._content._on {
    position: fixed;
    top: 50%;
    max-width: 740px;
    transform: translateY(-50%);
    z-index: 1;
}

.banner img,
.banner-floating img,
.banner-parallax img {
    display: block;
}
/* #endregion */

/* #region: Komentar */
#komentar {
    position: fixed;
    right: -400px;
    top: 0;
    width: 400px;
    height: 100vh;
    overflow-y: auto;
    padding: 20px;
    background: var(--colorlight);
    border-left: 1px solid var(--colorborder);
    z-index: 999;
    transition: right 0.3s ease-in-out;
}
#komentar._active ._close {
    position: fixed;
}
#open-komentar {
    cursor: pointer;
}
#komentar._active,
#scroll-komentar._active {
    right: 0;
}
#scroll-komentar {
    position: fixed;
    right: -400px;
    bottom: 0;
    width: 400px;
    z-index: 100;
    border-radius: 0;
    transition: right 0.3s ease-in-out;
}
.comment-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.comment-form p {
    display: flex;
    flex-direction: column;
    gap: 5px;
    margin: 0;
}
.comment-form .comment-form-cookies-consent {
    display: block;
}
.form-submit {
    align-items: flex-start;
}
.comments label {
    font-weight: 600;
}
.comments .avatar {
    float: left;
    margin: 0 10px 2px 0;
    border-radius: 50%
}
.comments .comment-respond {
    background: var(--colorbg);
    padding: 20px;
    margin: 20px -20px -20px;
    border-top: 1px solid var(--colorborder);
}
.comment .comment-respond {
    border: none;
    border-radius: 0;
    background: none;
}
.comments .comment-reply-title small {
    margin-left: 10px;
}
.comment_text li {
    list-style-type: none;
    overflow: hidden;
    margin-left: 20px;
}
.comment_text {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.comment_text .depth-1 {
    padding-bottom: 20px;
    margin-left: 0;
    border: none;
    border-bottom: 1px solid var(--colorborder);
}
.comment_text .depth-1:last-child {
    border: none;
}
.comment_text .children {
    margin-top: 10px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.comment_text .children li {
    padding: 20px;
}
.comment_text li li li {
    background: var(--colorlight);
}
.comment_text li li,
.comment_text li li li li {
    background: var(--colorbg);
    border: 1px solid var(--colorborder);
    border-radius: var(--x2bradius);
}
.comment_text li li input:not([type="submit"]),
.comment_text li li textarea,
.comment_text li li li li input:not([type="submit"]),
.comment_text li li li li textarea {
    background: var(--colorlight);
}
.comment_text li li img {
    width: 40px;
    height: 40px;
}
/* #endregion */

/* #region: Tags */
.tags {
    display: flex;
    gap: 5px;
    flex-wrap: wrap;
    align-items: center;
}
.tags a {
    padding: 5px;
    border: 1px solid var(--colorborder);
    background: var(--colorbg);
    line-height: 1em;
    font-size: .9em;
    border-radius: var(--bradius);
}
.tags b {
    background: none;
    border: none;
    padding-left: 0;
}
/* #endregion */

/* #region: Share */
.shareit a {
    border-radius: 50%;
    width: 50px;
    height: 50px;
    font-size: 20px;
}
.shareit ._threads {
    font-size: 0;
    background: #0A0A0A;
}
.shareit ._threads img {
    filter: invert(1);
    width: 28px;
}
.shareit a:has(.icofont-twitter) {
    background: #1da1f2;
}
.shareit a:has(.icofont-facebook) {
    background: #1877f2;
}
.shareit a:has(.icofont-x) {
    background: #000000;
}
.shareit a:has(.icofont-brand-whatsapp) {
    background: #25d366;
}
.shareit a:has(.icofont-pinterest) {
    background: #bd081c;
}
.shareit a:hover {
    opacity: .6;
}
/* #endregion */

/* #region: Pagination */
.pagination {
    width: 100%;
    text-align: center;
    padding-top: 10px;
}
.pagination a,
.pagination>.current {
    border: 1px solid var(--colorborder);
    padding: 5px 10px;
    background: var(--colorbg);
    margin: 0 2px;
    display: inline-block;
    min-width: 40px;
    border-radius: var(--bradius);
}
.pagination a:hover {
    color: var(--color2);
    border-color: var(--color2);
}
.pagination>.current {
    color: var(--color1);
    font-weight: 700;
}
/* #endregion */

/* #region: Maintenance */
.maintenis {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 50px;
    background: #ff0000a1;
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--colorwhite);
    font-size: 15px;
}
/* #endregion */

/* #region: Light/Dark Mode */
.light-dark {
    font-size: 20px;
    width: 40px!important;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: .3s;
    border-bottom-left-radius: var(--x2bradius);
    background: var(--colorbg);
    border: 1px solid var(--colorborder);
    position: absolute;
    right: -1px;
    top: 0;
}
.light-dark:hover {
    background: var(--color1);
    color: var(--colorwhite);
}
.top-header .light-dark {
    position: static;
    border-radius: var(--x10bradius);
}
/* #endregion */