:root {
--txt: #000000;
--link: #000000;
--hover: #21409a;
--txtbtnframe: #ffffff;
--bgbtnframe: #21409a;
--bgmenu1: #21409a;
--bgmenu2: #007cbd;
--txtmenu: #ffffff;
--txtmenuactive: #fcc43f;
--bgsubmenu: #f0f0f0;
--txtsubmenu: #000000;
--txtsubmenuactive: #21409a;
--color1: #21409a;
--color2: #007cbd;
--color3: #ef672f;
--color4: #75b72e;
--color5: #fcc43f;
--color6: #ee4023;
--color7: #257AE4;
--bgslider1: #21409a;
--bgslider2: #007cbd;
--txtslider: #ffffff;
--txtslideractive: #fcc43f;
--txtwidget: #21409a;
--txtcategory: #ef672f;
--txttitle: #000000;
--txttitlehover: #21409a;
--txtdate: #666666;
--txthastag: #999999;
--txtpos: #000000;
--txtlinkpos: #21409a;
--txttitlepos: #21409a;
--txtauthorpos: #ef672f;
--txtdatepos: #999999;
--bacajuga: #000000;
--titlebacajuga: #21409a;
--garisbacajuga: #21409a;
--bgpagination: #cccccc;
--txtpagination: #ffffff;
--bgpaginationactive: #21409a;
--txtpaginationactive: #ffffff;
--btnpaginationmore: #cccccc;
--txtpaginationmore: #ef672f;
--bgmore1: #ef672f;
--txtmore1: #ffffff;
--bgloading: #21409a;
--bgmore2: #f0f0f0;
--txtmore2: #ef672f;
--txtmoreactive2: #000000;
--bgfooter: #f0f0f0;
--bgfooter1: #21409a;
--bgfooter2: #007cbd;
--colorfooter: #333333; 
--widthparallaxmobile: 300px;
--heightparallaxmobile: 600px;
}
.color1 {
    color: var(--color1);
}
.color2 {
    color: var(--color2);
}
.color3 {
    color: var(--color3);
}
.color4 {
    color: var(--color4);
}
.color5 {
    color: var(--color5);
}
.color6 {
    color: var(--color6);
}
.color7 {
    color: var(--color7);
}
a:hover {
    color: var(--color1);
}
*:before, *:after {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
html {
    background: #fff;
    color: var(--txt);
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
}
html, button, input, select, textarea {
    font-family: Arial;
}
body {
    margin: 0;
    line-height: 1.4;
    font-size: 16px;
    font-family: "Helvetica", Helvetica-FF, Arial, Tahoma, sans-serif;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeSpeed;
    background: #f4f4f4;
}
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    margin-top: 0;
    margin-bottom: 8px;
    line-height: 1.3;
}
* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
a {
    background: transparent;
    color: var(--link);
    text-decoration: none;
    -webkit-transition: all 0.3s ease-in-out 0s;
    -moz-transition: all 0.3s ease-in-out 0s;
    -ms-transition: all 0.3s ease-in-out 0s;
    -o-transition: all 0.3s ease-in-out 0s;
    transition: all 0.3s ease-in-out 0s;
}
@-webkit-keyframes shimmer{
    100%{
        transform:translateX(100%)
    }
}
@keyframes shimmer{
    100%{
        transform:translateX(100%)
    }
}
.box {
    max-width: 640px;
    margin: auto;
    background: #ffffff;
}
.media-link:before {
    position: absolute;
    content: "";
    bottom: 0;
    left: 0;
    top: 0;
    right: 0;
    overflow: hidden;
    white-space: nowrap;
    z-index: 2;
}
.media-link {
    position: static;
    color: var(--txttitle);
}
.media-link:hover {
    color: var(--txttitlehover);
}
.media-text {
    flex: 1;
    position: static;
    font-size: 12px;
    color: var(--txtdate);
    font-family: Montserrat-FF, Arial, Tahoma, sans-serif;
}
.media-title {
    margin: 0;
    flex: 1;
    font-size: 14px;
}
.media-image img {
    -webkit-transition: all .4s ease-in-out 0s;
    -moz-transition: all .4s ease-in-out 0s;
    -ms-transition: all .4s ease-in-out 0s;
    -o-transition: all .4s ease-in-out 0s;
    transition: all .4s ease-in-out 0s;
}
.media {
    position: relative;
    overflow: hidden;
    flex: 1;
}
.media:hover .media-image img {
    -webkit-transform:scale(1.15);
    -moz-transform:scale(1.15);
    -ms-transform:scale(1.15);
    -o-transform:scale(1.15);
    transform:scale(1.15)
}
.media-image img {
    display: block;
    object-fit: cover;
    width: 100%;
    z-index: 2;
    position: absolute;
    height: 100%;
}
.media-image:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    background: #eeeeee;
    animation: shine 1s infinite;
}
.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: shimmer 2s infinite;
    animation: shimmer 2s infinite;
    content: "";
}

.popup-menu {
    border-radius: 4px;
    position: fixed;
    overflow: visible;
    top: 53px;
    right: 12px;
    bottom: 12px;
    left: 12px;
    margin: auto;
    padding: 8px;
    z-index: 100;
    background: #FFFFFF;
    box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.15);
    visibility: hidden;
    opacity: 0;
    filter: alpha(opacity=0);
    -webkit-transition: all 0.3s ease-in-out 0s;
    -moz-transition: all 0.3s ease-in-out 0s;
    -ms-transition: all 0.3s ease-in-out 0s;
    -o-transition: all 0.3s ease-in-out 0s;
    transition: all 0.3s ease-in-out 0s;
    max-width: 626px;
}
.popup-menu.show {
    visibility: visible;
    opacity: 1;
    filter: alpha(opacity=100);
}
.popup-menu:after {
    content: "";
    position: absolute;
    width: 0;
    height: 0;
    top: 0;
    left: 104px;
    border: 8px solid black;
    border-color: transparent transparent #FFFFFF #FFFFFF;
    transform-origin: 0 0;
    transform: rotate(135deg);
    box-shadow: -3px 3px 3px 0 rgba(0, 0, 0, 0.05);
}
.popup-menu-header {
    position: relative;
    padding-bottom: 8px;
    border-bottom: 1px solid #f0f0f0;
}
.popup-menu-content {
    position: absolute;
    top: 50px;
    right: 8px;
    bottom: 8px;
    left: 8px;
    overflow-x: scroll !important;
    overflow-y: scroll !important;
    -webkit-overflow-scrolling: touch;
    font-family: "Montserrat", sans-serif;
}
.popup-menu-header .popup-input-search {
    outline: none;
    text-align: left;
    width: 100%;
    display: block;
    background: none;
    margin: 0;
    font: 400 12px/12px "Montserrat", sans-serif;
    height: 34px;
    border: 1px solid #E5E5E5;
    padding: 7px 40px 7px 15px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    border-radius: 20px;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -ms-border-radius: 20px;
    -o-border-radius: 20px;
}
.popup-menu-header .search-icon {
    position: absolute;
    right: 0;
    top: 0;
    border: none;
    cursor: pointer;
    outline: none;
    width: 46px;
    background: url("../img/icon-sprite.png") no-repeat;
    display: block;
    background-position: -34px 6px;
    height: 34px;
    color: #000000;
    -webkit-transition: all 0.3s ease-in-out 0s;
    -moz-transition: all 0.3s ease-in-out 0s;
    -ms-transition: all 0.3s ease-in-out 0s;
    -o-transition: all 0.3s ease-in-out 0s;
    transition: all 0.3s ease-in-out 0s;
}
.popup-menu-content .widget .widget-header .widget-title {
    padding: 4px;
    margin-bottom: 8px;
    font-size: 14px;
    color: #333333;
    width: 100%;
}
.popup-menu-content .widget .widget-header {
    margin: 0;
}
.popup-menu-content .widget {
    padding: 8px 0;
    border-top: 1px solid #f0f0f0;
}
.popup-menu-content .widget li a {
    padding: 5px 0;
    color: #6a6a6a;
    display: flex;
    position: relative;
    font-size: 12px;
}
.popup-menu-content .widget li .menu-image-title-after.menu-image-title {
    padding: 5px;
    display: inline-block;
}
.popup-menu-content .widget li a img {
    max-width: 23px;
    height: auto;
    padding: 0;
    text-align: center;
    vertical-align: top;
}
.popup-menu-transparent {
    position: fixed;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 25;
    background: #000;
    background: rgba(0, 0, 0, 0.6);
    display: none;
    -webkit-transition: all 0.3s ease-in-out 0s;
    -moz-transition: all 0.3s ease-in-out 0s;
    -ms-transition: all 0.3s ease-in-out 0s;
    -o-transition: all 0.3s ease-in-out 0s;
    transition: all 0.3s ease-in-out 0s;
    left: 0;
}
.popup-menu-transparent.show {
    display: block;
}
.mode {
    display: inline-block;
    border-radius: 20px;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -ms-border-radius: 20px;
    -o-border-radius: 20px;
    border: 0;
    text-decoration: none;
    color: #244B9C;
    font-family: "Montserrat", sans-serif;
    font-weight: 500;
    font-size: 13px;
    line-height: 13px;
    text-align: center;
    -webkit-transition: 0.5s;
    -moz-transition: 0.5s;
    -o-transition: 0.5s;
    -ms-transition: 0.5s;
    transition: 0.5s;
    text-decoration: none;
    background-color: transparent;
    text-align: center;
    padding: 8px 10px 7px;
    cursor: pointer;
}
.mode .icon-darkmode {
    filter: invert(57%) sepia(0%) saturate(61%) hue-rotate(240deg) brightness(105%) contrast(97%);
    background-image: url("../icon/moon.svg");
    width: 24px;
    height: 24px;
    background-repeat: no-repeat;
    background-position: center;
    display: block;
}
.mode .icon-lightmode {
    filter: invert(57%) sepia(0%) saturate(61%) hue-rotate(240deg) brightness(105%) contrast(97%);
    background-image: url("../icon/sun.svg");
    width: 24px;
    height: 24px;
    background-repeat: no-repeat;
    background-position: center;
    display: block;
}
.menu-indeks-sticky {
    position: relative;
    margin-left: -18px;
    margin-right: -18px;
    height: 35px;
    overflow: hidden;
}
.sidebar-sticky {
    z-index: 2;
    position: sticky;
    position: -webkit-sticky;
    top: 46px;
}
.sidebarmenu .widget {
    padding: 14px 24px;
    border-top: 1px solid #efefef;
}
.sidebarmenu .widget .widget-header {
    margin: 5px 0 0 0;
    padding-bottom: 14px;
}
.sidebarmenu .widget .widget-header .widget-title {
    font-size: 14px;
    font-weight: 600;
    color: #6a6a6a;
    letter-spacing: -0.02em;
}
.sidebarmenu .widget li a {
    padding: 5px 0;
    color: #6a6a6a;
    display: block;
    position: relative;
}
.sidebarmenu .widget:first-child {
    border: none;
}
.sidebarmenu .widget li a img {
    max-width: 23px;
    height: auto;
    padding: 0;
    text-align: center;
    vertical-align: top;
}
.sidebarmenu .widget li .menu-image-title-after.menu-image-title {
    padding: 5px;
}







