:root {
    --primary: #bf0c49;
    --secondary: #ea7113;
    --active: #FFC107;
    --dark-1: #282828;
    --dark-2: #1e1e1e;
    --dark-3: #2e2e2e;
    --dark-4: #303030;
    --font-2: 'Roboto', serif;
    --white: #fff;
    --semiwhite: #999;
    --filter: brightness(0) invert(1);
    --transparant: rgb(255 255 255 / 4%);
    --textparallax: "Scroll untuk lanjut membaca";
    --widthparallaxdesktop: 970px;
    --heightparallaxdesktop: 250px;
}
*, :after, :before {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    word-wrap: break-word;
}
body {
    background: #f7f7f7;
    font-family: 'Poppins', sans-serif;
    font-size: 13px;
    line-height: 1.5;
    color: #333;
}
img {
    max-width:100%;
    height:auto
}
a {
    text-decoration: none;
    color: var(--secondary);
}
.container {
    padding-left: 12px;
    padding-right: 12px;
    margin-right: auto;
    margin-left: auto;
    width: 990px;
}
.billboard-box .widget {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    max-width: 970px;
    height: auto;
}
.billboard.parallax {
    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;
}

.billboard.parallax .widget {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    clip: rect(auto,auto,auto,auto);
}
.billboard.parallax .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;
}

.billboard.parallax .widget-parallax img {
    width: 100%;
    height: var(--heightparallaxdesktop);
    object-fit: cover;
}

.parallax-area {
    background: #1a1a1a;
    width: 100%;
    min-width: 1014px;
    position: relative;
    z-index: 990;
}
header.header {
    background: #fff;
    position: sticky;
    top: 0;
    z-index: 990;
    box-shadow: 0 .125rem .25rem rgba(0,0,0,.075);
    min-width: 1014px;
}
.header-box {
    padding: 10px 0;
    display: flex;
    gap: 12px;
    justify-content: space-between;
    align-items: center;
}
.header-brand img {
    height: 30px;
    width: auto;
    display: block;
}
.header-brand .logo-darkmode {
    display: none;
}
.header-brand a {
    display: block;
}
.header-brand h1 {
    margin: 0;
}
.header-brand a:focus-visible {
    outline: 0;
    border: 0;
}
.navigation {
    background: var(--primary);
    background-image: -webkit-gradient(linear,left top,right top,from(var(--primary)),to(var(--secondary)));
    background-image: linear-gradient(to right,var(--primary) 0,var(--secondary) 100%);
}
.navigation ul {
    display: flex;
    list-style: none;
    flex-wrap: wrap;
    margin: 0;
    padding: 0;
    justify-content: space-between;
}

.navigation ul li a {
    color: #ffff;
    font-weight: 600;
    padding: 8px 5px;
    display: block;
    position: relative;
    font-size: 13px;
    -webkit-transition: all .2s ease;
    -moz-transition: all .2s ease;
    -ms-transition: all .2s ease;
    -o-transition: all .2s ease;
    transition: all .2s ease;
}
.navigation ul li:hover > a {
    color: var(--active);
}
.navigation ul li.current-menu-item a {
    color: var(--active);
}
.navigation ul li.current-menu-item a:after {
    content: "";
    width: 100%;
    height: 3px;
    background: var(--primary);
    position: absolute;
    bottom: 0;
    display: block;
    left: 0;
    right: 0;
    border-radius: 5px 5px 0 0;
}
.navigation ul li.new a:after {
    content: "";
    width: 6px;
    height: 6px;
    background: var(--active);
    position: absolute;
    display: block;
    right: -1px;
    border-radius: 50em;
    top: 7px;
}
.navigation ul .sub-menu {
    display: none;
}

.navigation ul li.menu-item-has-children:after {
    content: "";
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512' fill='%23fff'%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");
    width: 12px;
    height: 12px;
    display: block;
    background-repeat: no-repeat;
    background-size: 12px;
}

.navigation ul > li {
    display: flex;
    align-items: center;
    justify-content: center;
}

.navigation ul li>.sub-menu {
    list-style: none;
    padding: 4px 0 0;
    animation: .2s cubic-bezier(.39,.575,.565,1) both dropdown-in;
    text-align: left;
    display: none;
    position: absolute;
    top: 100%;
    display: none;
    z-index: 3;
    left: auto;
    right: -8px;
    background: #f3f2f1;
    min-width: 170px;
    border-radius: 4px;
    box-shadow: 0 0 8px 0 rgb(0 0 0 / 15%);
    height: auto
}

.navigation ul li.menu-item-has-children:hover>.sub-menu {
    display: block;
}

.navigation ul li {
    position: relative;
    display: flex;
    align-items: center;
    height: 100%;
    position: relative;
}

.navigation ul li>.sub-menu:before {
    content: "";
    position: absolute;
    width: 0;
    height: 0;
    top: 0;
    border: 6px solid #000;
    border-color: transparent transparent #f3f2f1 #f3f2f1;
    transform-origin: 0 0;
    transform: rotate(135deg);
    box-shadow: -2px 2px 4px 0 rgba(0,0,0,.05);
    right: 30px;
    left: auto
}


.navigation ul li>.sub-menu>li a {
    color: #444;
    padding: 8px 12px;
    display: block;
    font-size: 13px;
}
.navigation ul li>.sub-menu>li:hover a {
    color: var(--active);
}
.navigation ul li>.sub-menu>li {
    display: block;
}
.header-search-wrapper {
    overflow: hidden;
    border-radius: 50em;
    border-width: 1px;
    border-style: solid;
    border-color: #e7e7e7;
    color: #000000;
    width: 250px;
    background-color: #e7e7e7;
    display: flex;
}

.icon-search {
    border: 0;
    outline: 0;
    color: #666;
    background: transparent;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
}

.header-input-search {
    flex: 1;
    border: 0;
    outline: 0;
    background: transparent;
    font-size: 12px;
    padding: 5px;
    height: 25px;
}

.header-search-form {
    margin: 0;
}

.icon-search svg {
    height: 20px;
}

.mode > .hide {
    display: none;
}

.mode > * {
    color: #666;
    padding: 2px;
    width: 24px;
    height: 24px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.mode > * svg {
    height: 24px;
}
.header-right {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    gap: 5px;
}
.patner {
    position: unset !important;
    cursor:pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.patner svg {
    height: 20px;
    color: #666;
}
.patner-cursor {
    position: absolute;
    top: 38px;
    z-index: 999;
    left: 0;
    width: 990px;
    right: 0;
    margin: 0 auto;
    display: none;
    padding-top: 20px;
}

.patner-box {
    background: #fff;
    margin: 0 auto;
    padding: 12px 16px;
    box-shadow: 0 0 8px rgba(0,0,0,.1);
    border-bottom: 4px solid #d9d9d9;
    border-radius: 0 0 7px 7px;
}
.patner:hover .patner-cursor {
    display: block;
}
.patner-box ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    margin: 0;
}

.patner-box ul li {
    width: 20%;
}

.patner-box ul li a {
    padding: 6px;
    display: block;
    color: #666;
    font-size: 13px;
    font-weight: 500;
    -webkit-transition: all .2s ease;
    -moz-transition: all .2s ease;
    -ms-transition: all .2s ease;
    -o-transition: all .2s ease;
    transition: all .2s ease;
    position: relative;
}
.patner-box ul li a:hover {
    color: var(--primary);
}
.header-right > * {
    height: 28px;
    display: flex;
    align-items: center;
}
.header-date {
    color: #666;
    font-size: 12px;
    display: flex;
    align-items: center;
    font-weight: 500;
    font-family: var(--font-2);
    letter-spacing: .2px;
}
.header-date svg {
    margin-right: 5px;
}
.mode-box {
    pointer-events: all;
    position: absolute;
    right: 10px;
    top: 35px;
    width: 150px;
    background: #f3f2f1;
    -webkit-box-shadow: 0 2px 5px rgba(0,0,0,.3);
    box-shadow: 0 2px 5px rgba(0,0,0,.3);
    overflow: hidden;
    padding: 0;
    -webkit-transition: .2s;
    -moz-transition: .2s;
    -ms-transition: .2s;
    -o-transition: .2s;
    transition: .2s;
    -ms-transform: translateY(-5px);
    -webkit-transform: translateY(-5px);
    transform: translateY(-5px);
    z-index: 2;
    border-radius: 5px;
    display: none;
}
.mode-box.show {
    display:block;
    -ms-transform: translateY(0);
    -webkit-transform: translateY(0);
    transform: translateY(0);
    z-index: 999;
}
.mode-item {
    cursor: pointer;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    padding: 9px 15px;
    color: #666;
    font-size: 13px;
    font-weight: 500;
    font-family: var(--font-2);
}

.header-right > * {
    position: relative;
    border-right: 1px solid #e5e5e5;
    padding-right: 10px;
    margin-right: 5px;
}
.header-right > *:last-child {
    padding: 0;
    border: 0;
}
.header-search {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    gap: 5px;
}

.header-mode {
    position: relative;
}
.mode-item.active, .mode-item:hover {
    background: #e7e7e7;
}
.mode-icon {
    margin-right: 10px;
}
.mode-icon svg {
    height: 24px;
}
.header-social ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
    gap: 3px;
}

.header-social ul li span {
    display: none;
}

.header-social ul li a {
    color: #fff;
    background: #e7e7e7;
    padding: 2px;
    border-radius: 7px;
    width: 28px;
    height: 27px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.header-social ul li a:before {
    content: "";
    background-size: 26px;
    display: block;
    background-repeat: no-repeat;
    background-position: center;
    width: 26px;
    height: 26px;
}
.header-social ul li.facebook a:before {
    background-image: url("data:image/svg+xml,%3Csvg fill='%23999' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 32'%3E%3Cpath d='M24,3H8A5,5,0,0,0,3,8V24a5,5,0,0,0,5,5H24a5,5,0,0,0,5-5V8A5,5,0,0,0,24,3Zm3,21a3,3,0,0,1-3,3H17V18h4a1,1,0,0,0,0-2H17V14a2,2,0,0,1,2-2h2a1,1,0,0,0,0-2H19a4,4,0,0,0-4,4v2H12a1,1,0,0,0,0,2h3v9H8a3,3,0,0,1-3-3V8A3,3,0,0,1,8,5H24a3,3,0,0,1,3,3Z'%3E%3C/path%3E%3C/svg%3E");
}
.header-social ul li.whatsapp a:before {
    background-image: url("data:image/svg+xml,%3Csvg height='24' fill='%23999' viewBox='0 0 56.693 56.693' width='24' xml:space='preserve' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink'%3E%3Cg%3E%3Cpath class='st0' d='M46.3802,10.7138c-4.6512-4.6565-10.8365-7.222-17.4266-7.2247c-13.5785,0-24.63,11.0506-24.6353,24.6333 c-0.0019,4.342,1.1325,8.58,3.2884,12.3159l-3.495,12.7657l13.0595-3.4257c3.5982,1.9626,7.6495,2.9971,11.7726,2.9985h0.01 c0.0008,0-0.0006,0,0.0002,0c13.5771,0,24.6293-11.0517,24.635-24.6347C53.5914,21.5595,51.0313,15.3701,46.3802,10.7138z M28.9537,48.6163h-0.0083c-3.674-0.0014-7.2777-0.9886-10.4215-2.8541l-0.7476-0.4437l-7.7497,2.0328l2.0686-7.5558 l-0.4869-0.7748c-2.0496-3.26-3.1321-7.028-3.1305-10.8969c0.0044-11.2894,9.19-20.474,20.4842-20.474 c5.469,0.0017,10.6101,2.1344,14.476,6.0047c3.8658,3.8703,5.9936,9.0148,5.9914,14.4859 C49.4248,39.4307,40.2395,48.6163,28.9537,48.6163z'%3E%3C/path%3E%3Cpath class='st0' d='M40.1851,33.281c-0.6155-0.3081-3.6419-1.797-4.2061-2.0026c-0.5642-0.2054-0.9746-0.3081-1.3849,0.3081 c-0.4103,0.6161-1.59,2.0027-1.9491,2.4136c-0.359,0.4106-0.7182,0.4623-1.3336,0.1539c-0.6155-0.3081-2.5989-0.958-4.95-3.0551 c-1.83-1.6323-3.0653-3.6479-3.4245-4.2643c-0.359-0.6161-0.0382-0.9492,0.27-1.2562c0.2769-0.2759,0.6156-0.7189,0.9234-1.0784 c0.3077-0.3593,0.4103-0.6163,0.6155-1.0268c0.2052-0.4109,0.1027-0.7704-0.0513-1.0784 c-0.1539-0.3081-1.3849-3.3379-1.8978-4.5706c-0.4998-1.2001-1.0072-1.0375-1.3851-1.0566 c-0.3585-0.0179-0.7694-0.0216-1.1797-0.0216s-1.0773,0.1541-1.6414,0.7702c-0.5642,0.6163-2.1545,2.1056-2.1545,5.1351 c0,3.0299,2.2057,5.9569,2.5135,6.3676c0.3077,0.411,4.3405,6.6282,10.5153,9.2945c1.4686,0.6343,2.6152,1.013,3.5091,1.2966 c1.4746,0.4686,2.8165,0.4024,3.8771,0.2439c1.1827-0.1767,3.6419-1.489,4.1548-2.9267c0.513-1.438,0.513-2.6706,0.359-2.9272 C41.211,33.7433,40.8006,33.5892,40.1851,33.281z'%3E%3C/path%3E%3C/g%3E%3C/svg%3E");
    background-size: 22px;
}

.header-social ul li.twitter a:before {
    background-size: 20px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' height='1em' viewBox='0 0 512 512'%3E%3Cpath d='M389.2 48h70.6L305.6 224.2 487 464H345L233.7 318.6 106.5 464H35.8L200.7 275.5 26.8 48H172.4L272.9 180.9 389.2 48zM364.4 421.8h39.1L151.1 88h-42L364.4 421.8z' fill='%23999'/%3E%3C/svg%3E");
}
.header-social ul li.telegram a:before {
    background-image: url("data:image/svg+xml,%3Csvg fill='%23999' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 32'%3E%3Cg%3E%3Cpath d='M24,28a1,1,0,0,1-.62-.22l-6.54-5.23a1.83,1.83,0,0,1-.13.16l-4,4a1,1,0,0,1-1.65-.36L8.2,18.72,2.55,15.89a1,1,0,0,1,.09-1.82l26-10a1,1,0,0,1,1,.17,1,1,0,0,1,.33,1l-5,22a1,1,0,0,1-.65.72A1,1,0,0,1,24,28Zm-8.43-9,7.81,6.25L27.61,6.61,5.47,15.12l4,2a1,1,0,0,1,.49.54l2.45,6.54,2.89-2.88-1.9-1.53A1,1,0,0,1,13,19a1,1,0,0,1,.35-.78l7-6a1,1,0,1,1,1.3,1.52Z'%3E%3C/path%3E%3C/g%3E%3C/svg%3E");
}
.header-social ul li.instagram a:before {
    background-image: url("data:image/svg+xml,%3Csvg fill='%23999' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 32'%3E%3Cg%3E%3Cpath d='M22,3H10a7,7,0,0,0-7,7V22a7,7,0,0,0,7,7H22a7,7,0,0,0,7-7V10A7,7,0,0,0,22,3Zm5,19a5,5,0,0,1-5,5H10a5,5,0,0,1-5-5V10a5,5,0,0,1,5-5H22a5,5,0,0,1,5,5Z'%3E%3C/path%3E%3Cpath d='M16,9.5A6.5,6.5,0,1,0,22.5,16,6.51,6.51,0,0,0,16,9.5Zm0,11A4.5,4.5,0,1,1,20.5,16,4.51,4.51,0,0,1,16,20.5Z'%3E%3C/path%3E%3Ccircle cx='23' cy='9' r='1'%3E%3C/circle%3E%3C/g%3E%3C/svg%3E");
}

.header-social ul li.youtube a:before {
    background-image: url("data:image/svg+xml,%3Csvg fill='%23999' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 32'%3E%3Cg%3E%3Cpath d='M29.73,9.9A5,5,0,0,0,25.1,5.36a115.19,115.19,0,0,0-18.2,0A5,5,0,0,0,2.27,9.9a69,69,0,0,0,0,12.2A5,5,0,0,0,6.9,26.64c3,.24,6.06.36,9.1.36s6.08-.12,9.1-.36a5,5,0,0,0,4.63-4.54A69,69,0,0,0,29.73,9.9Zm-2,12A3,3,0,0,1,25,24.65a113.8,113.8,0,0,1-17.9,0,3,3,0,0,1-2.78-2.72,65.26,65.26,0,0,1,0-11.86A3,3,0,0,1,7.05,7.35C10,7.12,13,7,16,7s6,.12,9,.35a3,3,0,0,1,2.78,2.72A65.26,65.26,0,0,1,27.73,21.93Z'%3E%3C/path%3E%3Cpath d='M21.45,15.11l-8-4A1,1,0,0,0,12,12v8a1,1,0,0,0,.47.85A1,1,0,0,0,13,21a1,1,0,0,0,.45-.11l8-4a1,1,0,0,0,0-1.78ZM14,18.38V13.62L18.76,16Z'%3E%3C/path%3E%3C/g%3E%3C/svg%3E");
}

.header-social ul li.tiktok a:before {
    background-image: url("data:image/svg+xml,%3Csvg fill='%23999' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 32'%3E%3Cg%3E%3Cpath d='M24,3H8A5,5,0,0,0,3,8V24a5,5,0,0,0,5,5H24a5,5,0,0,0,5-5V8A5,5,0,0,0,24,3Zm3,21a3,3,0,0,1-3,3H8a3,3,0,0,1-3-3V8A3,3,0,0,1,8,5H24a3,3,0,0,1,3,3Z'%3E%3C/path%3E%3Cpath d='M22,12a3,3,0,0,1-3-3,1,1,0,0,0-2,0V19a3,3,0,1,1-3-3,1,1,0,0,0,0-2,5,5,0,1,0,5,5V13a4.92,4.92,0,0,0,3,1,1,1,0,0,0,0-2Z'%3E%3C/path%3E%3C/g%3E%3C/svg%3E");
}

.header-social ul li.facebook a {
    /* background: #3b5998; */
}

.header-social ul li.twitter a {
    /* background: #000; */
}

.header-social ul li.telegram a {
    /* background: #08c; */
}


.header-social ul li.instagram a {
    /* 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%); */
}
.header-social ul li.youtube a {
    /* background: #ff0002; */
}

.header-social ul li.tiktok a {
    /* background: #000; */
}

.mode {
    position: relative;
    cursor: pointer;
}
.mode:hover::before {
    content: attr(aria-label);
    position: absolute;
    background: #9d9d9d;
    padding: 5px 10px;
    color: #ffffff;
    font-size: 10px;
    top: calc(100% + 2px);
    white-space: nowrap;
    pointer-events: none;
    -webkit-transition: opacity .2s;
    -moz-transition: opacity .2s;
    -ms-transition: opacity .2s;
    -o-transition: opacity .2s;
    transition: opacity .2s;
    z-index: 2;
    border-radius: 5px;
    font-weight: 600;
    text-transform: uppercase;
    left: calc(-50% - 7px);
}
.breaking .breaking-box {
    background: #343434;
    border-radius: 50em;
    display: flex;
    flex-wrap: wrap;
    padding: 0;
    align-items: center;
    overflow: hidden;
    color: #fff;
    padding-top: 8px;
    padding-bottom: 8px;
    width: 100%;
    margin: 0 auto;
    margin-top: 10px;
    box-shadow: 0 .125rem .25rem rgba(0,0,0,.075);
    position: relative;
}
.breaking .breaking-content {
    flex: 1;
    display: flex;
    align-items: center;
}
.breaking-box:after {
    content: "";
    width: 60px;
    height: 100%;
    top: 0;
    right: 0;
    z-index: 1;
    background: #343434;
    background: -moz-linear-gradient(left,#343434 25%,rgba(52,52,52,0) 100%);
    background: -webkit-linear-gradient(left,#343434  25%,rgba(52,52,52,0) 100%);
    background: linear-gradient(to left,#343434 25%,rgba(52,52,52,0) 100%);
    position: absolute;
}
.breaking .breaking-title {
    text-transform: uppercase;
    color: #fff;
    font-weight: 600;
    font-size: 12px;
    padding: 3px 12px;
    margin-left: 8px;
    border-radius: 50em;
    background: var(--primary);
    background-image: -webkit-gradient(linear,left top,right top,from(var(--primary)),to(var(--secondary)));
    background-image: linear-gradient(to right,var(--primary) 0,var(--secondary) 100%);
}

.breaking .breaking-link {
    color: #fff;
    font-size: 12px;
    margin-right: 100px;
    font-weight: 600;
}
.breaking .breaking-close {
    border-radius: 50em;
    overflow: hidden;
    padding: 1px;
    color: #5e5e5e;
    background: #ffffff;
    margin-right: 5px;
    cursor: pointer;
    width: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 20px;
}
.widget.custom-menu {
    margin-top: 10px;
}
.billboard {
    margin-top: 15px;
    background: rgba(0,0,0,0.04);
    padding: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
}
main.main {
    min-height: 200px;
    min-width: 990px;
}

.main-row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -12px;
    margin-top: 15px;
    justify-content: space-between;
}

aside.sidebar {
    width: 300px;
    padding: 0 12px;
}
.sidebar-box {
    position: sticky;
    top: 115px;
}

.content .widget-header,
.sidebar .widget-header {
    position: relative;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}
.widget-header svg {
    color: var(--secondary);
    height: 20px;
    display: inline-block;
    width: 20px;
    margin-right: 10px;
}
.widget-desc {
    font-size: 13px;
    color: #666;
    margin-bottom: 15px;
    font-weight: 500;
}
.content .widget-header:after, 
.sidebar .widget-header:after {
    content: '';
    vertical-align: middle;
    width: 20%;
    height: 3px;
    position: relative;
    display: inline-block;
    border-radius: 5px;
    background: var(--primary);
    background-image: -webkit-gradient(linear,left top,right top,from(var(--primary)),to(var(--secondary)));
    background-image: linear-gradient(to right,var(--primary) 0,var(--secondary) 100%);
}

.content .widget-header .widget-title, 
.sidebar .widget-header .widget-title {
    display: inline-flex;
    line-height: 1.4;
    font-weight: 700;
    padding-right: 15px;
    font-size: 14px;
    text-transform: uppercase;
    margin: 0;
    letter-spacing: 2.4px;
}

.popularpos .media-box {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    padding: 5px 12px;
    border-bottom: 5px solid #f3f2f1;
}
.popularpos .media-image {
    height: 0;
    overflow: hidden;
    padding-bottom: 61%;
    position: relative;
}

.popularpos .widget-content {
    overflow: hidden;
    border-radius: 7px;
    /* border-bottom: 4px solid #d9d9d9; */
    background: #e7e7e7;
}

.popularpos .media-item:last-child .media-box {
    border: 0;
}
.popularpos .media-text {
    flex: 1;
    padding-left: 20px;
}
.popularpos .media-category {
    display: inline-flex;
    letter-spacing: 2.4px;
    font-size: 10px;
    color: var(--primary);
    margin-bottom: 1px;
    text-transform: uppercase;
    font-weight: 600;
    font-family: var(--font-2);
}

.popularpos .media-title {
    font-size: 13px;
    margin: 0;
    font-weight: 600;
    -webkit-box-orient: vertical;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    margin-bottom: 5px;
}
.popularpos .media-date {
    font-size: 11px;
    color: #999;
    display: none;
}
.popularpos .media-counter {
    color: #fff;
    font-weight: 700;
    display: block;
    font-size: 70px;
    -webkit-text-stroke: 1px #b7b7b7;
    -webkit-text-fill-color: transparent;
    overflow: hidden;
    line-height: 67px;
    transition: ease all 0.4s;
    width: 32px;
}
.popularpos .media-counter span {
    width: 90px;
    display: block;
}
.popularpos .media-link {
    color: #444;
    -webkit-transition: all .2s ease;
    -moz-transition: all .2s ease;
    -ms-transition: all .2s ease;
    -o-transition: all .2s ease;
    transition: all .2s ease;
}
.content {
    flex: 1;
    padding: 0 12px;
    position: relative;
    width: 100%;
    max-width:    666px;
}
.content.m-auto {
    margin: 0 auto;
}
.content > .widget, .sidebar-box > .widget {
    margin-bottom: 25px;
}
.media {
    position: relative;
}
.media:hover .media-link {
    color: var(--secondary) !important;
}
.media-image:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    background: #ddd;
    animation: 1s infinite shine
}

.media-image:after {
    position: absolute;
    top: 0;
    right: 0;
    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: ""
}
@-webkit-keyframes shimmer {
    100% {
        transform: translateX(100%)
    }
}

@keyframes shimmer {
    100% {
        transform: translateX(100%)
    }
}
.media-image img {
    position: absolute;
    height: 100%;
    width: 100%;
    object-fit: cover;
    z-index: 1;
    object-fit: cover;
    -webkit-transition: .4s ease-in-out;
    -moz-transition: .4s ease-in-out;
    -ms-transition: .4s ease-in-out;
    -o-transition: .4s ease-in-out;
    transition: .4s ease-in-out
}

.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)
}
.media-link:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 3;
}
.widget.headline {
    overflow: hidden;
    position: relative;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 0.125rem 0.25rem rgba(0,0,0,.075);
}
.widget.headline .widget-header {
    position: absolute;
    top: 30px;
    left: -10px;
    z-index: 9;
    padding: 6px 20px 4px 30px;
}