header.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #FFFFFF;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.15);
    position: sticky;
    position: -webkit-sticky;
    top: 0;
    z-index: 26;
    width: 100%;
    line-height: 1;
}
.container {
    width: 100%;
    padding-left: 18px;
    padding-right: 18px;
    margin-right: auto;
    margin-left: auto;
}
.header .header-box {
    display: flex;
    flex-wrap: wrap;
    margin-left: -6px;
    margin-right: -6px;
}
.header .header-bar {
    height: 45px;
    width: 40px;
    position: relative;
}
.header .menubar {
    position: relative;
    border: 0;
    background: transparent;
    outline: none;
    width: 40px;
    cursor: pointer;
    display: block;
    height: 45px;
}
.header .menubar.bar span, .header .menubar.close span {
    cursor: pointer;
    height: 2px;
    width: 20px;
    background: var(--bgbtnframe);
    position: absolute;
    display: block;
    border-radius: 10px;
    opacity: 1;
    left: 15px;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: all .3s ease-in-out 0s;
    -moz-transition: all .3s ease-in-out 0s;
    -ms-transition: all .3s ease-in-out 0s;
    -o-transition: all .3s ease-in-out 0s;
    transition: all .3s ease-in-out 0s;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    margin-top: 15px;
}
.header .menubar.close span {
    background: #FF0000;
}
.header .menubar.bar span:nth-child(1) {
    top: 0px;
}
.header .menubar.bar span:nth-child(2) {
    top: 7px;
}
.header .menubar.bar span:nth-child(3) {
    top: 14px;
    width: 14px;
}
.header .menubar.close span:nth-child(1) {
    top: 8px;
    -webkit-transform: rotate(135deg);
    -moz-transform: rotate(135deg);
    -ms-transform: rotate(135deg);
    -o-transform: rotate(135deg);
}
.header .menubar.close span:nth-child(2) {
    opacity: 0;
    left: -60px;
}
.header .menubar.close span:nth-child(3) {
    top: 8px;
    width: 20px;
    -webkit-transform: rotate(-135deg);
    -moz-transform: rotate(-135deg);
    -ms-transform: rotate(-135deg);
    -o-transform: rotate(-135deg);
    transform: rotate(-135deg);
}
.header .header-left {
    position: relative;
    width: 100%;
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    -ms-flex-positive: 1;
    flex-grow: 1;
    max-width: 100%;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    left: -12px;
}
.header .header-brand {
    height: 35px;
    padding: 0 5px;
}
.header .header-brand a {
    display: block;
}
.header .header-brand img {
    height: 100%;
    width: auto;
    display: block;
    max-height: 30px;
}
.header .header-brand amp-img img {
    object-position: left;
}
.header .header-right {
    position: relative;
    width: 100%;
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    -ms-flex-positive: 1;
    flex-grow: 1;
    max-width: 100%;
    display: flex;
    justify-content: flex-end;
}



.navigation {
    position: relative;
    margin-left: -18px;
    margin-right: -18px;
    height: 35px;
    overflow: hidden;
}
.navigation:before {
    content: "";
    width: 18px;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
    background: #fff;
    background: -moz-linear-gradient(right, white 25%, rgba(255, 255, 255, 0) 100%);
    background: -webkit-linear-gradient(right, white 25%, rgba(255, 255, 255, 0) 100%);
    background: linear-gradient(to right, white 25%, rgba(255, 255, 255, 0) 100%);
    position: absolute;
}
.navigation:after {
    content: "";
    width: 24px;
    height: 100%;
    top: 0;
    right: 0;
    z-index: 1;
    background: #fff;
    background: -moz-linear-gradient(left, white 25%, rgba(255, 255, 255, 0) 100%);
    background: -webkit-linear-gradient(left, white 25%, rgba(255, 255, 255, 0) 100%);
    background: linear-gradient(to left, white 25%, rgba(255, 255, 255, 0) 100%);
    position: absolute;
}
.navigation nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    padding-top: 0;
    overflow-x: hidden;
    overflow-y: scroll;
    -webkit-overflow-scrolling: touch;
}
.navigation nav ul {
    font-family: Montserrat-FF, Arial, Tahoma, sans-serif;
    font-weight: 600;
    position: relative;
    list-style: none;
    margin: 0;
    padding: 0;
    font-size: 14px;
    height: 45px;
    overflow-x: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-flow: nowrap;
    padding-top: 4px;
    padding-bottom: 4px;
}
.navigation nav ul li {
    position: relative;
    padding: 0;
    white-space: nowrap;
}
.navigation nav ul li a {
    display: block;
    padding: 4px 24px 4px 0;
	color: #000;
}
.navigation nav ul li a:hover {
	color: var(--txtsubmenuactive);
}
.navigation nav ul li .menu-image-title {
    padding: 0;
}
.navigation nav ul li:first-child {
    padding-left: 16px;
}
.navigation nav ul li.color1 a:hover,
.navigation nav ul li.color1 a {
    color: var(--color1);
}
.navigation nav ul li.color2 a:hover,
.navigation nav ul li.color2 a {
    color: var(--color2);
}
.navigation nav ul li.color3 a:hover,
.navigation nav ul li.color3 a {
    color: var(--color3);
}
.navigation nav ul li.color4 a:hover,
.navigation nav ul li.color4 a {
    color: var(--color4);
}
.navigation nav ul li.color5 a:hover,
.navigation nav ul li.color5 a {
    color: var(--color5);
}
.navigation nav ul li.color6 a:hover,
.navigation nav ul li.color6 a {
    color: var(--color6);
}
.navigation nav ul li.color7 a:hover,
.navigation nav ul li.color7 a {
    color: var(--color7);
}
.billboard {
    position: relative;
    z-index: 1;
    padding: 0;
    margin-top: 10px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 10px;
    padding-left: 18px;
    padding-right: 18px;
}
.billboard a{
    display:block;
}
.billboard.parallax {
    width: 100%;
    height: var(--heightparallaxmobile);
    position: relative;
    max-width: 640px;
    left: 0;
    right: 0;
    margin-right: auto;
    margin-left: auto;
    margin-bottom: 0;
    margin-top: 0;
    background: #1e1e1e;
}
.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(--widthparallaxmobile);
    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: 640px;
    left: 0;
    right: 0;
}
.billboard.parallax .widget:after {
    content: "scroll untuk lanjut membaca";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    display: block;
    background: var(--hover);
    color: #fff;
    text-align: center;
    text-transform: uppercase;
    font-weight: bold;
    font-size: 10px;
}
.billboard.parallax .widget-parallax img {
    width: 100%;
    height: var(--heightparallaxmobile) !important;
    object-fit: cover;
}
header.header.fix {
    position: fixed;
    top: 0;
    max-width:640px;
    width:100%;
}