.widget.headline .widget-title {
    margin: 0;
    font-size: 13px;
    color: #fff;
    font-weight: 600;
    text-transform: uppercase;
}
.widget.headline .widget-header:after{
    display:none
}
.widget.headline .widget-header:before {
    position: absolute;
    z-index: -1;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    display: block;
    content: '';
    border-radius: 5px;
    background-color: var(--primary);
    -webkit-transform: skewX(-25deg);
    transform: skewX(-25deg);
}
.widget.headline .headline-big .media-item {
    width: 642px !important;
}
.widget.headline .media-item, 
.widget.slider .media-item, 
.widget.topic .media-item, 
.widget.koleksi .media-item {
    height: auto;
    display: block !important;!i;!;
}
.headline-big .media-image {
    width: 100%;
    margin: 0;
    padding-bottom: 57%;
    height: 0;
    position: relative;
    overflow: hidden;
}
.headline-big .media-date {
    font-size: 11px;
    color: #999;
    margin-top: 10px;
    font-family: var(--font-2);
    letter-spacing: .2px;
}
.headline-big .media-text {
    position: absolute;
    bottom: 0;
    left: 0;
    padding: 160px 20px 30px;
    background: linear-gradient(90deg,#181818,transparent);
    background: -webkit-linear-gradient(90deg,#181818,transparent);
    z-index: 2;
    right: 0;
    top: 0;
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    align-content: flex-end;
}
.headline-big .media-category {
    display: inline-flex;
    border-bottom: 2px solid var(--secondary);
    letter-spacing: 2.4px;
    font-size: 12px;
    color: #fff;
    margin-bottom: 15px;
    text-transform: uppercase;
    font-family: var(--font-2);
}
.headline-small .media-box {
    padding: 10px 5px;
    padding-top: 4px;
}

.headline-small {
    padding: 0 5px;
    background: #ffffff;
    padding-top: 6px;
}
.headline-small .media-image {
    height: 0;
    overflow: hidden;
    padding-bottom: 56%;
    position: relative;
    border-radius: 7px;
}
.widget.headline .widget-content {
    overflow: hidden;
}
.headline-big .media-title {
    font-size: 24px;
    margin: 0;
    font-weight: 600;
    -webkit-box-orient: vertical;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-height: 1.2;
    width: 100%;
}

.headline-big .media-title a {
    color: #fff;
    -webkit-transition: all .2s ease;
    -moz-transition: all .2s ease;
    -ms-transition: all .2s ease;
    -o-transition: all .2s ease;
    transition: all .2s ease;
}
.headline-big .media:hover .media-link {
    color: var(--active) !important;
}
.headline-small .media-title {
    font-size: 13px;
    margin: 0;
    font-weight: 600;
    -webkit-box-orient: vertical;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
}

.headline-small .media-text {
    padding: 10px 0;
    min-height: 54px;
    padding-bottom: 0;
}

.headline-small .media-title a {
    color: #444;
}
.headline-small .slick-current .media-box:before {
    height: 5px;
    background: var(--primary);
    position: absolute;
    top: -11px;
    left: 0;
    right: 0;
    display: block;
    z-index: 2;
    content:""
}

.headline-small .media-item:after {
    content: "";
    width: 100%;
    bottom: 0px;
    left: 0;
    height: 4px;
    z-index: 999;
    position: absolute;
    background: #d9d9d9;
    display: none;
}

.headline-small .slick-list {
    overflow: unset;
}
.slick-dots {
    bottom: 27px;
    padding-right: 20px;
    list-style: none;
    padding: 0;
    text-align: right;
    position: absolute;
    padding-right: 20px;
    margin: 0;
    right: 0;
}

.slick-dots li {
    height: 2px;
    width: 12px;
    margin: 0 3px;
    padding: 0;
    cursor: pointer;
    position: relative;
    display: inline-block;
}

.slick-dots li button {
    border: 0;
    background: 0 0;
    height: 2px;
    width: 12px;
    outline: 0;
    line-height: 0;
    font-size: 0;
    color: transparent;
    padding: 2px;
    cursor: pointer;
    background-color: #fff;
    border-radius: 3px;
}

.slick-dots li.slick-active button {
    background: var(--secondary);
    width: 100%;
}

.slick-dots li.slick-active {
    width: 25px;
}
slick-arrow {
    background: red;
    position: absolute;
}

.slick-arrow {
    position: absolute;
    top: 50%;
    z-index: 2;
    width: 30px;
    height: 30px;
    background: rgba(0, 0, 0, 0.5);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: -50px;
    border-radius: 50em;
    box-shadow: 0 0 0 5px rgba(0,0,0,.3);
}

.slick-arrow svg {
    height: 24px;
}

.arrow-right {
    right: 16px;
}

.arrow-left {
    left: 16px;
}
.widget.slider, .widget.koleksi, .widget.video, .widget.topic {
    padding: 10px;
    background-color: #2a2a2a;
    border-radius: 7px;
    background-repeat: no-repeat;
    background-position: top right;
    background-image: url(../svg/bg_box.svg);
    box-shadow: 0 0.125rem 0.25rem rgba(0,0,0,.075);
}

.content .slider .widget-header .widget-title, .content .topic .widget-header .widget-title, .content .koleksi .widget-header .widget-title, .content .video .widget-header .widget-title, .video .widget-content .media-item:first-child .media-link {
    color: #fff;
}
.slider .widget-content {
    margin: 0 -15px;
}
.slider .media-box {
    padding: 0 6px;
}
.slider .media-image {
    height: 0;
    overflow: hidden;
    padding-bottom: 59%;
    position: relative;
    border-radius: 7px 7px 0 0;
}
.slider .media-title {
    font-size: 13px;
    margin: 0;
    font-weight: 600;
    -webkit-box-orient: vertical;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    margin-bottom: 5px;
}
.slider .media-title .media-link {
    color: #444;
    -webkit-transition: all .2s ease;
    -moz-transition: all .2s ease;
    -ms-transition: all .2s ease;
    -o-transition: all .2s ease;
    transition: all .2s ease;
}

.slider .media-date {
    font-size: 11px;
    color: #6c6c6c;
    margin-top: 5px;
    font-family: var(--font-2);
    letter-spacing: .2px;
}
.slider .media-text {
    padding: 6px 12px;
    background: #fff;
    border-radius: 0 0 7px 7px;
}
.slider .media-category {
    display: inline-flex;
    letter-spacing: 2.4px;
    font-size: 10px;
    color: var(--secondary);
    margin-bottom: 1px;
    text-transform: uppercase;
    font-weight: 600;
    font-family: var(--font-2);
    display: none;
}
.slider .slick-arrow {
    position: absolute;
    top: 26%;
    z-index: 2;
    width: 30px;
    height: 30px;
    background: rgba(0, 0, 0, 0.7);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: -15px;
    border-radius: 50em;
    box-shadow: 0 0 0 5px rgba(0,0,0,.4);
}

.slider .arrow-left {
    left: 3px;
}

.slider .arrow-right {
    right: 3px;
}
.slider .slick-list.draggable {
    margin: 0px 11px;
}



.video .widget-content {
    margin: 0px -6px;
    display: flex;
    flex-wrap: wrap;
    margin-top: -12px;
}
.video .media-box {
    padding: 12px 6px 0;
}
.video .media-image {
    height: 0;
    overflow: hidden;
    padding-bottom: 59%;
    position: relative;
    border-radius: 7px 7px 0 0;
}
.video .media-title {
    font-size: 13px;
    margin: 0;
    font-weight: 600;
    -webkit-box-orient: vertical;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    margin-bottom: 5px;
}
.video .media-title .media-link {
    color: #444;
    -webkit-transition: all .2s ease;
    -moz-transition: all .2s ease;
    -ms-transition: all .2s ease;
    -o-transition: all .2s ease;
    transition: all .2s ease;
}

.video .media-date {
    font-size: 11px;
    color: #6c6c6c;
    margin-top: 5px;
    font-family: var(--font-2);
    letter-spacing: .2px;
}
.video .media-snip {
    -webkit-box-orient: vertical;
    overflow: hidden;
    display: none;
    -webkit-line-clamp: 2;
    font-size: 13px;
    margin-top: 10px;
    color: #555;
}

.video .media-text {
    padding: 6px 12px;
    background: #fff;
    border-radius: 0 0 7px 7px;
}
.video .media-category {
    display: none;
    letter-spacing: 2.4px;
    font-size: 10px;
    color: var(--primary);
    margin-bottom: 1px;
    text-transform: uppercase;
    font-weight: 600;
}
.video .widget-content .media-item {
    width: 33.333333%;
}

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

.video .widget-content .media-item:first-child .media-image {
    width: 50%;
    padding-bottom: 28%;
    border-radius: 7px;
    margin-right: 15px;
}

.video .widget-content .media-item:first-child .media-box {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
}

.video .widget-content .media-item:first-child .media-text {
    flex: 1;
    border-radius: 0 0 7px 0;
    background: transparent;
    border: 0;
    padding: 0;
}

.video .widget-content .media-item:first-child .media-title {
    font-size: 20px;
    line-height: 1.3;
    -webkit-line-clamp: 4;
}
.video .widget-content .media:first-child .media-link:hover {
    color: var(--active) !important;
}
.koleksi .widget-content {
    margin: 0 -15px;
}
.koleksi .media-box {
    padding: 0 6px;
}
.koleksi .media-image {
    height: 0;
    overflow: hidden;
    padding-bottom: 150%;
    position: relative;
    border-radius: 7px;
}
.koleksi .media-title {
    font-size: 13px;
    margin: 0;
    font-weight: 600;
    -webkit-box-orient: vertical;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    margin-bottom: 5px;
}
.koleksi .media-title .media-link {
    color: #fff;
    -webkit-transition: all .2s ease;
    -moz-transition: all .2s ease;
    -ms-transition: all .2s ease;
    -o-transition: all .2s ease;
    transition: all .2s ease;
}

.koleksi .media-date {
    font-size: 11px;
    color: #999;
    margin-top: 5px;
    font-family: var(--font-2);
    letter-spacing: .2px;
}
.koleksi .media-text {
    padding: 12px 0 0;
}
.pin {
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: center;
    justify-content: center;
    opacity: 0.8;
    overflow: hidden;
    border-radius: 17px;
    height: 32px;
    width: 32px;
    background-color: #000000;
    position: absolute;
    top: 8px;
    right: 8px;
    z-index: 2;
    background-size: 20px;
    background-repeat: no-repeat;
    background-position: center;
    background-image: url("data:image/svg+xml,%3Csvg width='24px' height='24px' viewBox='0 0 24 24' version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink'%3E%3Cg id='icon/pin-fill' stroke='none' stroke-width='1' fill='none' fill-rule='evenodd'%3E%3Cg id='Icon-grid'%3E%3C/g%3E%3Cg id='office-push-pin' transform='translate(3.000000, 3.000000)' fill='%23FFFFFF' fill-rule='nonzero'%3E%3Cpath d='M17.7675773,5.15050515 L12.753,0.135927835 C12.5719794,-0.0452783505 12.2780412,-0.0452783505 12.0970206,0.135927835 L12.0757732,0.157175258 C11.7682887,0.46456701 11.598866,0.873463918 11.598866,1.30824742 C11.598866,1.58836082 11.6700309,1.85715464 11.8022474,2.09551546 L6.55534021,6.59857732 C6.1537732,6.23969072 5.64123711,6.04326804 5.09836082,6.04326804 C4.51336082,6.04326804 3.96343299,6.27105155 3.54989691,6.68468041 L3.5184433,6.71613402 C3.33723711,6.89724742 3.33723711,7.191 3.5184433,7.3721134 L6.52258763,10.3762577 C2.31040206,14.9282784 0.201340206,17.2076907 0.195402062,17.2144948 C0.0344226804,17.3978351 0.0433298969,17.6743299 0.215628866,17.8474639 C0.305907216,17.9381134 0.424948454,17.9839485 0.544360825,17.9839485 C0.653195876,17.9839485 0.762309278,17.9459072 0.850082474,17.8691753 C0.855216495,17.8647216 3.13456701,15.7556598 7.68813402,11.5419897 L10.5313918,14.3852474 C10.6219485,14.4758969 10.7407113,14.5211753 10.8593814,14.5211753 C10.9780515,14.5211753 11.0969072,14.4758969 11.1873711,14.3852474 L11.2188247,14.3537938 C11.6324536,13.9402577 11.8602371,13.3902371 11.8602371,12.8053299 C11.8602371,12.2624536 11.6637216,11.7499175 11.3049278,11.3483505 L15.8079897,6.1014433 C16.0463505,6.23365979 16.3151443,6.30482474 16.5952577,6.30482474 C17.030134,6.30482474 17.4389381,6.13549485 17.7463299,5.82791753 L17.7675773,5.8066701 C17.9487835,5.62537113 17.9487835,5.33161856 17.7675773,5.15050515 Z' id='Path'%3E%3C/path%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.koleksi .media-category {
    display: inline-flex;
    letter-spacing: 2.4px;
    font-size: 10px;
    color: var(--active);
    margin-bottom: 1px;
    text-transform: uppercase;
    font-weight: 600;
    font-family: var(--font-2);
}
.koleksi .slick-arrow {
    position: absolute;
    top: 34%;
    z-index: 2;
    width: 30px;
    height: 30px;
    background: rgba(0, 0, 0, 0.7);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: -15px;
    border-radius: 50em;
    box-shadow: 0 0 0 5px rgba(0,0,0,.4);
}

.koleksi .arrow-left {
    left: 3px;
}

.koleksi .arrow-right {
    right: 3px;
}
.koleksi .slick-list.draggable {
    margin: 0px 11px;
}




.topic .widget-content {
    margin: 0 -15px;
}
.topic .media-box {
    padding: 0 6px;
}
.topic .media-image {
    height: 0;
    overflow: hidden;
    padding-bottom: 59%;
    position: relative;
    border-radius: 7px;
}
.topic .media-title {
    font-size: 13px;
    margin: 0;
    font-weight: 600;
    -webkit-box-orient: vertical;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    margin-bottom: 5px;
}
.topic .media-title .media-link {
    color: #fff;
    -webkit-transition: all .2s ease;
    -moz-transition: all .2s ease;
    -ms-transition: all .2s ease;
    -o-transition: all .2s ease;
    transition: all .2s ease;
}

.topic .media-date {
    font-size: 11px;
    color: #999;
    margin-top: 5px;
}
.topic .media-text {
    padding: 12px 0;
    /* text-align: center; */
}
.topic .media-category {
    display: inline-flex;
    letter-spacing: 2.4px;
    font-size: 10px;
    color: var(--active);
    margin-bottom: 1px;
    text-transform: uppercase;
    font-weight: 600;
    font-family: var(--font-2);
}
.topic .slick-arrow {
    position: absolute;
    top: 28%;
    z-index: 2;
    width: 30px;
    height: 30px;
    background: rgba(0, 0, 0, 0.7);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: -15px;
    border-radius: 50em;
    box-shadow: 0 0 0 5px rgba(0,0,0,.4);
}

.topic .arrow-left {
    left: 3px;
}

.topic .arrow-right {
    right: 3px;
}
.topic .slick-list.draggable {
    margin: 0px 11px;
}



.list .media-box {
    display: flex;
    flex-wrap: nowrap;
    padding: 8px 0;
    align-items: center;
    border-bottom: 1px solid #e5e5e5;
}
.list .media-item:first-child .media-box {
    padding-top: 0;
}
.list .media-item:last-child .media-box {
    border: 0;
    padding-bottom: 0;
}
.list .media-image {
    height: 0;
    overflow: hidden;
    padding-bottom: 80px;
    position: relative;
    border-radius: 7px;
    width: 80px;
    margin-right: 12px;
}
.list .media-title {
    font-size: 13px;
    margin: 0;
    font-weight: 600;
    -webkit-box-orient: vertical;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    margin-bottom: 5px;
}
.list .media-title .media-link {
    color: #444;
    -webkit-transition: all .2s ease;
    -moz-transition: all .2s ease;
    -ms-transition: all .2s ease;
    -o-transition: all .2s ease;
    transition: all .2s ease;
}

.list .media-date {
    font-size: 11px;
    color: #6c6c6c;
    margin-top: 5px;
    font-family: var(--font-2);
    letter-spacing: .2px;
}
.list .media-text {
    flex: 1;
}
.list .media-category {
    letter-spacing: 2.4px;
    font-size: 10px;
    color: var(--primary);
    margin-bottom: 1px;
    text-transform: uppercase;
    font-weight: 600;
    display: none;
}
.list.related .media-box:before {
    content: "";
    width: 6px;
    height: 6px;
    display: block;
    background: #b7b7b7;
    margin-right: 15px;
    margin-top: 7px;
}

.list.related .media-box {
    align-items: flex-start;
}


.grid .media-box {
    display: flex;
    flex-wrap: wrap;
    padding: 6px;
    align-items: center;
}
.grid .widget-content {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -6px;
}

.grid .widget-content .media-item {
    width: 50%;
}
.grid .media-item:nth-child(1) .media-box, .grid .media-item:nth-child(2) .media-box {
    padding-top: 0;
}
.grid .media-item:last-child .media-box {
    border: 0;
    padding-bottom: 0;
}
.grid .media-image {
    height: 0;
    overflow: hidden;
    padding-bottom: 80px;
    position: relative;
    border-radius: 7px;
    width: 100%;
    margin-bottom: 6px;
}
.grid .media-title {
    font-size: 13px;
    margin: 0;
    font-weight: 600;
    -webkit-box-orient: vertical;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    margin-bottom: 5px;
}
.grid .media-title .media-link {
    color: #444;
    -webkit-transition: all .2s ease;
    -moz-transition: all .2s ease;
    -ms-transition: all .2s ease;
    -o-transition: all .2s ease;
    transition: all .2s ease;
}

.grid .media-date {
    font-size: 11px;
    color: #6c6c6c;
    margin-top: 5px;
    font-family: var(--font-2);
    letter-spacing: .2px;
}
.grid .media-text {
    flex: 1;
}
.grid .media-category {
    letter-spacing: 2.4px;
    font-size: 10px;
    color: var(--primary);
    margin-bottom: 1px;
    text-transform: uppercase;
    font-weight: 600;
    font-family: var(--font-2);
}

.indeks .media-box {
    padding: 12px 0;
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    border-bottom: 1px solid #e5e5e5;
}
.indeks .media-item:first-child .media-box {
    padding-top: 0;
}
.indeks .media-image {
    height: 0;
    overflow: hidden;
    padding-bottom: 20%;
    position: relative;
    border-radius: 7px;
    width: 250px;
    margin-right: 15px;
}
.indeks .media-title {
    font-size: 20px;
    margin: 0;
    font-weight: 600;
    -webkit-box-orient: vertical;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    margin-bottom: 5px;
}
.indeks .media-title .media-link {
    color: #444;
    -webkit-transition: all .2s ease;
    -moz-transition: all .2s ease;
    -ms-transition: all .2s ease;
    -o-transition: all .2s ease;
    transition: all .2s ease;
}

.indeks .media-date {
    font-size: 11px;
    color: #6c6c6c;
    margin-top: 5px;
    font-family: var(--font-2);
    letter-spacing: .2px;
}
.indeks .media-text {
    flex: 1;
}
.indeks .media-category {
    display: inline-flex;
    letter-spacing: 2.4px;
    font-size: 10px;
    color: var(--primary);
    margin-bottom: 1px;
    text-transform: uppercase;
    font-weight: 600;
    font-family: var(--font-2);
}

.widget-footer {
    padding: 12px 0;
    text-align: center;
}
.pagination {
    display: none;
}
.widget-footer .btn-more {
    background: var(--primary);
    color: #fff;
    padding: 5px 15px;
    display: inline-block;
    border-radius: 50em;
    text-transform: uppercase;
    margin: 0;
    letter-spacing: 2.4px;
    font-size: 12px;
    font-weight: 700;
    border: 2px solid var(--primary);
    -webkit-transition: all .2s ease;
    -moz-transition: all .2s ease;
    -ms-transition: all .2s ease;
    -o-transition: all .2s ease;
    transition: all .2s ease;
    cursor: pointer;
}

.widget-footer .btn-more:hover {
    background: transparent;
    color: #444;
    border-color: var(--primary);
}
.no-more {
    display: none;
    font-size: 13px;
    color: #6f6f6f;
    align-items: center;
}
.no-more svg {
    height: 12px;
}

.no-more svg {
    color: #8BC34A;
}
.widget-footer .loading {
    width: 32px;
    height: 32px;
    position: relative;
    margin: 12px auto;
    display: none;
}

.widget-footer .loading .double-bounce1,.widget-footer .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
}

.widget-footer .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)
    }
}
.breadcrumb {
    margin-bottom: 10px;
    padding-bottom: 5px;
    border-bottom: 1px solid #e5e5e5;
}

.breadcrumb ul {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
}

.breadcrumb ul svg {
    height: 10px;
    margin: 0 5px;
    color: #666;
}

.breadcrumb ul li:first-child a {
    color: #6c6c6c;
}

.breadcrumb ul li a {
    display: block;
    font-weight: 600;
    font-size: 10px;
    text-transform: uppercase;
    margin: 0;
    letter-spacing: 2.4px;
    font-family: var(--font-2);
}

.breadcrumb ul li {
    display: flex;
    align-items: center;
}
.post-title h1 {
    margin: 0;
    font-size: 36px;
    line-height: 1.2;
    text-align: center;
    font-weight: 700;
}
.content.m-auto .post-title h1 {
    text-align: left;
}
.post-title {
    margin-bottom: 15px;
}
.content.m-auto .post-title {
    margin-bottom: 0px;
}
.post-more {
    display: flex;
    justify-content: space-between;
    flex-wrap: nowrap;
    align-items: center;
    margin-bottom: 15px;
    flex-direction: column;
}

.post-more .post-author-box {
    flex: 1;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin-bottom: 15px;
}

.post-more .post-authorname-box {
    flex: 1;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.post-more .post-author-avatar {
    margin-right: 10px;
}

.post-more .post-author-avatar img {
    width: 48px;
    height: 48px;
    border-radius: 50em;
}

.post-more .post-authorname a {
    font-weight: 600;
    color: #444;
    font-size: 13px;
}

.post-more .post-authorname-box time {
    font-size: 13px;
    color: #6c6c6c;
    font-family: var(--font-2);
}
.post-more .post-authorname-box time:before {
    content: "-";
    margin-right: 5px;
}
.post-more .post-authorname svg {
    height: 12px;
    color: var(--primary);
}

.post-more .post-authorname {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}
.post-detail .widget {
    margin-bottom: 25px;
}
.post-featured {
    position: relative;
    margin-bottom: 5px;
}
.image-box, .post-article figure img {
    overflow: hidden;
    border-radius: 7px;
}

figure {
    max-width: 100%;
}

.post-featured img {
    width: 100%;
    height: auto;
    display: block;
}

.post-featured figcaption, .post-article figcaption {
    font-size: 13px;
    padding: 10px 0;
    color: #6c6c6c;
    text-align: left;
    margin: 0;
}

.post-featured figure {
    margin: 0;
}

.btn-viewbox {
    position: absolute;
    right: 10px;
    top: 10px;
}

.btn-viewbox .btn-biew {
    background: rgba(0,0,0,0.6);
    color: #fff;
    border: 0;
    outline: 0;
    padding: 7px 10px;
    border-radius: 4px;
    font-size: 10px;
    text-transform: uppercase;
    margin: 0;
    letter-spacing: 2.4px;
    display: flex;
    align-items: center;
    cursor: pointer;
}

.icon-expand {
    background-image: url("data:image/svg+xml,%3Csvg fill='none' height='24' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='2.5' viewBox='-1 -1 26 26' width='24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M8 3H5a2 2 0 0 0-2 2v3m18 0V5a2 2 0 0 0-2-2h-3m0 18h3a2 2 0 0 0 2-2v-3M3 16v3a2 2 0 0 0 2 2h3'/%3E%3C/svg%3E");
    width: 14px;
    height: 14px;
    display: block;
    background-repeat: no-repeat;
    background-size: 14px;
    background-position: center;
    margin-right: 5px;
}
.post-share {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}
.caas-attr-separator {
    width: 250px;
}
.caas-attr-separator .separator {
    border-color: #3a3a3a transparent transparent;
    border-style: solid;
    border-width: 8px 3px 0 0;
    display: inline-block;
    width: 77%;
}
.caas-attr-separator .separator-ext {
    border-color: transparent transparent var(--primary);
    border-style: solid;
    border-width: 0 0 9px 3px;
    display: inline-block;
    margin-left: 10px;
    width: 10%;
}
.post-body .post-article {
    font-size: 15px;
    color: #111;
    line-height: 1.8;
    max-width: 666px;
}
.post-body .post-article.notfull {
    max-width: 471px;
}
.post-body {
    display: flex;
    flex-wrap: nowrap;
    margin-bottom: 25px;
}

.post-body .post-content {
    flex: 1;
}

.post-body .post-ads {
    margin-right: 15px;
    padding: 10px;
    background: rgba(0,0,0,0.04);
    width: 160px;
}

.post-body .sticky-ads {
    position: sticky;
    top: 105px;
}
.bacajuga strong {
    letter-spacing: 2.4px;
    font-size: 12px;
    text-transform: uppercase;
    margin-right: 5px;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.bacajuga a {
    font-weight: 700;
    display: block;
    line-height: 1.5;
}



.bacajuga {
    padding: 15px 0;
}

.bacajuga strong:after {
    content: '';
    vertical-align: middle;
    width: 20%;
    height: 2px;
    background-color: var(--primary);
    position: relative;
    display: inline-block;
    border-radius: 5px;
    margin-left: 10px;
}
.paginationPostLabel {
    letter-spacing: 2.4px;
    font-size: 12px;
    text-transform: uppercase;
    margin-right: 10px;
    display: flex;
    align-items: center;
    font-weight: 700;
}

.paginationPostNum {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    flex: 1;
}

.pagination-post {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    background: #e7e7e7;
    padding: 10px;
    border-radius: 7px;
    margin-bottom: 25px;
}

.paginationPostLink a, .paginationPostLink span {
    border-radius: 50%;
    background: #ccc;
    color: #fff;
    width: 30px;
    height: 30px;
    display: flex;
    margin: 0;
    line-height: 1.2;
    align-items: center;
    justify-content: center;
}
.paginationPostLink .post-page-numbers.current {
    background: var(--primary);
    color: #fff;
}
.paginationPostLink {
    display: flex;
    gap: 5px;
    flex-wrap: wrap;
    align-items: center;
}
.paginationPostNav a .btn-next, .showall-page a {
    position: relative;
    display: inline-flex;
    align-items: center;
    line-height: 1.4;
    text-align: center;
    cursor: pointer;
    vertical-align: top;
    border: 1px solid transparent;
    border-radius: 7px;
    font-size: 12px;
    padding: 0 12px;
    background: var(--primary);
    color: #fff;
    height: 28px;
    font-weight: 600;
}
.paginationPostNav a .btn-next svg {
    height: 12px;
    margin-left: 10px;
}
.widget.redaksi {
    border-bottom: 2px dashed #d7d7d7;
    padding-bottom: 10px;
    font-size: 14px;
}
.widget.tag-list .widget-content ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
}

.widget.tag-list .widget-content h4 {
    font-size: 12px;
    margin: 0;
}

.widget.tag-list .widget-content a {
    max-width: 150px;
    overflow: hidden;
    display: block;
    position: relative;
    text-overflow: ellipsis;
    white-space: nowrap;
    background: #e7e7e7;
    padding: 7px 10px;
    border-radius: 50em;
    color: #333;
    -webkit-transition: all .2s ease;
    -moz-transition: all .2s ease;
    -ms-transition: all .2s ease;
    -o-transition: all .2s ease;
    transition: all .2s ease;
}

.widget.tag-list .widget-content a:hover {
    background: var(--primary);
    color: #fff;
}

path.wr-primary {
    fill: var(--primary);
}


.notfound {
    text-align: center;
    font-size: 14px;
}

.notfound-button a {
    position: relative;
    text-align: center;
    cursor: pointer;
    vertical-align: top;
    background: var(--primary);
    color: #fff;
    padding: 10px 15px;
    height: auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 7px;
    text-transform: uppercase;
    margin: 0;
    letter-spacing: 2.4px;
    font-family: var(--font-2);
    font-weight: 600;
    font-size: 12px;
}
.notfound-button svg {
    height: 14px;
    margin-left: 10px;
}

.notfound-title h1 {
    margin: 0;
}

.notfound-desc p {
    margin-top: 0;
    color: #999;
}
footer.footer {
    margin-top: 30px;
    background-color: #2a2a2a;
    color: #cbcbcb;
    padding: 30px 0;
    min-width: 1014px;
}
.footer-left .textwidget strong {
    color: #fff;
}
.footer-left .widget img {
    height: 35px !important;
    width: auto;
}
.footer-right .textwidget {
    font-size: 13px;
    background: #343434;
    padding: 5px 15px;
    border-radius: 10px;
    font-weight: 500;
}
.footer-right .textwidget p {
    display: flex;
    align-items: center;
    flex-direction: row;
}


.footer-right .textwidget img {
    width: 30px;
    height: 30px;
    margin-right: 15px;
}
.footer-row {
    display: flex;
    flex-wrap: nowrap;
    margin: 0 -12px;
}

.footer-left, .footer-right {
    width: 50%;
    padding: 0 12px;
}
.footer-right {
    padding-top: 80px;
}

.footer .widget-title {
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    margin: 0;
}
.footer-left .textwidget {
    font-size: 13px;
    font-weight: 500;
}
.footer .widget {
    margin-bottom: 25px;
}

.footer-left ul.menu,
.footer-right ul.menu {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    padding: 0;
    margin: 0 -5px;
}

.footer-left ul.menu li,
.footer-right ul.menu li {
    width: 33.333333%;
}

.footer-left ul.menu li a, 
.footer-right ul.menu li a {
    padding: 2px 5px;
    display: block;
    color: #cbcbcb;
    font-size: 13px;
    font-weight: 500;
}
svg.line, svg .line {
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 2;
}
.info-item svg {
    height: 24px;
    color: var(--secondary);
    margin-right: 10px;
    max-width: 24px;
    width: 100%;
}
.info-item span {
    flex: 1;
    margin-top: 3px;
}
.info-item {
    display: flex;
    flex-wrap: nowrap;
    align-items: flex-start;
    margin-bottom: 5px;
}
.footer .widget-header:before {
    content: "";
    width: 12px;
    height: 2px;
    display: block;
    background: var(--primary);
    margin-right: 10px;
    border-radius: 5px;
    display: none;
}

.footer .widget-header {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    position: relative;
    margin-bottom: 10px;
}
.footer .widget.app .widget-content {
    display: flex;
    flex-wrap: nowrap;
    gap: 5px;
}

.footer .widget.app img {
    height: 35px !important;
    width: auto;
}
.social-box {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
}

.color .social-box a {
    color: #fff;
    border-radius: 50em;
    position: relative;
}
.social-box a {
    background: #343434;
    width: 32px;
    height: 32px;
    color: #8b8b8b;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 7px;
}

.social-box svg {
    height: 26px;
}
.social-box a.twitter svg {
    height: 26px;
}
.color .social-box svg, .color .social-box a.twitter svg {
    height: 18px;
}
.color .social-box a.copylink svg {
    height: 17px;
}
.color .social-box a.facebook {
    background: #3b5998;
}

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

.color .social-box a.telegram {
    background: #08c;
}
.color .social-box a.whatsapp {
    background: #25d366;
}
.color .social-box a.copylink {
    background: #b1b1b1;
}
.color .social-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%);
}