/* GRID */
.grid-row {
    display: flex;
    flex-wrap: wrap;
    margin-left: -13px;
    margin-right: -13px;
}
.grid .grid-box {
    display: flex;
    flex-wrap: wrap;
    margin-left: -13px;
    margin-right: -13px;
    padding-left: 0;
    margin-top: 8px;
    margin-bottom: 0;
}
.grid .grid-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-flow: wrap;
    padding-bottom: 12px;
    margin-bottom: 12px;
}
.grid .media-category {
    display: inline-block;
    margin-top: 0;
    margin-bottom: 4px;
    font-size: 12px;
    font-family: Montserrat-FF, Arial, Tahoma, sans-serif;
    font-weight: 400;
    color: var(--txtcategory);
}
.grid .media-title {
    font-weight: 400;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.grid .media-image {
    padding-bottom: 56.25%;
    width: 100%;
    height: 0px;
    position: relative;
    overflow: hidden;
    border-radius: 4px;
    background: #f0f0f0;
    margin-bottom: 12px;
}
.grid .media-date {
    margin-top: 8px;
    font-weight: 300;
    font-family: "Helvetica", Helvetica-FF, Arial, Tahoma, sans-serif;
}


.media-icon {
    top: 4px;
    right: 4px;
    position: absolute;
    z-index: 3;
    padding: 2px 4px;
    text-align: center;
    vertical-align: top;
    display: inline-block;
    color: #FFFFFF;
    font-size: 12px;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 4px;
}

.m-auto {
    margin: auto;
}
.column12 {
    position: relative;
    width: 100%;
    -ms-flex: 1;
    flex: 0 0 100%;
    max-width: 100%;
    padding-left: 13px;
    padding-right: 13px;
}
.column9 {
    position: relative;
    width: 100%;
    padding-left: 13px;
    padding-right: 13px;
    -ms-flex: 0.75; 
    flex: 0 0 75%; 
    max-width: 75%;
}
.column8 {
    position: relative;
    width: 100%;
    padding-left: 13px;
    padding-right: 13px;
    -ms-flex: 0.66667;
    flex: 0 0 66.66667%;
    max-width: 66.66667%;
}
.column7 {
    position: relative;
    width: 100%;
    padding-left: 13px;
    padding-right: 13px;
    -ms-flex: 0.58333;
    flex: 0 0 58.33333%;
    max-width: 58.33333%;
}
.column6 {
    position: relative;
    width: 100%;
    padding-left: 13px;
    padding-right: 13px;
    -ms-flex: 0.5;
    flex: 0 0 50%;
    max-width: 50%;
}
.column5 {
    position: relative;
    width: 100%;
    padding-left: 13px;
    padding-right: 13px;
    -ms-flex: 0.41667;
    flex: 0 0 41.66667%;
    max-width: 41.66667%;
}
.column4 {
    position: relative;
    width: 100%;
    padding-left: 13px;
    padding-right: 13px;
    -ms-flex: 0.33333;
    flex: 0 0 33.33333%;
    max-width: 33.33333%;
}
.column3 {
    position: relative;
    width: 100%;
    padding-left: 13px;
    padding-right: 13px;
    -ms-flex: 0.25;
    flex: 0 0 25%;
    max-width: 25%;
}
.column20 {
    position: relative;
    width: 100%;
    padding-left: 13px;
    padding-right: 13px;
    -ms-flex: 0.20;
    flex: 0 0 20%;
    max-width: 20%;
}



/* HEADLINE */
.headline-header {
    position: relative;
    margin: 12px 0;
}
.headline-title {
    margin: 12px -6px 20px;
    color: var(--color1);
    font-size: 23px;
    font-family: Montserrat-FF, Arial, Tahoma, sans-serif;
    font-weight: 600;
}
.headline {
    overflow: hidden;
    border-radius: 8px;
    background: var(--color1);
    background: -moz-linear-gradient(100deg, var(--color1) 50%, var(--color2) 100%);
    background: -webkit-linear-gradient(100deg, var(--color1) 50%, var(--color2) 100%);
    background: linear-gradient(100deg, var(--color1) 50%, var(--color2) 100%);
    margin:20px 0;
}
.headline .media-image {
    margin-bottom: 0;
    padding-bottom: 100%;
    width: 100%;
    height: 0px;
    position: relative;
    overflow: hidden;
    background: #f0f0f0;
}
.headline .media-text {
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-flow: column;
    justify-content: center;
    background: var(--bgslider1);
    background: -moz-linear-gradient(top, var(--bgslider1) 65%, rgba(255, 255, 255, 0) 100%);
    background: -webkit-linear-gradient(top, var(--bgslider1) 65%, rgba(255, 255, 255, 0) 100%);
    background: linear-gradient(to top, var(--bgslider1) 65%, rgba(255, 255, 255, 0) 100%);
    padding: 15% 16px 16px;
    min-height: 160px;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 3;
    color: var(--txtslider);
}
.headline .media-title {
    font-size: 20px;
    font-weight: 600;
}
.headline .media-title a {
    color: var(--txtslider);
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.headline .media:hover .media-title a {
    color: var(--txtslideractive);
}
.headline .media-date {
    font-family: "Helvetica", Helvetica-FF, Arial, Tahoma, sans-serif;
    color: var(--txtslider);
    font-weight: 300;
    font-size: 12px;
    margin-top: 4px;
}



.headline2 {
    background: var(--color1);
    background: -moz-linear-gradient(110deg, var(--color1) 75%, var(--color2) 100%);
    background: -webkit-linear-gradient(110deg, var(--color1) 75%, var(--color2) 100%);
    background: linear-gradient(110deg, var(--color1) 75%, var(--color2) 100%);
    margin-bottom: 24px;
    overflow: hidden;
    border-radius: 8px;
}
.headline2 .column7 {
    padding-right: 0;
}
.headline2 .column5 {
    padding-left: 0;
}
.headline2 .media-text {
    padding: 16px;
    height: 100%;
}
.headline2 .media-image {
    margin-bottom: 0;
    padding-bottom: 75.15%;
    width: 100%;
    height: 0px;
    position: relative;
    overflow: hidden;
    background: #f0f0f0;
}
.headline2 .media-title {
    font-size: 23px;
    font-weight: 600;
}
.headline2 .media-title a {
    color: #FFFFFF;
}
.headline2 .media:hover .media-title a {
    color: var(--color5);
}
.headline2 .media-date {
    font-family: "Helvetica", Helvetica-FF, Arial, Tahoma, sans-serif;
    color: #FFFFFF;
    font-weight: 300;
    font-size: 12px;
}
.headline2 .media-date {
    margin-top: 4px;
}
.headline2 .media-category {
    color: var(--color5);
}

.widget.article {
    position: relative;
    word-wrap: break-word;
    padding-top: 16px;
    margin-bottom: 24px;
    border-top: 1px solid #f0f0f0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-flow: column;
    color: #666666;
}
.tag .widget.article {
    border: 0;
}
.widget .widget-header {
    justify-content: space-between;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-flow: wrap;
    align-items: center;
    margin-bottom: 16px;
}
.widget .widget-header .widget-title {
    margin: 0;
    color: var(--txtwidget);
    font-size: 18px;
    font-family: Montserrat-FF, Arial, Tahoma, sans-serif;
    font-weight: 600;
}
.widget .widget-header .index-link {
    font-size: 12px;
    font-family: Montserrat-FF, Arial, Tahoma, sans-serif;
}
.widget .widget-header .header-more a {
    font-family: Montserrat-FF, Arial, Tahoma, sans-serif;
    font-size: 12px;
}
.widget .widget-desc {
    padding: 16px;
    background: #f4f4f4;
    color: #666666;
    border-radius: 4px;
    margin-bottom: 12px;
    font-size: 12px;
    font-family: Montserrat-FF, Arial, Tahoma, sans-serif;
}
.widget .widget-desc .widget-desc-link {
    margin-top: 12px;
}
.widget .widget-desc a {
    font-size: 12px;
    padding: 4px 12px;
    font-family: Montserrat-FF, Arial, Tahoma, sans-serif;
    background: var(--color3);
    color: #FFFFFF;
    position: relative;
    display: inline-block;
    align-items: center;
    line-height: 1.4;
    text-align: center;
    cursor: pointer;
    vertical-align: top;
    border: 1px solid transparent;
    border-radius: 4px;
}
.widget .widget-content {
    padding-left: 0;
    margin-top: 0;
    margin-bottom: 0;
}





.article-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-flow: wrap;
    position: relative;
    width: 100%;
    margin: 8px 0;
    padding: 8px 0;
}
.article-item.big {
    background: #f0f0f0;
    margin-left: -18px;
    margin-right: -18px;
    padding-left: 18px;
    padding-right: 18px;
    width: auto;
}
.article-item:first-child {
    margin-top: 0;
    padding-top: 0;
}
.article-item.big:first-child {
    padding-top: 8px;
    padding-bottom: 8px;
}
.article-item .article-item-box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: flex-start;
}
.article-item.big .article-item-box {
    flex-direction: row-reverse;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
}
.article-item .media-image {
    margin: 0 12px 0 0;
    width: 100px;
    height: 100px;
    position: relative;
    overflow: hidden;
    border-radius: 4px;
    background: #f0f0f0;
}
.article-item.big .media-image {
    margin: 0 0 0 12px;
    width: 150px;
    height: 112px;
    position: relative;
    overflow: hidden;
    border-radius: 4px;
    background: #f0f0f0;
}
.article-item .media-title {
    font-size: 16px;
    font-weight: 400;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.article-item .media-date {
    margin-top: 12px;
    font-weight: 300;
    font-family: "Helvetica", Helvetica-FF, Arial, Tahoma, sans-serif;
}
.article-item .media-category {
    display: inline-block;
    margin-top: 0;
    margin-bottom: 4px;
    font-size: 14px;
    font-family: Montserrat-FF, Arial, Tahoma, sans-serif;
    font-weight: 400;
    color: var(--txtcategory);
}
.widget.article .widget {
    border-bottom: 1px solid #f0f0f0;
    border-top: 1px solid #f0f0f0;
    padding-top: 16px;
    padding-bottom: 16px;
}
.widget-content.mobile-grid {
    padding: 6px;
}
.article-grid {
    padding-bottom: 6px;
    margin-bottom: 6px;
    padding-left: 6px;
    padding-right: 6px;
}
.article-grid .article-grid-box {
    background: #FFFFFF;
    box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.15);
    border-radius: 8px;
}
.article-grid .media-image {
    padding-bottom: 56.25%;
    width: 100%;
    height: 0px;
    position: relative;
    overflow: hidden;
    border-radius: 4px;
    background: #f0f0f0;
    margin-bottom: 12px;
}
.article-grid .media-text {
    padding-left: 12px;
    padding-right: 12px;
    padding-bottom: 32px;
}