.color .social-box a.youtube {
    background: #ff0002;
}

.color .social-box a.tiktok {
    background: #000;
}
.copylink.copied:before {
    content: attr(data-copied);
    position: absolute;
    background: #9d9d9d;
    padding: 5px 10px;
    color: #ffffff;
    font-size: 10px;
    top: calc(100% + 8px);
    white-space: nowrap;
    pointer-events: none;
    -webkit-transition: opacity .2s;
    -moz-transition: opacity .2s;
    -ms-transition: opacity .2s;
    -o-transition: opacity .2s;
    transition: opacity .2s;
    z-index: 2;
    border-radius: 5px;
    font-weight: 600;
    text-transform: uppercase;
    left: calc(-50% - 36px);
}

.copylink.copied:after {
    position: absolute;
    bottom: -8px;
    right: 10px;
    display: block;
    content: '';
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 5px 6px;
    border-color: transparent transparent #9d9d9d;
}
.sticky-ads-left,.sticky-ads-right {
    position: fixed;
    width: 315px;
    top: 100px;
    z-index: 989;
    padding: 0 10px;
    background: rgba(0,0,0,0.04);
    height: 100%;
}

.sticky-ads-left {
    left: 50%;
    margin-left: -845px;
    text-align: left
}

.sticky-ads-left .widget {
    float: right
}