.article-grid .media-title {
    font-size: 14px;
    font-weight: 400;
}
.article-grid .media-date {
    margin-top: 12px;
    font-weight: 300;
    font-family: "Helvetica", Helvetica-FF, Arial, Tahoma, sans-serif;
}
.article-grid .media-category {
    display: inline-block;
    margin-top: 0;
    margin-bottom: 4px;
    font-size: 12px;
    font-family: Montserrat-FF, Arial, Tahoma, sans-serif;
    font-weight: 400;
    color: var(--txtcategory);
}


.sidebar-box .widget {
    position: relative;
    word-wrap: break-word;
    padding-top: 16px;
    margin-bottom: 24px;
    border-top: 1px solid #f0f0f0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-flow: column;
    color: #666666;
}

.sidebar-box .widget > img, .sidebar-box .widget > a img {
    margin: 0 auto;
    display: block;
}
.sidebar-box .widget > a {
    display: block;
}
.list .list-item{
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-flow: wrap;
    position: relative;
    width: 100%;
    padding-top: 0;
    padding-bottom: 8px;
    margin-bottom: 8px;
}
.list .list-item:first-child {
    margin-top: 8px;
}
.list .item-item-box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: flex-start;
}
.list .item-item-box .media-image {
    width: 116px;
    height: 87px;
    margin: 0 16px 0 0;
    overflow: hidden;
    border-radius: 4px;
    background: #f0f0f0;
    position: relative;
}
.list .media-title{
    font-weight: 400;
}
.list .media-date {
    font-family: "Helvetica", Helvetica-FF, Arial, Tahoma, sans-serif;
    font-weight: 300;
    font-size: 12px;
    display: inline-block;
    margin-top: 4px;
}


/* TAG */
.populartag .hastag {
    color: var(--txtcategory);
    margin-right: 8px;
    font-family: Montserrat-FF, Arial, Tahoma, sans-serif;
    font-size: 16px;
}
.populartag .tag-item {
    position: relative;
    width: 100%;
    padding-top: 0;
    padding-bottom: 8px;
    margin-bottom: 8px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-flow: wrap;
}
.populartag .tag-item:first-child {
    margin-top: 8px;
}
.populartag .tag-item:last-child {
    margin-bottom: 0;
}
.populartag .tag-item .media-text {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: baseline;
    font-size: 16px;
}




.popularcomment .comment-item {
    position: relative;
    width: 100%;
    padding-top: 0;
    padding-bottom: 8px;
    margin-bottom: 8px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-flow: wrap;
}
.popularcomment .comment-item:first-child {
    margin-top: 8px;
}
.popularcomment .comment-item:last-child {
    margin-bottom: 0;
}
.popularcomment .comment-item .media-text {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    font-size: 16px;
    align-items: center;
}
.popularcomment .comment-num {
    margin-right: 12px;
    margin-top: -4px;
    font-size: 10px;
    color: var(--txthastag);
    text-align: center;
}
.popularcomment .com-number {
    color: var(--txtcategory);
    font-size: 16px;
}
.popularcomment .media-title {
    font-size: 16px;
    font-weight: 400;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}


/* POPULAR POS */
.popularpos .popular-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-flow: wrap;
    position: relative;
    width: 100%;
    padding-top: 0;
    padding-bottom: 8px;
    margin-bottom: 8px;
}
.popularpos .popular-item .media-text {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: normal;
    font-size: 16px;
}
.popularpos .hastagnumber {
    color: #999999;
    margin-right: 12px;
    margin-top: -4px;
    font-size: 20px;
    text-align: center;
}
.popularpos .popular-item .media-date {
    margin: 4px 0 0 50px;
    font-family: "Helvetica", Helvetica-FF, Arial, Tahoma, sans-serif;
    font-weight: 300;
    font-size: 12px;
    display: inline-block;
    margin-top: 4px;
}
.popularpos .popular-item .media-title {
    font-weight: 400;
    font-size: 16px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.popularpos .popular-item {
    position: relative;
    width: 100%;
    padding-top: 0;
    padding-bottom: 8px;
    margin-bottom: 8px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-flow: wrap;
}
.popularpos .popular-item:first-child {
    margin-top: 8px;
}
.popularpos .popular-item:last-child {
    margin-bottom: 0;
}



.inline .inline-box {
    display: flex;
    flex-wrap: wrap;
    margin-left: -13px;
    margin-right: -13px;
    padding-left: 0;
    margin-top: 8px;
    margin-bottom: 0;
}
.inline .inline-item {
    padding-top: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-flow: wrap;
    padding-bottom: 12px;
    margin-bottom: 12px;
}
.media-icon {
    top: 4px;
    right: 4px;
    position: absolute;
    z-index: 3;
    padding: 2px 4px;
    text-align: center;
    vertical-align: top;
    color: #FFFFFF;
    font-size: 12px;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 4px;
    align-items: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
}
.media-icon i {
    margin-right: 4px;
}
.inline .media-category {
    display: inline-block;
    margin-top: 0;
    margin-bottom: 4px;
    font-size: 12px;
    font-family: Montserrat-FF, Arial, Tahoma, sans-serif;
    font-weight: 400;
    color: var(--txtcategory);
}
.inline .media-title{
    font-weight: 400;
}
.inline .media-image {
    padding-bottom: 56.25%;
    width: 100%;
    height: 0px;
    position: relative;
    overflow: hidden;
    border-radius: 4px;
    background: #f0f0f0;
    margin-bottom: 12px;
}
.inline .media-date {
    margin-top: 12px;
    font-weight: 300;
    font-family: "Helvetica", Helvetica-FF, Arial, Tahoma, sans-serif;
}






.media-more {
    padding-top: 12px;
    padding-bottom: 12px;
    text-align: center;
}
.media-more a {
    color: var(--txtmore2);
    font-family: Montserrat-FF, Arial, Tahoma, sans-serif;
    font-size: 14px;
    padding: 6px 16px;
    background: var(--bgmore2);
    position: relative;
    display: inline-block;
    line-height: 1.4;
    text-align: center;
    cursor: pointer;
    vertical-align: top;
    border: 1px solid transparent;
    border-radius: 4px;
}
.media-more a:hover {
    color: var(--txtmoreactive2);
    opacity: 0.8;
    filter: alpha(opacity=80);
}


.copied {
    display: inline-block;
    padding: 8px;
    position: absolute;
    z-index: 5;
    bottom: 0%;
    left: 50%;
    width: auto;
    white-space: nowrap;
    font-size: 14px;
    background: #FF0000;
    color: #FFFFFF;
    opacity: 0;
    filter: alpha(opacity=0);
    -webkit-transform: translateX(-50%) scale(0);
    -moz-transform: translateX(-50%) scale(0);
    -ms-transform: translateX(-50%) scale(0);
    -o-transform: translateX(-50%) scale(0);
    transform: translateX(-50%) scale(0);
    -webkit-transition: all 0.3s ease-in-out 0s;
    -moz-transition: all 0.3s ease-in-out 0s;
    -ms-transition: all 0.3s ease-in-out 0s;
    -o-transition: all 0.3s ease-in-out 0s;
    transition: all 0.3s ease-in-out 0s;
    border-radius: 4px;
}
.copied.show {
    opacity: 1;
    filter: alpha(opacity=100);
    display: inline-block;
    bottom: 135%;
    -webkit-transform: translateX(-50%) scale(1);
    -moz-transform: translateX(-50%) scale(1);
    -ms-transform: translateX(-50%) scale(1);
    -o-transform: translateX(-50%) scale(1);
    transform: translateX(-50%) scale(1);
}
.copied.show:before {
    position: absolute;
    content: "";
    border: 3px solid;
    right: 50%;
    margin: 0 -7px 0 0;
    top: 100%;
    border-top: 8px solid #FF0000;
    border-left: 7px solid transparent;
    border-right: 7px solid transparent;
    border-bottom: none;
}
footer.footer {
    background: var(--bgfooter);
    font-family: Montserrat-FF, Arial, Tahoma, sans-serif;
    margin-top: 40px;
    color: var(--colorfooter);
}
.footer-border {
    height: 4px;
    background: var(--bgfooter1);
    background: -moz-linear-gradient(right, var(--bgfooter1) 0%, var(--bgfooter2) 100%);
    background: -webkit-linear-gradient(right, var(--bgfooter1) 0%, var(--bgfooter2) 100%);
    background: linear-gradient(to right, var(--bgfooter1) 0%, var(--bgfooter2) 100%);
}
.footer .grid-row {
    padding: 32px 0 52px;
}
.footer-brand .widget {
    margin-top: 40px;
    color: var(--colorfooter);
    font-size: 12px;
    text-align: center;
}
.footer ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer-brand img {
    width: 160px;
    height: auto;
    display: block;
    margin: 12px auto 8px;
}
.footer-brand figcaption {
    color: #666666;
    padding: 4px 0;
    font-size: 12px;
    text-align: center;
}

.facebook a,
.twitter a,
.instagram a,
.linkedin a,
.youtube a {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin: 5px 2px;
    cursor: pointer;
    width: 30px;
    height: 30px;
    font-size: 18px;
    border-radius: 50%;
}
.facebook a {
    color: #FFFFFF;
    background: #3C5A99;
}
.twitter a {
    color: #FFFFFF;
    background: #1DA1F2;
}
.instagram a {
    color: #FFFFFF;
    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%);
}
.linkedin a {
    color: #FFFFFF;
    background: #0077B5;
}
.youtube a {
    color: #FFFFFF;
    background: #FF0000;
}
.facebook a:before,
.twitter a:before,
.instagram a:before,
.linkedin a:before,
.youtube a:before{
    font-family: "detiknetwork-FF";
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    speak: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    vertical-align: middle;
}
.facebook a:before{
    content: "\61";
}
.twitter a:before{
    content: "\62";
}
.instagram a:before{
    content: "\e006";
}
.linkedin a:before{
    content: "\e007";
}
.youtube a:before{
    content: "\e008";
}
.social-label {
    display: none;
}
.footer-nav ul li a {
    font-size: 12px;
    color: #333333;
    padding: 4px 0;
}
.footer-brand figure {
    margin: 0;
    max-width: 100%;
}
.footer-brand .widget .widget-header .widget-title {
    font-size: 12px;
    font-family: Montserrat-FF, Arial, Tahoma, sans-serif;
    color: var(--colorfooter);
    margin-bottom: 4px;
    text-align: center;
    width: 100%;
    font-weight: normal;
}
.footer-brand .menu {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}
.footer-brand .widget {
    margin-top: 40px;
}
.footer-brand .widget:first-child {
    margin-top: 0;
}
.footer-nav .widget .widget-header .widget-title {
    margin-bottom: 8px;
    font-size: 14px;
    color: #000000;
}
.footer-nav .widget {
    padding: 24px 24px 12px;
}
.footer-nav .grid-footer {
    display: flex;
    flex-wrap: wrap;
    margin-left: -13px;
    margin-right: -13px;
    justify-content: space-between;
}
.footer-nav .menu-image-title {
    padding: 0;
}
.footer-nav .widget .widget-header {
    margin: 0;
}


.menu.col2 {
    -moz-column-count: 2;
    position: relative;
    list-style: none;
    margin: 0;
    padding: 0;
    flex-direction: column;
    width: 100%;
    column-count: 2;
}

.pagination, .status{
    margin: 24px 0;
    text-align: center;
}
.trigger{
    position: relative;
    font-size: 16px;
    display: none;
    line-height: 1.4;
    padding: 8px 16px;
    text-align: center;
    cursor: pointer;
    vertical-align: top;
    border: 1px solid transparent;
    border-radius: 4px;
    background: var(--bgmore1);
    color: var(--txtmore1);
    font-family: Montserrat-FF, Arial, Tahoma, sans-serif;
}
.pagination a{
    position: relative;
    font-size: 16px;
    display: inline-block;
    line-height: 1.4;
    padding: 8px 16px;
    text-align: center;
    cursor: pointer;
    vertical-align: top;
    border: 1px solid transparent;
    border-radius: 4px;
    background: var(--bgmore1);
    color: var(--txtmore1);
    font-family: Montserrat-FF, Arial, Tahoma, sans-serif;
}
.pagination .loadmore {
    position:relative;
    font-size:16px;
    display:inline-block;
    line-height:1.4;
    padding:8px 16px;
    text-align:center;
    cursor:pointer;
    vertical-align:top;
    border:1px solid transparent;
    border-radius:4px;
    background:var(--bgmore1);
    color:#fff;
    font-weight:600
}
.pagination .loadmore:hover {
    opacity:.8
}
.status .loading{
    width:32px;
    height:32px;
    position:relative;
    margin:12px auto;
    display: none;
}
.status .loading .double-bounce2,
.status .loading .double-bounce1{
    width:100%;
    height:100%;
    border-radius:50%;
    background-color:var(--bgloading);
    opacity:.6;
    position:absolute;
    top:0;
    left:0;
    -webkit-animation:sk-bounce 2s infinite ease-in-out;animation:sk-bounce 2s infinite ease-in-out
}
.no-more {
    display: none;
}
.status .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 {
    position: relative;
    margin: 12px 0;
}
.breadcrumb-box {
    justify-content: space-between;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-flow: wrap;
    align-items: center;
}
.breadcrumb ul {
    margin: 0;
    padding: 0;
    list-style: none;
}
.breadcrumb ul li {
    display: inline-flex;
}
.breadcrumb a {
    position: relative;
    color: #666666;
    font-size: 12px;
    font-family: Montserrat-FF, Arial, Tahoma, sans-serif;
}
.breadcrumb a:hover {
    color: #333333;
}
.breadcrumb ul li:after {
    font-family: detiknetwork-FF;
    content: "\65";
    color: #666666;
    padding: 0 4px;
    vertical-align: middle;
    font-size: 12px;
}
.breadcrumb ul li:last-child:after {
    font-family: detiknetwork-FF;
    content: "";
    padding: 0;
    font-size: 12px;
    vertical-align: middle;
}