.sticky-ads-right {
    right: 50%;
    margin-right: -845px;
    text-align: right
}

.sticky-ads-right .widget {
    float: left
}


#startCategory, #startDate {
    padding: 12px;
    border: 1px solid rgba(0,0,0,.1);
    background-color: transparent;
    border-radius: 10px;
    z-index: 2;
    padding-right: 40px;
    appearance: none;
    outline: 0;
    min-width: 200px;
}
.btn-form-indeks {
    transition: all .25s;
    -moz-transition: all .25s;
    -webkit-transition: all .25s;
    -o-transition: all .25s;
    cursor: pointer;
    width: 100px;
    padding: 12px;
    font-weight: 700;
    -webkit-appearance: none;
    text-align: center;
    text-transform: uppercase;
    background: var(--primary);
    border-radius: 10px;
    color: #fdfdfd;
}

.widget-subheader {
    margin-bottom: 15px;
    display: flex;
    gap: 10px;
}
.btn-form-indeks:hover {
    background-color: #212121;
}
.subcategory:before {
    content: "";
    position: absolute;
    top: 16px;
    right: 16px;
    height: 6px;
    width: 6px;
    display: block;
    border: solid #727272;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
}


.subcategory, #boxDate {
    position: relative;
}
#boxDate svg {
    height: 16px;
    color: #727272;
    position: absolute;
    right: 14px;
    top: 14px;
}