.article-header {
    margin-bottom: 16px;
    margin-top: 16px;
    text-align: center;
}
.article-header h1 {
    color: var(--txttitlepos);
    font-size: 23px;
    margin-bottom: 16px;
    font-family: Montserrat-FF, Arial, Tahoma, sans-serif;
    font-weight: 600;
}
.article-author {
    font-family: Montserrat-FF, Arial, Tahoma, sans-serif;
    color: var(--txtauthorpos);
    font-size: 12px;
    margin-bottom: 12px;
}
.article-date {
    color: var(--txtdatepos);
    font-size: 12px;
    margin-bottom: 12px;
}
.article-text img {
    height: auto;
    max-width: 100%;
}

.comment-share {
    justify-content: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-flow: wrap;
    align-items: center;
}
.comment-share.bottom {
    border-bottom: 1px solid #e6e6e6;
    padding-bottom: 16px;
}
.comment-share .comment-box a {
    border-radius: 16px;
    vertical-align: middle;
    height: 30px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    background: #e6e6e6;
    font-family: Montserrat-FF, Arial, Tahoma, sans-serif;
    font-size: 12px;
    padding: 4px 16px;
}
.comment-share .comment-box a:hover {
    color: #000000;
    opacity: 0.8;
    filter: alpha(opacity=80);
}
.comment-share .comment-box a i {
    margin: 0 4px;
    font-size: 24px;
}
.comment-share .share-box {
    color: #666666;
    font-size: 12px;
    text-align: center;
    line-height: 1.6;
    font-family: Montserrat-FF, Arial, Tahoma, sans-serif;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    width: 100%;
}
.comment-share .share-box span {
    margin: 5px 2px;
}

.comment-share .share-box a {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin: 5px;
    cursor: pointer;
    width: 30px;
    height: 30px;
    font-size: 18px;
    border-radius: 50%;
    overflow: visible;
    color: #fff;
    background: #999999;
    cursor: pointer;
}
.comment-share .share-box .facebook {
    background-color: #3C5A99;
}
.comment-share .share-box .twitter {
    background-color: #1DA1F2;
}
.comment-share .share-box .whatsapp {
    background-color: #25D366;
}
.comment-share .share-box .icon-whatsapp {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' aria-hidden='true' focusable='false' width='1em' height='1em' style='vertical-align: -0.125em;-ms-transform: rotate(360deg); -webkit-transform: rotate(360deg); transform: rotate(360deg);' preserveAspectRatio='xMidYMid meet' viewBox='0 0 512 512'%3E%3Cpath d='M414.73 97.1A222.14 222.14 0 0 0 256.94 32C134 32 33.92 131.58 33.87 254a220.61 220.61 0 0 0 29.78 111L32 480l118.25-30.87a223.63 223.63 0 0 0 106.6 27h.09c122.93 0 223-99.59 223.06-222A220.18 220.18 0 0 0 414.73 97.1zM256.94 438.66h-.08a185.75 185.75 0 0 1-94.36-25.72l-6.77-4l-70.17 18.32l18.73-68.09l-4.41-7A183.46 183.46 0 0 1 71.53 254c0-101.73 83.21-184.5 185.48-184.5a185 185 0 0 1 185.33 184.64c-.04 101.74-83.21 184.52-185.4 184.52zm101.69-138.19c-5.57-2.78-33-16.2-38.08-18.05s-8.83-2.78-12.54 2.78s-14.4 18-17.65 21.75s-6.5 4.16-12.07 1.38s-23.54-8.63-44.83-27.53c-16.57-14.71-27.75-32.87-31-38.42s-.35-8.56 2.44-11.32c2.51-2.49 5.57-6.48 8.36-9.72s3.72-5.56 5.57-9.26s.93-6.94-.46-9.71s-12.54-30.08-17.18-41.19c-4.53-10.82-9.12-9.35-12.54-9.52c-3.25-.16-7-.2-10.69-.2a20.53 20.53 0 0 0-14.86 6.94c-5.11 5.56-19.51 19-19.51 46.28s20 53.68 22.76 57.38s39.3 59.73 95.21 83.76a323.11 323.11 0 0 0 31.78 11.68c13.35 4.22 25.5 3.63 35.1 2.2c10.71-1.59 33-13.42 37.63-26.38s4.64-24.06 3.25-26.37s-5.11-3.71-10.69-6.48z' fill-rule='evenodd' fill='%23fff'%3E%3C/path%3E%3Crect x='0' y='0' width='512' height='512' fill='rgba(0, 0, 0, 0)'%3E%3C/rect%3E%3C/svg%3E");
    background-size: 18px;
    background-repeat: no-repeat;
    background-position: center;
    display: block;
    width: 18px;
    height: 18px;
}





.article-figure {
    position: relative;
    margin-bottom: 24px;
}
.article-figure .wp-image-box {
    margin-left: -18px;
    margin-right: -18px;
}
.article-detail {
    margin-bottom: 16px;
    position: relative;
}
.article-detail figure {
    padding: 0;
    margin: 0;
}
.article-detail .article-figure img {
    max-width: 100%;
    width: 100%;
    height: auto;
    display: block;
}
.article-detail .article-figure figcaption {
    margin-top: 8px;
    font-size: 12px;
    text-align: left;
}
.article-detail .article-content {
    color: #000000;
    margin-bottom: 24px;
}
.article-detail .article-box {
    flex: 1;
    margin-bottom: 16px;
}
.article-detail .article-adv {
    margin-left: 16px;
    z-index: 2;
    width: 160px;
}
.article-detail .sticky-post {
    z-index: 2;
    position: sticky;
    position: -webkit-sticky;
    top: 46px;
}

.article-detail .bacajuga {
    position: relative;
    margin-bottom: 20px;
    margin-top: 20px;
    border-left: 5px solid var(--garisbacajuga);
    padding-left: 20px;
    font-family: Montserrat-FF, Arial, Tahoma, sans-serif;
}
.article-detail .bacajuga strong {
    display: block;
    margin-bottom: 8px;
    font-size: 14px;
    font-weight: 700;
    color: var(--bacajuga);
}
.article-detail .bacajuga a {
    color: var(--titlebacajuga);
    font-size: 16px;
    font-weight: 600;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}


.article-detail .pagination-post {
    border-bottom: 1px solid #e6e6e6;
    border-top: 1px solid #e6e6e6;
    margin: 16px 0;
    padding: 16px 0 24px;
}
.article-detail .paginationPostNum {
    justify-content: space-between;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-flow: wrap;
    align-items: center;
    margin-bottom: 8px;
}
.article-detail .paginationPostLink {
    margin-bottom: 8px;
    margin-top: 8px;
    padding-right: 13px;
    font-size: 14px;
    text-align: left;
}
.article-detail .paginationPostNav a .btn-next {
    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: 4px;
    font-size: 12px;
    padding: 4px 12px;
    margin-bottom: 24px;
    font-family: Montserrat-FF, Arial, Tahoma, sans-serif;
    background: var(--bgpaginationactive);
    color: var(--txtpaginationactive);
}
.article-detail .paginationPostNav a i {
    margin: 0 4px;
}
.article-detail .paginationPostLabel {
    color: var(--bgpaginationactive);
    font-family: Montserrat-FF, Arial, Tahoma, sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 1.3;
    margin-bottom: 8px;
}
.article-detail .paginationPostLink a, .article-detail .paginationPostLink span {
    border-radius: 50%;
    background: var(--bgpagination);
    color: var(--txtpagination);
    width: 30px;
    height: 30px;
    display: inline-block;
    margin: 0;
    padding: 6px 11px;
    font-family: Montserrat-FF, Arial, Tahoma, sans-serif;
    line-height: 1.2;
}
.article-detail .paginationPostLink .post-page-numbers.current {
    background: var(--bgpaginationactive);
    color: var(--txtpaginationactive);
}
.article-detail .showall-page a {
    background: var(--btnpaginationmore);
    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: 4px;
    font-size: 12px;
    padding: 4px 12px;
    font-family: Montserrat-FF, Arial, Tahoma, sans-serif;
    color: var(--txtpaginationmore);
}
.article-text h6 {
    font-size: 10px;
}
.article-text h5 {
    font-size: 12px;
}
.article-text h4 {
    font-size: 14px;
}
.article-text h3 {
    font-size: 16px;
}
.article-text h2 {
    font-size: 18px;
}
.article-text h1 {
    font-size: 23px;
}

.article-text a {
    color: var(--txtlinkpos);
}
.article-text {
    color: var(--txtpos);
}

.article-detail .tag-post {
    margin-top: 16px;
}
.article-detail .tag-post ul {
    list-style: none;
    margin: 0;
    padding: 0;
}
.article-detail .tag-post ul li {
    display: inline-block;
}
.article-detail .tag-post ul li a {
    background: #f0f0f0;
    margin-right: 8px;
    margin-bottom: 8px;
    padding: 8px;
    border-radius: 4px;
    display: block;
    position: relative;
    font-family: Montserrat-FF, Arial, Tahoma, sans-serif;
    font-size: 12px;
    font-weight: 300;
}
.article-detail .tag-post ul li a:hover {
    color: var(--color1);
}
.single .main-box .widget {
    margin-bottom: 24px;
}


#respond, #comments {
    margin-bottom: 20px;
}
.comment-reply-title {
    padding: 10px 15px 5px;
    color: #8d8d8d;
    background: #e6e6e6;
    border-bottom: 1px solid #cdcdcd;
    font-size: 14px;
    line-height: 1.4;
    font-weight: 400;
    text-transform: uppercase;
    font-family: Montserrat-FF, Arial, Tahoma, sans-serif;
    display: flex;
    align-items: center;
}
.comment-reply-title small a {
    text-transform: capitalize;
    margin-left: 5px;
    color: var(--color3);
    display: block;
}
.comment-notes, .logged-in-as a{
    font-family: Helvetica,Arial,Tahoma;
    line-height: 1.4;
    font-size: 14px;
    color: #6F6F6F;
}
input#author, input#email {
    margin: 0;
    background: #fff;
    border: 1px solid #c0c0c0;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    -o-border-radius: 4px;
    border-radius: 4px;
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    font-size: 14px;
}
textarea#comment {
    background: #fff;
    border: 1px solid #c0c0c0;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    -o-border-radius: 4px;
    border-radius: 4px 4px 0 0;
    width: 100%;
    resize: unset;
    font-size: 14px;
    padding: 10px;
}

input#author, input#email, textarea#comment:focus {
    outline: none;
    border: 1px solid #c0c0c0;
}
p.form-submit {
    margin: 0;
    background: #fff;
    border: 1px solid #c0c0c0;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    -o-border-radius: 4px;
    border-radius: 0px 0px 4px 4px;
    width: 100%;
    resize: unset;
    margin-top: -6px;
    text-align: right;
    padding: 10px;
    border-top: 0;
}
p.form-submit input[type=submit] {
    font-size: 14px;
    display: inline-block;
    padding: 5px 10px;
    line-height: 14px;
    cursor: pointer;
    vertical-align: top;
    background: #4990E2;
    border: 1px solid #2276d6;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    -o-border-radius: 4px;
    border-radius: 4px;
    color: #fff;
    text-transform: uppercase;
}
.notif {
    font-family: Helvetica,Arial,Tahoma;
    line-height: 1.4;
    font-size: 14px;
    color: #6F6F6F;
    padding: 15px;
    margin: 20px 0;
    border: 1px solid #dadada;
    background: #f3f3f3;
    text-align: center;
}
.notif-header {
    font-weight: 700;
}



h2.comments_title {
    display: block;
    border: none;
    margin: 10px;
    padding: 0;
    font-size: 16px;
    font-weight: 700;
    color: #6F6F6F;
    text-transform: lowercase;
    line-height: 1.4;
    margin-bottom: 20px;
}
.commentsArea > ol {
    padding: 0;
    margin: 0;
    list-style: none;
}
.commentsArea li {
    background: #f8f8f8;
    margin: 0 0 15px;
    padding: 15px;
    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 a {
    display: block;
}
.commentAvatar img {
    display: block;
    object-fit: cover;
    width: 100%;
    z-index: 2;
    position: relative;
    height: 100%;
}
.commentBodyText {
    font-family: Helvetica,Arial,Tahoma;
    line-height: 1.4;
    font-size: 14px;
    color: #6F6F6F;
    display: block;
    word-wrap: break-word;
    margin: 15px 0 0;
}
.commentAuthorName {
    color: #4990E2;
    font-size: 14px;
}
.commentHeader time {
    font-size: 12px;
    color: #a7a7a7;
}
.commentBodyFooter {
    font-size: 12px;
    color: #a7a7a7;
    margin: 10px 0 0;
}
.commentBodyFooter a {
    margin-right: 15px;
    color: #a7a7a7;
}
.comment-btnshare {
    display: inline-flex;
    color: #a7a7a7;
    align-items: center;
}
.comment-share-button a {
    width: 22px;
    height: 22px;
    padding: 4px;
    font-size: 14px;
    vertical-align: middle;
    background: #a7a7a7;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -o-border-radius: 5px;
    border-radius: 5px;
    display: inline-block;
    margin: 0;
    margin-left: 5px;
    color: #fff;
    line-height: 14px;
}
.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-block;
    color: #4990E2;
}
.commentReplyTo:before {
    color: #6F6F6F;
}
.commentsArea > ol > ul ul {
    padding: 0;
}
.comments-pagination {
    display: block;
    padding-left: 0;
    margin: 20px 0;
    border-radius: 4px;
    text-align: center;
    position: relative;
}
.comments-pagination a, .comments-pagination span {
    color: #337ab7;
    position: relative;
    padding: 6px 12px;
    margin-left: -6px;
    line-height: 1.42857143;
    text-decoration: none;
    background-color: #fff;
    border: 1px solid #ddd;
}
.comments-pagination span.current {
    z-index: 2;
    color: #fff;
    cursor: default;
    background-color: #337ab7;
    border-color: #337ab7;
}
.comments-pagination a:first-child, .comments-pagination span:first-child {
    border-top-left-radius: 4px;
    border-bottom-left-radius: 4px;
}
.comments-pagination a:last-child, .comments-pagination span:last-child {
    border-top-right-radius: 4px;
    border-bottom-right-radius: 4px;
}

.no-more {
    opacity: 0.8;
    font-family: Helvetica,Arial,Tahoma;
    line-height: 1.4;
    font-size: 14px;
    color: #6F6F6F;
}
.no-more i {
    font-size: 18px;
    margin-top: -2px;
    color: var(--color4);
}




.menu-indeks-sticky nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    padding-top: 0;
    overflow-x: hidden;
    overflow-y: scroll;
    -webkit-overflow-scrolling: touch;
}
.menu-indeks ul {
    font-family: Montserrat-FF, Arial, Tahoma, sans-serif;
    font-weight: 600;
    position: relative;
    list-style: none;
    margin: 0;
    padding: 0;
    font-size: 14px;
    height: 45px;
    overflow-x: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-flow: nowrap;
    padding-top: 4px;
    padding-bottom: 4px;
}
.menu-indeks ul li {
    position: relative;
    padding: 0;
    white-space: nowrap;
    margin-right: 5px;
}
.menu-indeks ul li:first-child {
    margin-left: 18px;
}
.menu-indeks ul li:last-child {
    margin-right: 18px;
}
.menu-indeks ul li a {
    padding: 5px;
    font-size: 14px;
    justify-content: space-between;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    font-family: Montserrat-FF, Arial, Tahoma, sans-serif;
    flex-flow: wrap;
    font-weight: 600;
    background: #f0f0f0;
    border-radius: 4px;
    margin-bottom: 5px;
}
.menu-indeks ul li a .menu-image-title {
    padding: 0;
}
.page-template-indeks .widget.article,
.page-template-trending .widget.article {
    border: 0;
}
.notfound {
    text-align: center;
    padding: 15px 0 40px;
    font-family: Montserrat-FF, Arial, Tahoma, sans-serif;
}
.notfound-title h1 {
    font-weight: 600;
    font-size: 18px;
}
.notfound-desc {
    font-size: 14px;
    color: #666666;
}
.img-404 {
    background-image: url("../img/error.png");
    display: block;
    width: 200px;
    height: 200px;
    background-size: 200px;
    background-repeat: no-repeat;
    background-position: center;
    text-align: center;
    margin: auto;
}
.notfound-button {
    margin-top: 30px;
}
.notfound-button a {
    position: relative;
    font-size: 16px;
    line-height: 1.4;
    padding: 8px 16px;
    text-align: center;
    cursor: pointer;
    vertical-align: top;
    border: 1px solid transparent;
    border-radius: 4px;
    background: var(--color3);
    color: #FFFFFF;
    font-family: Montserrat-FF, Arial, Tahoma, sans-serif;
}