.banner {
    position: relative;
    display: block;
    margin: 0 auto;
}

.banner:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    background: #dddddd;
    background-repeat: no-repeat;
    background-position: center;
    background-size: 20px;
    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;
}

.ads-sticky-bottom {
    margin: 0 auto;
    padding: 0;
    position: fixed;
    bottom: 0;
    width: 728px;
    z-index: 999;
    height: auto;
    text-align: center;
    background: rgb(255 255 255 / 50%);
    min-height: 60px;
    max-height: 90px;
    left: 0;
    right: 0
}

.btn-ads-close {
    position: absolute;
    background: var(--primary);
    display: inline-block;
    right: 0;
    top: -16px;
    padding: 2px 8px;
    font-size: 10px;
    line-height: 1;
    color: #fff;
    cursor: pointer;
    border-radius: 4px 4px 0 0;
    text-transform: uppercase;
    margin: 0;
    letter-spacing: 2.4px;
}

.ads-close-icon {
    position: relative;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    width: 10px;
    height: 10px
}

.ads-close-icon:after,.ads-close-icon:before {
    content: "";
    position: absolute;
    top: 50%;
    right: 0;
    width: 100%;
    height: 1px;
    background: #fff;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg)
}
.ads-close-icon:before {
    content: "";
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg)
}
.slick-autoplay-toggle-button {
    display: none;
}

.comment-respond, .commentsArea {display: block;}

.comment-reply-title small a {
    text-transform: capitalize;
    margin-left: 5px;
    color: var(--primary);
    display: block;
    letter-spacing: 0.4px;
}
.comment-form {
    position: relative;
}
.comment-notes {
    line-height: 1.4;
    font-size: 13px;
    color: #444;
}

input#author,input#email {
    margin: 0 0 10px;
    background: #fff;
    width: 100%;
    padding: 10px;
    font-size: 13px;
    border-radius: 7px;
    display: block;
}

textarea#comment {
    background: #fff;
    border: 1px solid #e6e6e6;
    width: 100%;
    resize: unset;
    font-size: 13px;
    padding: 10px 10px 60px;
    height: 166px!important;
    border-radius: 7px;
    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;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    -o-border-radius: 4px;
    border-radius: 0 0 12px 12px;
    width: calc(100% - 2px);
    resize: unset;
    text-align: right;
    padding: 10px;
    border-top: 1px solid #e6e6e6;
    position: absolute;
    right: 1px;
    bottom: 8px;
    background: #fff;
    left: 1px;
}

p.form-submit:after {
    content: "";
    position: absolute;
    right: 17px;
    width: 20px;
    height: 20px;
    top: 15px;
    background-image: url("data:image/svg+xml,%0A%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23fff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' class='feather feather-send'%3E%3Cline x1='22' y1='2' x2='11' y2='13'%3E%3C/line%3E%3Cpolygon points='22 2 15 22 11 13 2 9 22 2'%3E%3C/polygon%3E%3C/svg%3E");
    background-size: 16px;
    background-repeat: no-repeat;
    background-position: center;
}

p.form-submit input[type=submit] {
    display: inline-block;
    padding: 5px 30px 5px 10px;
    line-height: 1.4;
    cursor: pointer;
    vertical-align: top;
    background: var(--primary);
    border: 1px solid var(--primary);
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    -o-border-radius: 4px;
    border-radius: 4px;
    color: #fff;
    font-size: 12px;
    margin: 0;
    letter-spacing: 0.4px;
    font-weight: 600;
}

.comment-reply-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    line-height: 1.4;
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    margin: 0;
    letter-spacing: 2.4px;
}

.notif {
    line-height: 1.4;
    font-size: 13px;
    color: #444;
    padding: 15px;
    border: 0;
    text-align: center
}

.notif-header {
    font-weight: 700
}

.notif-image svg {
    height: 70px;
    color: #e5e5e5
}

h2.comments_title {
    display: block;
    border: none;
    margin: 10px 0 20px;
    padding: 0;
    line-height: 1.4;
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 2.4px;
}

.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 {
    font-family: var(--font-2);
    line-height: 1.4;
    display: block;
    word-wrap: break-word;
    margin: 5px 0 0
}
.commentBody {
    flex: 1;
}
.commentAuthorName {
    color: #000;
    font-size: 16px;
    font-weight: 600
}

.commentHeader time {
    font-size: 12px;
    color: #999;
    font-family: var(--font-2);
}

.commentBodyFooter {
    font-size: 12px;
    color: #a7a7a7;
    margin: 10px 0 0;
    display: flex;
    align-items: center
}

.commentBodyFooter a {
    margin-right: 15px;
    color: #a7a7a7;
    font-family: var(--font-2);
}

.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: 600;
    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;
    font-weight: 600;
}