.sub-title {
    width: 100%;
    font-size: 14px;
    color: #666666;
}

.author-box {
    text-align: center;
    margin-bottom: 25px;
    font-family: Montserrat-FF, Arial, Tahoma, sans-serif;
    border-bottom: 1px solid #f0f0f0;
    padding-bottom: 20px;
}
.author-name h1 {
    color: #000;
    font-size: 20px;
    font-weight: 400;
}
.author-bio {
    font-size: 12px;
}
.author-avatar {
    background: #f0f0f0;
    border-radius: 50em;
    width: 80px;
    height: 80px;
    display: inline-block;
}
.author-avatar img {
    border-radius: 50em;
}

.darkmode {
    background: #272727;
}
.darkmode .box,
.darkmode header.header,
.darkmode .navigation,
.darkmode input#author,
.darkmode input#email,
.darkmode textarea#comment,
.darkmode .commentAvatar,
.darkmode .article-item.big,
.darkmode .popup-menu {
    background-color: #272727;
}
.darkmode .popup-menu:after {
    border-color: transparent transparent #272727 #272727;
    box-shadow: -3px 3px 3px 0 rgb(0 0 0 / 25%);
}
.darkmode a,
.darkmode .article-detail .article-content,
.darkmode .footer-nav .widget .widget-header .widget-title,
.darkmode .footer-brand .widget .widget-header .widget-title,
.darkmode input#author,
.darkmode input#email,
.darkmode textarea#comment,
.darkmode p.form-submit,
.darkmode .article-header h1,
.darkmode .comment-share .share-box a,
.darkmode .comment-box a:hover,
.darkmode .notfound-title h1,
.darkmode .notfound-button a:hover,
.darkmode .widget .widget-desc a:hover,
.darkmode .article-detail .paginationPostNav a:hover,
.darkmode .article-detail .paginationPostLink a:hover,
.darkmode .author-name h1,
.darkmode .popup-menu-content .widget .widget-header .widget-title,
.darkmode .navigation nav ul li a,
.darkmode .article-detail .bacajuga strong,
.darkmode .article-text,
.darkmode .popup-menu-header .popup-input-search {
    color: #ffffff;
}

.darkmode .article-text a{
    color: var(--txtlinkpos);
}
.darkmode a:hover {
    color: var(--color1);
}
.darkmode .menu-indeks ul li,
.darkmode .widget.article,
.darkmode .sidebar-box .widget,
.darkmode .comment-reply-title,
.darkmode input#author,
.darkmode input#email,
.darkmode textarea#comment,
.darkmode p.form-submit,
.darkmode .notif,
.darkmode .widget.article .widget,
.darkmode .comment-share.bottom,
.darkmode .commentsArea li,
.darkmode .article-detail .pagination-post,
.darkmode .comments-pagination a,
.darkmode .comments-pagination span,
.darkmode .sidebarmenu .widget,
.darkmode .author-box,
.darkmode .popup-menu-header,
.darkmode .popup-menu-content .widget,
.darkmode .popup-menu-header .popup-input-search {
    border-color: #444444;
}
.darkmode .comment-share-button a,
.darkmode .widget .widget-desc,
.darkmode .article-detail .tag-post ul li a,
.darkmode .comment-share .share-box a,
.darkmode .article-detail .paginationPostLink a, 
.darkmode .article-detail .paginationPostLink span,
.darkmode .comment-share .comment-box a,
.darkmode .article-detail .showall-page a,
.darkmode .commentBodyModeration,
.darkmode .menu-indeks ul li a{
    background-color: #373737;
}
.darkmode footer.footer,
.darkmode .media-more a,
.darkmode .comment-reply-title,
.darkmode p.form-submit,
.darkmode .notif,
.darkmode .commentsArea li,
.darkmode .comments-pagination a,
.darkmode .comments-pagination span,
.darkmode .article-grid .article-grid-box,
.darkmode .author-avatar {
    background: #373737;
}
.darkmode .headline .media-text {
    background: #373737;
    background: -moz-linear-gradient(top, #373737 65%, rgba(255, 255, 255, 0) 100%);
    background: -webkit-linear-gradient(top, #373737 65%, rgba(255, 255, 255, 0) 100%);
    background: linear-gradient(to top, #373737 65%, rgba(255, 255, 255, 0) 100%);
}
.darkmode .footer-brand .widget,
.darkmode .footer-nav ul li a,
.darkmode .media-text,
.darkmode .comment-share .share-box,
.darkmode .comment-notes,
.darkmode .logged-in-as a,
.darkmode .notif,
.darkmode .widget .widget-desc,
.darkmode .wp-block-image figcaption,
.darkmode .breadcrumb a,
.darkmode .comments_title,
.darkmode .commentBodyText,
.darkmode .sidebarmenu .widget .widget-header .widget-title,
.darkmode .sidebarmenu .widget li a,
.darkmode .notfound-desc,
.darkmode .comment-btnshare,
.darkmode .commentBodyFooter a,
.darkmode .sub-title,
.darkmode .sidebar-box .widget,
.darkmode .author-bio,
.darkmode .no-more,
.darkmode .popup-menu-content .widget li a {
    color: #999;
}
.darkmode .comment-share .share-box .facebook {
    background: #3C5A99;
}
.darkmode .comment-share .share-box .twitter {
    background: #1DA1F2;
}
.darkmode .comment-share .share-box .whatsapp {
    background: #25D366;
}
.darkmode .comments-pagination span.current {
    background-color: #337ab7;
    border-color: #337ab7;
}
.darkmode .media-more a:hover {
    color: var(--color3);
}
.darkmode .media-image:before {
    background: #1d2129;
}
.darkmode .media-image:after {
    background-image: linear-gradient(90deg,rgb(27 31 39) 0,rgb(27 31 39) 20%,rgb(27 31 39) 60%,rgb(27 31 39));
}

.darkmode .navigation:before {
    background: #272727;
    background: -moz-linear-gradient(right, #272727 25%, rgb(27,31,39,0) 100%);
    background: -webkit-linear-gradient(right, #272727 25%, rgb(27,31,39,0) 100%);
    background: linear-gradient(to right, #272727 25%, rgb(27,31,39,0) 100%);
}
.darkmode .navigation:after {
    background: #272727;
    background: -moz-linear-gradient(left, #272727 25%, rgb(27,31,39,0) 100%);
    background: -webkit-linear-gradient(left, #272727 25%, rgb(27,31,39,0) 100%);
    background: linear-gradient(to left, #272727 25%, rgb(27,31,39,0) 100%);
}
.darkmode .footer-border {
    background: #272727;
    background: -moz-linear-gradient(right, #272727 0%, #373737 100%);
    background: -webkit-linear-gradient(right, #272727 0%, #373737 100%);
    background: linear-gradient(to right, #272727 0%, #373737 100%);
}
.darkmode .navigation nav ul li.color1 a:hover,
.darkmode .navigation nav ul li.color1 a {
    color: var(--color1);
}
.darkmode .navigation nav ul li.color2 a:hover,
.darkmode .navigation nav ul li.color2 a {
    color: var(--color2);
}
.darkmode .navigation nav ul li.color3 a:hover,
.darkmode .navigation nav ul li.color3 a {
    color: var(--color3);
}
.darkmode .navigation nav ul li.color4 a:hover,
.darkmode .navigation nav ul li.color4 a {
    color: var(--color4);
}
.darkmode .navigation nav ul li.color5 a:hover,
.darkmode .navigation nav ul li.color5 a {
    color: var(--color5);
}
.darkmode .navigation nav ul li.color6 a:hover,
.darkmode .navigation nav ul li.color6 a {
    color: var(--color6);
}
.darkmode .navigation nav ul li.color7 a:hover,
.darkmode .navigation nav ul li.color7 a {
    color: var(--color7);
}
.parallaxads {
    margin-right: auto;
    margin-left: auto;
    width: 100%;
    height: 300px;
    position: relative;
    left: 0;
    right: 0;
    margin-bottom: 0;
    background: #1d2327;
}

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

.parallaxads-wrap {
    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: 640px;
    width: 100%;
    left: 0;
    right: 0;
}

.parallaxads-wrap img {
    margin: 0 auto;
    display: block;
}

.billboard.parallax.show {
    display: none;
}


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

.grid-footer .widget-header {
    display: flex;
    justify-content: center;
    margin-top: 15px;
}

.grid-footer ul li a {
    color: var(--colorfooter);
}
.parallaxads-wrap ins {
    margin: 0 auto !important;
    display: block !important;
}