.comment-form-cookies-consent {
    display: flex;
    align-items: flex-start;
    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: -3px;
    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: 6px;
    height: 12px;
    border: solid white;
    border-width: 0 2px 2px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
    content: "";
    position: absolute;
    top: 0px;
    left: 8px;
}
@media (prefers-color-scheme: dark) {
    
    body.otomatis .header-brand .logo-light {
        display: none !important;
    }
    body.otomatis .header-brand .logo-darkmode {
        display: block;
    }
    body.otomatis, body.otomatis #startCategory, body.otomatis #startDate {
        background: var(--dark-2);
    }
    body.otomatis .header-search-wrapper, body.otomatis header.header, body.otomatis footer.footer, body.otomatis .widget.headline, body.otomatis .slider .media-text, body.otomatis .video .media-text, body.otomatis .patner-box, body.otomatis .pagination-post, body.otomatis .mode-item.active, body.otomatis .mode-item:hover, body.otomatis p.form-submit {
        background: var(--dark-1);
    }
    body.otomatis .sticky-ads-left, body.otomatis .sticky-ads-right, body.otomatis .billboard, body.otomatis .post-body .post-ads {
        background: var(--transparant);
    }
    body.otomatis footer.footer,
    body.otomatis .footer-left ul.menu li a, 
    body.otomatis .footer-right ul.menu li a {
        color: var(--semiwhite);
    }
     body.otomatis .patner-box ul li a:hover {
        color: var(--secondary);
    }
     body.otomatis .navigation ul li:hover > a {
        color: var(--active);
    }
    body.otomatis, body.otomatis .navigation ul li a, body.otomatis .footer-right .textwidget, body.otomatis .footer .widget-title, body.otomatis .video .media-title .media-link, body.otomatis .topic .media-title .media-link, body.otomatis .koleksi .media-title .media-link, body.otomatis .slider .media-title .media-link, body.otomatis .headline-small .media-title a, body.otomatis .indeks .media-title .media-link, body.otomatis .list .media-title .media-link, body.otomatis .grid .media-title .media-link, body.otomatis .popularpos .media-link, body.otomatis .widget-footer .btn-more:hover, body.otomatis .patner-box ul li a, body.otomatis .post-body .post-article, body.otomatis .post-more .post-authorname a, body.otomatis .widget.tag-list .widget-content a, body.otomatis .breaking .breaking-link, body.otomatis #startCategory, body.otomatis #startDate, body.otomatis .header-input-search, body.otomatis input#author, body.otomatis input#email, body.otomatis .notif-header, body.otomatis .commentAuthorName, body.otomatis .commentBodyText p,body.otomatis textarea#comment {
        color: var(--white);
    }
    body.otomatis .mode > *, body.otomatis .patner svg, body.otomatis .header-date, body.otomatis .video .media-snip, body.otomatis .post-featured figcaption, body.otomatis .post-more .post-authorname-box time, body.otomatis .breadcrumb ul li:first-child a, body.otomatis .mode-item, body.otomatis .list .media-date, body.otomatis .grid .media-date, body.otomatis .indeks .media-date, body.otomatis .slider .media-date, body.otomatis .post-featured figcaption, body.otomatis .post-article figcaption, body.otomatis .comment-notes, body.otomatis .notif, body.otomatis .notif-image svg, body.otomatis .commentBodyText, body.otomatis .notfound-desc, p.logged-in-as {
        color: var(--semiwhite);
    }
    body.otomatis .header-search-wrapper, body.otomatis .footer-right .textwidget {
        background: var(--dark-2);
    }
    body.otomatis .headline-small .media-item:after {
        background: var(--dark-3);
    }
    body.otomatis .header-social ul li a, body.otomatis .social-box a, body.otomatis .popularpos .media-box, body.otomatis .paginationPostLink a, body.otomatis .paginationPostLink span, body.otomatis .widget.tag-list .widget-content a, body.otomatis .popularpos .widget-content, body.otomatis .list.related .media-box:before, body.otomatis .mode-box, body.otomatis .breaking .breaking-box, body.otomatis .headline-small, body.otomatis .navigation ul li>.sub-menu, body.otomatis .wp-block-gallery .slick-dots, body.otomatis input#author, body.otomatis input#email, body.otomatis textarea#comment {
        background: var(--dark-4);        
    }
    body.otomatis .header-search-wrapper, body.otomatis .footer-right .textwidget, body.otomatis .slider .media-text, body.otomatis .video .media-text, body.otomatis .indeks .media-box, body.otomatis .list .media-box, body.otomatis .popularpos .widget-content, body.otomatis .patner-box, body.otomatis .widget.redaksi, body.otomatis .breadcrumb, body.otomatis #startCategory, body.otomatis #startDate, body.otomatis .commentsArea li {
        border-color: var(--dark-3);
    }
    body.otomatis .headline-small .media-box, 
    body.otomatis .header-right > * {
        border-color: var(--dark-4);
    }
    body.otomatis p.form-submit,
    body.otomatis .popularpos .media-box, body.otomatis .wp-block-gallery .slick-dots, body.otomatis input#author, body.otomatis input#email, body.otomatis textarea#comment{
        border-color: var(--dark-1);
    }
    body.otomatis .headline-small .slick-current .media-box {
        border-color: var(--active);        
    }
    body.otomatis .navigation ul li.menu-item-has-children:after {
        filter: var(--filter);
    }
    body.otomatis .slick-arrow {
        box-shadow: 0 0 0 5px rgb(145 145 145 / 40%);
    }
    body.otomatis .media-image:before {
        background: #121212;
    }
    body.otomatis .media-image:after {
        background-image: linear-gradient(90deg,rgb(0 0 0 / 0%) 0,rgb(0 0 0 / 20%) 20%,rgb(0 0 0 / 50%) 60%,rgb(0 0 0 / 0%));
    }
    body.otomatis .banner:before {
        background: #2d2d2d;
        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");
        background-repeat: no-repeat;
        background-position: center;
        background-size: 20px;
    }
    body.otomatis .ads-sticky-bottom {
        background: rgb(18 18 18 / 50%);
    }
}
@media (prefers-color-scheme: light) {
}

    body.darkmode .header-brand .logo-light {
        display: none !important;
    }
    body.darkmode .header-brand .logo-darkmode {
        display: block;
    }
    body.darkmode, body.darkmode #startCategory, body.darkmode #startDate {
        background: var(--dark-2);
    }
    body.darkmode .header-search-wrapper, body.darkmode header.header, body.darkmode footer.footer, body.darkmode .widget.headline, body.darkmode .slider .media-text, body.darkmode .video .media-text, body.darkmode .patner-box, body.darkmode .pagination-post, body.darkmode .mode-item.active, body.darkmode .mode-item:hover, body.darkmode p.form-submit {
        background: var(--dark-1);
    }
    body.darkmode .sticky-ads-left, body.darkmode .sticky-ads-right, body.darkmode .billboard, body.darkmode .post-body .post-ads {
        background: var(--transparant);
    }
    body.darkmode footer.footer,
    body.darkmode .footer-left ul.menu li a, 
    body.darkmode .footer-right ul.menu li a {
        color: var(--semiwhite);
    }
     body.darkmode .patner-box ul li a:hover {
        color: var(--secondary);
    }
     body.darkmode .navigation ul li:hover > a {
        color: var(--active);
    }
    body.darkmode, body.darkmode .navigation ul li a, body.darkmode .footer-right .textwidget, body.darkmode .footer .widget-title, body.darkmode .video .media-title .media-link, body.darkmode .topic .media-title .media-link, body.darkmode .koleksi .media-title .media-link, body.darkmode .slider .media-title .media-link, body.darkmode .headline-small .media-title a, body.darkmode .indeks .media-title .media-link, body.darkmode .list .media-title .media-link, body.darkmode .grid .media-title .media-link, body.darkmode .popularpos .media-link, body.darkmode .widget-footer .btn-more:hover, body.darkmode .patner-box ul li a, body.darkmode .post-body .post-article, body.darkmode .post-more .post-authorname a, body.darkmode .widget.tag-list .widget-content a, body.darkmode .breaking .breaking-link, body.darkmode #startCategory, body.darkmode #startDate, body.darkmode .header-input-search, body.darkmode input#author, body.darkmode input#email, body.darkmode .notif-header, body.darkmode .commentAuthorName, body.darkmode .commentBodyText p,body.darkmode textarea#comment {
        color: var(--white);
    }
    body.darkmode .mode > *, body.darkmode .patner svg, body.darkmode .header-date, body.darkmode .video .media-snip, body.darkmode .post-featured figcaption, body.darkmode .post-more .post-authorname-box time, body.darkmode .breadcrumb ul li:first-child a, body.darkmode .mode-item, body.darkmode .list .media-date, body.darkmode .grid .media-date, body.darkmode .indeks .media-date, body.darkmode .slider .media-date, body.darkmode .post-featured figcaption, body.darkmode .post-article figcaption, body.darkmode .comment-notes, body.darkmode .notif, body.darkmode .notif-image svg, body.darkmode .commentBodyText, body.darkmode .notfound-desc, p.logged-in-as {
        color: var(--semiwhite);
    }
    body.darkmode .header-search-wrapper, body.darkmode .footer-right .textwidget {
        background: var(--dark-2);
    }
    body.darkmode .headline-small .media-item:after {
        background: var(--dark-3);
    }
    body.darkmode .header-social ul li a, body.darkmode .social-box a, body.darkmode .popularpos .media-box, body.darkmode .paginationPostLink a, body.darkmode .paginationPostLink span, body.darkmode .widget.tag-list .widget-content a, body.darkmode .popularpos .widget-content, body.darkmode .list.related .media-box:before, body.darkmode .mode-box, body.darkmode .breaking .breaking-box, body.darkmode .headline-small, body.darkmode .navigation ul li>.sub-menu, body.darkmode .wp-block-gallery .slick-dots, body.darkmode input#author, body.darkmode input#email, body.darkmode textarea#comment {
        background: var(--dark-4);        
    }
    body.darkmode .header-search-wrapper, body.darkmode .footer-right .textwidget, body.darkmode .slider .media-text, body.darkmode .video .media-text, body.darkmode .indeks .media-box, body.darkmode .list .media-box, body.darkmode .popularpos .widget-content, body.darkmode .patner-box, body.darkmode .widget.redaksi, body.darkmode .breadcrumb, body.darkmode #startCategory, body.darkmode #startDate, body.darkmode .commentsArea li {
        border-color: var(--dark-3);
    }
    body.darkmode .headline-small .media-box, 
    body.darkmode .header-right > * {
        border-color: var(--dark-4);
    }
    body.darkmode p.form-submit,
    body.darkmode .popularpos .media-box, body.darkmode .wp-block-gallery .slick-dots, body.darkmode input#author, body.darkmode input#email, body.darkmode textarea#comment{
        border-color: var(--dark-1);
    }
    body.darkmode .headline-small .slick-current .media-box {
        border-color: var(--active);        
    }
    body.darkmode .navigation ul li.menu-item-has-children:after {
        filter: var(--filter);
    }
    body.darkmode .slick-arrow {
        box-shadow: 0 0 0 5px rgb(145 145 145 / 40%);
    }
    body.darkmode .media-image:before {
        background: #121212;
    }
    body.darkmode .media-image:after {
        background-image: linear-gradient(90deg,rgb(0 0 0 / 0%) 0,rgb(0 0 0 / 20%) 20%,rgb(0 0 0 / 50%) 60%,rgb(0 0 0 / 0%));
    }
    body.darkmode .banner:before {
        background: #2d2d2d;
        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");
        background-repeat: no-repeat;
        background-position: center;
        background-size: 30px;
    }
    body.darkmode .ads-sticky-bottom {
        background: rgb(18 18 18 / 50%);
    }
