:root {
    --color1: #035d53;
    --color2: #ed3833;
    --widthparallaxdesktop: 100%;
    --heightparallaxdesktop: 250px
}

body {
    background-color: #FFF;
    font-family: Inter, sans-serif;
    font-size: 14px;
    line-height: 24px;
    -webkit-font-smoothing: antialiased;
    color: #222;
    overflow: hidden;
}

body.nooverflow {
    overflow: unset;
}

* {
    box-sizing: border-box;
}

a {
    background-color: transparent;
    color: #222;
    text-decoration: none;
}

.table:after, .table:before {
    content: " ";
    display: table;
}

.table:after {
    clear: both;
}

.content {
    background-color: #FFF;
    display: block;
    min-width: 1000px;
}

.content.fixed {
    margin-top: 200px;
}

@-webkit-keyframes shimmer {
    100% {
        transform: translateX(100%)
    }
}

@keyframes shimmer {
    100% {
        transform: translateX(100%)
    }
}

.widget-title {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 13px;
    text-transform: uppercase;
    margin-top: 0;
    color: #222;
    line-height: 1.4;
}

header.header {
    background-color: var(--color1);
    z-index: 999;
    top: 0;
    margin-left: 0;
    width: 100%;
    left: 0;
}


.header-box {
    margin: 0 auto;
    width: 1000px;
    padding-top: 8px;
    padding: 0 13px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 20px;
}

.header-brand a {
    margin: 0;
    display: block;
    outline: 0;
}

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


.header-search-form {
    width: auto;
    margin: 0;
    position: relative;
}

.header-input-search {
    -webkit-appearance: none;
    border: 0;
    border-radius: 16px;
    padding: 0px 10px 0 45px;
    font-size: 12px;
    width: 395px;
    height: 32px;
    font-weight: 500;
    color: #666;
}

.search-ico {
    position: absolute;
    left: 8px;
    top: 0;
    width: 32px;
    height: 32px;
    background-position: center;
    background-size: 16px;
}

.header-input-search:focus {
    outline: none;
}

.btn-search {
    background-color: var(--color2);
    color: #fff;
    border: none;
    border-radius: 16px;
    margin-left: 5px;
    font-weight: 800;
    font-size: 12px;
    width: 90px;
    height: 32px;
    cursor: pointer;
}

.header-nav {
    font-size: 14px;
    line-height: 24px;
    box-shadow: 0 1px 0 0 rgba(0,0,0,.1);
    position: relative;
}

.nav-container {
    width: 1000px;
    margin: 0 auto;
    margin-right: auto;
    margin-left: auto;
    height: 50px;
    position: relative;
    padding: 0;
    overflow: visible;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    justify-content: space-between;
}

.header-nav .nav-container nav > ul {
    padding: 0px 12px;
    display: flex;
    margin: 0;
    list-style: none;
    padding-left: 0;
}

.nav-container .slim {
    width: 930px;
}

.header-nav .nav-container ul > li {
    border: none;
    max-height: 50px;
    position: relative;
}

.header-nav a {
    font-size: 13px;
    font-weight: 700;
    display: block;
    color: #ffffff;
    padding: 0 15px;
    line-height: 50px;
}

.header-nav .nav-container ul > li:first-child a {
    padding-left: 0;
}

.header-nav .nav-container ul > li.logo img {
    display: none;
    padding: 0;
    width: 30px;
    height: 30px;
}

.header-nav .nav-container ul > li.current-menu-item a {
    color: var(--color2);
}

.header-nav .nav-container li:hover > a, .header-nav .sub-menu li:hover > a {
    color: var(--color2) !important;
}

.header-nav .nav-container ul > li .sub-menu {
    display: none;
    background-color: #FFF;
    position: absolute;
    left: 0;
    min-width: 150px;
    list-style: none;
    margin: 0;
    border-radius: 0;
    z-index: 10;
    border: none;
    box-shadow: 0 0 4px 0 rgba(0,0,0,.3);
    padding: 5px 0;
}

.header-nav .nav-container ul > li:hover .sub-menu {
    display: block;
}

.header-nav .nav-container ul > li .sub-menu li {
    display: block;
    border: none;
    max-height: 50px;
}

.header-nav .nav-container ul > li .sub-menu li a {
    font-size: 12px;
    font-weight: 700;
    padding: 6px 10px;
    line-height: 1.5;
    color: #2E2E2E;
}

.nav-container .menu-item-has-children > a:after {
    content: "";
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: 2px;
    vertical-align: middle;
    border-top: 4px solid #ffffff;
    border-right: 4px solid transparent;
    border-left: 4px solid transparent;
    border-bottom: 0;
    margin-left: 10px;
}
.breaking-area > * {
    margin-bottom: 15px !important;
}

.breaking-area {
    margin-top: 10px;
}
.mode {
    height: 25px;
    margin: 4px 0 0 0;
    float: right;
    width: 25px;
    background-color: transparent;
    border: 0;
    outline: none;
    background-size: 25px;
    display: block;
    cursor: pointer;
}

.mode.icon-darkmode {
    background-image: url("../icon/moon.svg");
    filter: brightness(0) invert(1);
}

.mode.icon-lightmode {
    background-image: url("../icon/sun.svg");
    filter: brightness(0) invert(1);
}

.header.fixed {
    position: fixed;
}

.header.fixed .header-wrap {
    display: none;
}

.header.fixed .header-nav .nav-container nav > ul > li.logo img {
    display: inline;
}

.header.fixed .header-nav .nav-container nav > ul > li.logo a .menu-image-title {
    display: none;
}

.header.fixed .header-nav .nav-container nav > ul > li > a {
    padding: 0 6px 0 6px;
}

.fixed-search {
    width: 50px;
    position: relative;
    display: none;
}

.fixed-form {
    position: absolute;
    top: 45px;
    background-color: #FFF;
    right: 0;
    padding: 10px;
    border: none;
    box-shadow: 0 0 4px 0 rgba(0,0,0,.3);
    z-index: 101;
    border-radius: 3px;
    display: none;
}

.fixed-form.show {
    display: block;
}

.fixed-input-search {
    font-size: 12px;
    line-height: 20px;
    width: 320px;
    height: 32px;
    padding: 0 10px;
    border: 1px solid #e5e5e5;
    outline: none;
}

.btn-fixed-search {
    padding: 10px 15px;
    margin-top: 4px;
    height: 42px;
    line-height: 50px;
    background-color: rgba(0,0,0,0);
    border: none;
    float: right;
    display: block;
    cursor: pointer;
}

.icon-search {
    display: block;
    width: 20px;
    height: 20px;
    background-size: 20px;
    filter: brightness(0) invert(1);
}

.nav-submenu {
    position: relative;
    border-top: 1px solid #EDEDED;
    overflow: hidden;
    background-color: #FFF;
    height: 40px;
    padding: 0px 12px;
}

.submenu-conteiner {
    width: 1000px;
    margin: 0 auto;
    display: flex;
    padding: 0px 12px;
    height: 40px;
    align-items: center;
}

.nav-title, .nav-title-search {
    margin: 0;
    padding: 0;
    white-space: nowrap;
}

.nav-title a, .nav-title-search {
    color: #000;
    padding: 0 12px 0 0;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    margin-right: 10px;
    border-right: solid 1px #E5E5E5;
}

.nav-title img {
    width: 20px;
    height: 20px;
    margin-right: 10px;
    vertical-align: top;
}

.submenu {
    margin: 0;
    padding: 0;
    overflow: hidden;
    position: relative;
}

.submenu ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    height: 40px;
    align-items: center;
}

.submenu ul li {
    align-items: center;
    margin: 0;
    padding: 0;
    white-space: nowrap;
    height: 100%;
    display: flex;
}

.submenu ul li.active a, .submenu ul li.current-menu-item a {
    color: var(--color1);
}

.submenu ul li a {
    font-size: 12px;
    font-weight: 500;
    line-height: 20px;
    text-transform: capitalize;
    padding: 11px 12px;
}

.submenu ul li a:hover {
    color: var(--color1);
}

.submenu a:hover {
    color: var(--color2);
}

.header-nav .submenu a {
    color: #222;
}

.submenu ul li:first-child {
    margin-left: -10px;
}

.breaking {
    background-color: #212121;
    width: 980px;
    height: 36px;
    margin: 0 auto;
    border-radius: 18px;
}

.breaking-container {
    width: 940px;
    height: 100%;
    float: left;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    color: #FFF;
    margin-top: 0px;
    display: flex;
    align-items: center;
}

.breaking a {
    color: #fff;
    margin-right: 100px;
}

.breaking-title {
    line-height: 22px;
    margin: 0 10px 0 20px;
    font-weight: 700;
    font-size: 13px;
    text-align: left;
    text-transform: uppercase;
    color: #ffffff;
}

.breaking-content {
    text-align: left;
    color: #FFF;
    position: relative;
    width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    font-size: 13px;
    font-weight: 400;
    line-height: 36px;
}

.breaking-close {
    margin: 7px 0;
    display: inline-block;
    float: right;
}

.icon-breaking-close {
    background-image: url("data:image/svg+xml,%3Csvg width='22px' height='22px' viewBox='0 0 22 22' version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink'%3E%3C!-- Generator:sketchtool 53 (72520) - https://sketchapp.com --%3E%3Ctitle%3E86097F29-DC98-42DD-8253-16D7D979CFA7%3C/title%3E%3Cdesc%3ECreated with sketchtool.%3C/desc%3E%3Cg id='Bola-Desktop-Projection' stroke='none' stroke-width='1' fill='none' fill-rule='evenodd'%3E%3Cg id='Bola-Home-Desktop-Redesign-Logo-Baru' transform='translate(-1098.000000, -128.000000)'%3E%3Cg id='Breaking' transform='translate(150.000000, 120.000000)'%3E%3Cg id='X' transform='translate(948.000000, 8.000000)'%3E%3Cg transform='translate(3.000000, 3.000000)' stroke='%23FFFFFF'%3E%3Ccircle id='Oval' cx='8' cy='8' r='8'%3E%3C/circle%3E%3Cpath d='M6,6 C8.24023438,8.24023437 9.45092773,9.45092773 9.63208008,9.63208008 C9.81323242,9.81323242 9.99438477,9.99438477 10.1755371,10.1755371' id='Line-3' stroke-linecap='square'%3E%3C/path%3E%3Cpath d='M10.1755371,6 L6,10.1755371' id='Line-3' stroke-linecap='square'%3E%3C/path%3E%3C/g%3E%3Crect id='Rectangle-7' x='0' y='0' width='22' height='22'%3E%3C/rect%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    background-color: transparent;
    width: 22px;
    height: 22px;
    display: inline-block;
    vertical-align: top;
    margin-right: 11px;
    background-size: 22px;
    background-repeat: no-repeat;
    border: 0;
    outline: none;
    cursor: pointer;
}

.breaking.fixed-top {
    left: 50%;
    transform: translateX(-50%);
    top: 58px;
    margin: 0;
    position: fixed;
    z-index: 6;
}

.billboard {
    width: 1000px;
    margin: 0 auto;
    padding: 0px 12px;
}

.billboard .widget {
    text-align: center;
    padding: 15px 0;
}

.billboard .widget img {
    display: block;
    margin: auto;
}

.billboard.parallax {
    width: 100%;
    height: var(--heightparallaxdesktop);
    position: relative;
    left: 0;
    right: 0;
    margin-right: auto;
    margin-left: auto;
    margin-bottom: 0;
    background: #1a1a1a;
}

.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)!important;
    object-fit: cover
}

.main {
    padding: 15px 0;
}

.main-container {
    padding: 0px 12px;
    margin-right: auto;
    margin-left: auto;
    width: 1000px!important;
}

.article-row {
    display: flex;
    flex-wrap: wrap;
    margin-left: -13px;
    margin-right: -13px;
}

.article {
    position: relative;
    padding-left: 13px;
    padding-right: 13px;
    flex: 1;
    width: 676px;
}
.article-box .search-results {
    padding: 10px 0;
    display: block;
    font-size: 14px;
}
.media-image {
    background: #DDD;
    position: relative;
    overflow: hidden;
}

.media-image:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    background: #DDD;
    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: "";
}

.media-image img {
    display: block;
    object-fit: cover;
    width: 100%;
    z-index: 2;
    position: absolute;
    height: 100%;
}

.media-link:before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 3;
    cursor: pointer;
}

.media-link:hover {
    color: var(--color1);
}
.headline-area .widget {
    margin-bottom: 20px;
}
.headline {
    overflow: hidden;
    border: 1px solid #E5E5E5;
    padding-bottom: 0;
}


.headline-box {
    position: relative;
}

.headline-image {
    width: 100%;
    height: 0;
    margin-bottom: 15px;
    padding-bottom: 56%;
}

.headline-text {
    display: block;
    width: auto;
    padding: 0 10px 0 20px;
    border: none;
}

.headline-time {
    line-height: 1.2;
    margin-bottom: 8px;
    color: #6c6c6c;
    font-size: 11px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.headline-time svg {
    margin-right: 5px;
    height: 22px;
    color: var(--color2);
}

.headline-title {
    font-size: 30px;
    font-weight: 700;
    line-height: 1.3;
    margin: 0 0 6px 0;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.headline-content {
    font-size: 13px;
    line-height: 1.54;
    color: #6c6c6c;
    margin: 0;
    border-bottom: 1px solid #F5F5F5;
    padding-bottom: 15px;
}

.post-content h1, .post-content h2, .post-content h3, .post-content h4, .post-content h5, .post-content h6 {
    line-height: 1.3;
}
.latest-area .widget {
    border-top: solid 1px #E5E5E5;
    padding-top: 20px;
}
.article-item {
    position: relative;
    padding: 20px 0;
    border-top: solid 1px #E5E5E5;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    align-items: center;
}
body.category .latest-area .widget.headline {
    padding: 0;
}
body.author .article-item:first-child, body.tag .article-item:first-child {
    border: 0;
    padding-top: 0;
}
body.category .article-item {
    padding-top: 0;
    border: 0;
}
.article-image {
    margin-right: 15px;
    width: 200px;
    height: 0;
    display: block;
    vertical-align: top;
    position: relative;
    overflow: hidden;
    padding-bottom: 112px;
}

.article-text {
    vertical-align: top;
    flex: 1;
}

.article-category {
    font-size: 11px;
    font-weight: 700;
    line-height: 24px;
    margin-right: 5px;
    letter-spacing: .4px;
    text-transform: uppercase;
    color: var(--color1);
}

.article-time time {
    color: #6c6c6c;
    font-size: 11px;
}

.article-title {
    margin-top: 0;
    margin-bottom: 6px;
}

.article-title a {
    color: #222;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.39;
    text-decoration: none;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.summary {
    color: #6c6c6c;
    font-size: 13px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-height: 1.3;
}

.summary p {
    margin: 0;
}

.article-text-gallery {
    display: block;
    margin-bottom: 5px;
    width: 100%;
}

.article-gallery {
    overflow: hidden;
    height: 288px;
    width: 100%;
    display: flex;
}

.article-gallery .big-gallery {
    position: relative;
    width: 60%;
    left: 0;
    top: 0;
    height: 100%;
}

.article-gallery .big-gallery:before, .article-gallery .small-gallery:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    background: #DDD;
    animation: shine 1s infinite;
}

.article-gallery .big-gallery:after, .article-gallery .small-gallery: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: "";
}

.article-gallery img {
    display: block;
    object-fit: cover;
    width: 100%;
    position: relative;
    height: 100%;
    z-index: 2;
}

.article-gallery .gallery-box {
    position: relative;
    right: 0;
    top: 0;
    width: 40%;
    height: 100%;
    margin-left: 2px;
}

.article-gallery .small-gallery {
    height: 50%;
    position: relative;
}

.article-gallery .small-gallery:nth-child(1) {
    padding-bottom: 1px;
}

.article-gallery .small-gallery:nth-child(2) {
    margin-top: 1px;
}

.article-gallery .small-gallery .counter {
    position: absolute;
    right: 0;
    bottom: 0;
    height: 100%;
    width: 100%;
    background-color: rgba(0,0,0,.5);
    z-index: 3;
}

.article-gallery .small-gallery .counter span {
    font-size: 48px;
    color: #fff;
    line-height: 48px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

.article-text-gallery .article-title a:before {
    z-index: 4;
}

.article-text-video {
    display: block;
    margin-bottom: 5px;
    width: 100%;
}

.article-video.media-image {
    height: 0;
    padding-bottom: 56%;
    position: relative;
    overflow: hidden;
    width: 100%;
}

.play-box {
    position: absolute;
    z-index: 2;
    left: 50%;
    top: 50%;
    transform: translate3d(-50%,-50%,0);
}

.play-box i {
    display: block;
    width: 64px;
    height: 64px;
}

.video-time {
    position: absolute;
    display: block;
    bottom: 0;
    right: 0;
    padding: 5px;
    font-size: 12px;
    line-height: 16px;
    text-align: center;
    background-color: rgba(0,0,0,.5);
    color: #fff;
    z-index: 2;
}

.slider-item {
    padding: 0 10px;
    position: relative;
}

.headline .slider-inline {
    padding: 20px;
}

.slider-inline .widget-content {
    position: relative;
    margin: 0 -10px;
}

.slider-inline .slider-image {
    width: 100%;
    height: 0;
    padding-bottom: 58%;
}

.slider-text {
    padding-top: 8px;
}

.slider-inline .slider-time {
    font-size: 11px;
    line-height: 1.6;
    color: #6c6c6c;
    vertical-align: middle;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.slider-time svg {
    margin-right: 5px;
    height: 22px;
    color: var(--color2);
}

.slider-inline .slider-title {
    margin: 0;
    margin-top: 3px;
}

.slider-inline .slider-text a {
    font-weight: 700;
    line-height: 1.46;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    font-size: 14px;
}

.btn-next, .btn-prev {
    position: absolute;
    height: 30px;
    width: 30px;
    top: 20%;
    cursor: pointer;
    z-index: 3;
    background: #0000008c;
    border-radius: 50em;
    flex-wrap: wrap;
    align-items: center;
    display: flex;
}

.btn-prev {
    left: 15px;
}

.btn-next {
    right: 15px;
}

.btn-next svg, .btn-prev svg {
    color: #fff;
    height: 30px;
}

.headline .slider-inline .btn-prev {
    left: -10px;
    background: #fff;
}

.headline .slider-inline .btn-next {
    right: -10px;
    background: #fff;
}

.custom-tag .btn-next {
    right: -10px;
}

.custom-tag .btn-prev {
    left: -10px;
}

.headline .slider-inline .btn-prev svg, .headline .slider-inline .btn-next svg {
    color: var(--color2);
}

.latest-area .widget {
    margin-bottom: 20px;
}

.sidebar {
    position: relative;
    padding-left: 13px;
    padding-right: 13px;
    width: 326px;
}
body.author .sidebar,
body.tag .sidebar {
    margin-top: 70px;
}
.sidebar-box {
    padding-top: 20px;
    padding-bottom: 30px;
}

.sidebar .widget {
    padding-bottom: 20px;
}


.populartag .populartag-item {
    margin-bottom: 8px;
    position: relative;
    display: flex;
    align-items: flex-start;
}

.populartag .hastag {
    color: var(--color1);
    font-size: 14px;
    font-weight: 700;
    padding-right: 23px;
    line-height: 1;
}

.populartag .populartag-item .popular-title {
    border-bottom: 1px solid #E5E5E5;
    padding-bottom: 10px;
    margin: 0;
    font-size: 13px;
    font-weight: 700;
    line-height: 1.3;
    flex: 1;
}

.populartag .icon-tag {
    display: inline-block;
    width: 13px;
    height: 13px;
    margin-left: 4px;
    vertical-align: text-top;
    background-size: cover;
}

.list .list-item {
    border-bottom: 1px solid #E5E5E5;
}

.list .big-list {
    position: relative;
}

.list .big-image {
    width: 100%;
    height: 0;
    padding-bottom: 56%;
}

.list .big-text {
    padding: 0 15px 15px 15px;
    position: absolute;
    top: 0;
    height: 100%;
    bottom: 0;
    left: 0;
    right: 0;
    background-image: -webkit-gradient(linear,left top,left bottom,from(rgba(0, 0, 0, 0)),to(#000000));
    background-image: -o-linear-gradient(top, rgba(0, 0, 0, 0), #000000);
    background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0), #000000);
    z-index: 2;
}

.list .big-title {
    font-size: 14px;
    font-weight: 700;
    margin: 0;
    position: absolute;
    bottom: 15px;
    left: 15px;
    right: 15px;
    line-height: 1.5;
}

.list .big-title a {
    color: #fff;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.list .small-list {
    position: relative;
    padding: 10px 0;
    display: flex;
    align-items: center;
}

.list .small-image {
    width: 60px;
    height: 60px;
    display: inline-block;
    margin-right: 10px;
    vertical-align: middle;
    background: #DDD;
    overflow: hidden;
}

.list .small-text {
    -ms-flex: 1;
    flex: 1;
}

.list .small-text .small-title {
    margin: 0;
}

.list .small-title a {
    font-size: 14px;
    font-weight: 700;
    line-height: 1.33;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.popularpos .widget-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 0;
    padding-top: 14px;
    border: 1px solid #E5E5E5;
    text-align: left;
    background: 0 0;
    margin-bottom: -1px;
    padding-left: 15px;
    padding-right: 15px;
}

.sidebar .widget:last-child {
    position: sticky;
    top: 110px;
}

.widget-more {
    margin-bottom: 13px;
    font-size: 10px;
    color: #6c6c6c;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.widget-more svg {
    color: var(--color2);
    margin-left: 5px;
}

.popularpos .popularpos-item {
    padding-top: 8px;
    padding-bottom: 8px;
    border: 1px solid #E5E5E5;
    border-top: 0;
    position: relative;
}

.popularpos .popularpos-item:first-child {
    background-color: #F6F6F6;
    padding-top: 0;
}

.popularpos-image {
    width: 100%;
    height: 0;
    padding-bottom: 56%;
    margin-bottom: 5px;
}

.popularpos .popularpos-content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    align-items: center;
}

.popularpos .popularpos-number {
    text-align: center;
    color: #999999;
    font-size: 36px;
    font-weight: 600;
    width: 38px;
    margin: 12px 15px;
    padding-top: 9px;
    border-radius: 50%;
    height: 38px;
}

.popularpos .popularpos-text {
    padding-right: 15px;
    -ms-flex: 1;
    flex: 1;
}

.popularpos .popularpos-category {
    text-transform: uppercase;
    color: var(--color1);
    font-size: 10px;
    font-weight: 600;
}

.popularpos .popularpos-title {
    margin: 0;
}

.popularpos .popularpos-title a {
    font-size: 14px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    font-weight: 700;
}

.info {
    text-align: center;
}

.pagination {
    margin: 20px auto;
    display: none;
}

.no-more {
    margin: 20px auto;
    display: none;
    text-align: center;
    color: #666;
    font-size: 13px;
    line-height: 20px;
}

.trigger, .pagination a {
    font-size: 12px;
    padding: 10px 20px;
    text-align: center;
    text-transform: uppercase;
    color: var(--color1);
    line-height: 1;
    border: solid 1px var(--color1);
    border-radius: 2px;
    max-width: 140px;
    background-color: transparent;
    margin: 20px auto;
    display: none;
    cursor: pointer;
}

.icon-nomore {
    display: inline-block;
    width: 13px;
    height: 13px;
    margin-right: 4px;
    vertical-align: text-top;
    background-size: cover;
}

.widget.custom-tag {
    width: 980px;
    background-color: #FFF;
    margin: 0 auto;
    position: relative;
}

.custom-tag .viewport {
    margin-bottom: -10px;
    height: 52px;
    overflow: hidden;
    position: relative;
}

.custom-tag .overview {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.custom-tag .overview li {
    margin-right: 10px;
    display: inline-block;
}

.custom-tag .overview li a {
    border-radius: 21px;
    -webkit-box-shadow: 0 4px 8px 0 var(--color2);
    box-shadow: 0 4px 8px 0 var(--color2);
    background-color: var(--color2);
    line-height: 42px;
    border: none;
    color: #fff;
    font-size: 13px;
    font-weight: bold;
    display: block;
    margin-bottom: 10px;
}

.custom-tag .overview li a {
    padding: 0 20px;
}

.custom-tag .overview li img.menu-image.menu-image-title-after {
    border-radius: 50em;
    padding: 0;
    width: 32px;
    height: 32px;
    margin-left: -15px;
    object-fit: cover;
}

.custom-tag .btn-next, .custom-tag .btn-prev {
    background: transparent;
    height: 52px;
    top: 0;
}

.custom-tag .btn-next svg, .custom-tag .btn-prev svg {
    color: var(--color2);
    margin-top: -10px;
}

.custom-tag .btn-next:after {
    content: "";
    position: absolute;
    z-index: 3;
    width: 74px;
    height: 60px;
    top: 0;
    right: 28px;
    background-image: -webkit-gradient(linear, left top, right top, from(rgba(255, 255, 255, 0)), to(#ffffff) );
    background-image: -o-linear-gradient(left, rgba(255, 255, 255, 0), #ffffff);
    background-image: linear-gradient(to right, rgba(255, 255, 255, 0), #ffffff);
}

.custom-tag .slick-list {
    margin: 2px 20px;
}

.breadcrumbs ul {
    margin: 0 0 20px 0;
    padding: 0;
    list-style: none;
    border-radius: 4px;
}

.breadcrumbs ul li {
    display: inline-block;
}

.breadcrumbs ul li a {
    padding: 0 5px;
    font-size: 14px;
    font-weight: normal;
    font-style: normal;
    font-stretch: normal;
    line-height: normal;
    letter-spacing: normal;
    color: #6c6c6c;
}

.breadcrumbs ul li:first-child a {
    padding: 0 5px 0 0;
}

.breadcrumbs-icon {
    width: 10px;
    height: 10px;
    display: inline-block;
    padding: 0 5px;
    background-image: url('data:image/svg+xml;charset%3DUS-ASCII,%3Csvg%20width%3D%2210%22%20height%3D%2212%22%20viewBox%3D%220%200%2010%2012%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Ctitle%3EFill%201%3C%2Ftitle%3E%3Cpath%20d%3D%22M7.928%205.57L3.445%201.088a.306.306%200%200%200-.221-.096.305.305%200%200%200-.222.096l-.48.481a.305.305%200%200%200%200%20.443l3.78%203.781-3.78%203.782a.305.305%200%200%200-.097.222c0%20.083.032.156.096.221l.481.48a.304.304%200%200%200%20.443%200l4.483-4.483a.304.304%200%200%200%200-.443z%22%20fill%3D%22%23999%22%20fill-rule%3D%22evenodd%22%2F%3E%3C%2Fsvg%3E');
}

.post-title {
    font-size: 32px;
    font-weight: bold;
    font-style: normal;
    font-stretch: normal;
    line-height: 1.3;
    letter-spacing: normal;
    color: #000000;
    margin: 0;
    margin-bottom: 20px;
}

.page-template-terkini .post-title, .page-template-populer .post-title {
    text-align: center;
    font-size: 24px;
    font-weight: 700;
    line-height: 33px;
}

.grid-row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    justify-content: space-between;
}

.author.author-box {
    text-align: left;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

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

.author .author-avatar a {
    display: block;
}

.author .author-avatar img {
    display: block;
    width: 40px;
    height: 40px;
    border-radius: 20px;
}

.author .author-text {
    display: inline-block;
    vertical-align: top;
}

.author .author-name a {
    color: #222;
    font-size: 14px;
    line-height: 15px;
    font-weight: 700;
}

.author .pub-time {
    margin: 0;
}

.author .pub-time time {
    font-size: 12px;
    line-height: 1;
    color: #6c6c6c;
    vertical-align: top;
    display: block;
    cursor: pointer;
}

.author .pub-time time span {
    font-weight: 600;
}

.author .btn-modif {
    padding: 0;
    margin: 0;
    background-color: transparent;
    border: 0;
    margin-left: 3px;
    cursor: pointer;
}

.author .icon-arrow {
    width: 12px;
    height: 12px;
    display: inline-block;
    padding: 0 6px;
    transition-duration: .25s;
    transition-property: transform;
    transition-property: transform,-webkit-transform;
}

.author .icon-arrow-bottom {
    background-image: url("data:image/svg+xml,%0A%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cpath d='M-418-284h1440v760H-418z'/%3E%3Cpath d='M12 0v12H0V0z'/%3E%3Cpath fill='%23999' d='M2 4.334a.333.333 0 0 1 .588-.215L6 8.15l3.412-4.032a.333.333 0 1 1 .51.43L6.254 8.883a.335.335 0 0 1-.51 0L2.08 4.549A.334.334 0 0 1 2 4.334'/%3E%3C/g%3E%3C/svg%3E");
}

.author .pub-time .time-modified {
    display: none;
}

.author-bio {
    display: -webkit-box;
    white-space: pre-wrap;
}

.share .share-label {
    color: #000;
    font-size: 14px;
    line-height: 15px;
    text-transform: capitalize;
    margin-bottom: 10px;
    font-weight: 600;
}

.share .share-content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
}

.share .btn-share {
    width: 40px;
    height: 40px;
    border-radius: 20px;
    border: 0;
    margin-right: 5px;
    color: #fff;
    cursor: pointer;
}

.share .btn-share:last-child {
    margin: 0;
}

.share .btn-share.facebook {
    background-color: #4A6DB4;
}

.share .btn-share.twitter {
    background-color: #000000;
}

.share .btn-share.email {
    background-color: #424242;
}

.share .btn-share.whatsapp {
    background-color: #25D366;
}

.share .btn-share.telegram {
    background: #08c;
}

.i-telegram {
    background-repeat: no-repeat;
    background-image: url("data:image/svg+xml,%3Csvg height='24' version='1.1' viewBox='0 0 512 512' width='24' xml:space='preserve' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink'%3E%3Cg id='_x33_35-telegram'%3E%3Cg%3E%3Cg%3E%3Cpath d='M484.689,98.231l-69.417,327.37c-5.237,23.105-18.895,28.854-38.304,17.972L271.2,365.631 l-51.034,49.086c-5.646,5.647-10.371,10.372-21.256,10.372l7.598-107.722L402.539,140.23c8.523-7.598-1.848-11.809-13.247-4.21 L146.95,288.614L42.619,255.96c-22.694-7.086-23.104-22.695,4.723-33.579L455.423,65.166 C474.316,58.081,490.85,69.375,484.689,98.231z' fill='%23fff'%3E%3C/path%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.share .btn-share.copylink {
    width: 73px;
    height: 40px;
    background-color: var(--color2);
    font-size: 10px;
    font-weight: 600;
}

.btn-share .icon-share {
    display: block;
    width: 40px;
    height: 40px;
    background-position: center;
    background-size: 18px;
}

.btn-share.copylink.copied {
    transition: all 2s ease 0s;
    background-color: rgb(255, 255, 255);
    border: solid 1px var(--color2);
    color: var(--color2);
}

.i-gallery-whatsapp {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' fill='%23fff' viewBox='0 0 24 24'%3E%3Cpath d='M.057 24l1.687-6.163c-1.041-1.804-1.588-3.849-1.587-5.946.003-6.556 5.338-11.891 11.893-11.891 3.181.001 6.167 1.24 8.413 3.488 2.245 2.248 3.481 5.236 3.48 8.414-.003 6.557-5.338 11.892-11.893 11.892-1.99-.001-3.951-.5-5.688-1.448l-6.305 1.654zm6.597-3.807c1.676.995 3.276 1.591 5.392 1.592 5.448 0 9.886-4.434 9.889-9.885.002-5.462-4.415-9.89-9.881-9.892-5.452 0-9.887 4.434-9.889 9.884-.001 2.225.651 3.891 1.746 5.634l-.999 3.648 3.742-.981zm11.387-5.464c-.074-.124-.272-.198-.57-.347-.297-.149-1.758-.868-2.031-.967-.272-.099-.47-.149-.669.149-.198.297-.768.967-.941 1.165-.173.198-.347.223-.644.074-.297-.149-1.255-.462-2.39-1.475-.883-.788-1.48-1.761-1.653-2.059-.173-.297-.018-.458.13-.606.134-.133.297-.347.446-.521.151-.172.2-.296.3-.495.099-.198.05-.372-.025-.521-.075-.148-.669-1.611-.916-2.206-.242-.579-.487-.501-.669-.51l-.57-.01c-.198 0-.52.074-.792.372s-1.04 1.016-1.04 2.479 1.065 2.876 1.213 3.074c.149.198 2.095 3.2 5.076 4.487.709.306 1.263.489 1.694.626.712.226 1.36.194 1.872.118.571-.085 1.758-.719 2.006-1.413.248-.695.248-1.29.173-1.414z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
}

.wp-image-box {
    position: relative;
    overflow: hidden;
}

.wp-block-image {
    position: relative;
}

.wp-image-box a, .wp-image-box img {
    display: block;
}

.wp-block-image img {
    max-width: 100%;
    height: auto;
}

.wp-block-image figcaption, .post-content figcaption {
    padding: 10px;
    font-size: 13px;
    border-bottom: 1px solid #eee;
    font-weight: normal;
    font-style: normal;
    font-stretch: normal;
    line-height: 1.42;
    letter-spacing: normal;
    color: #6d6c6c;
    text-align: left;
    margin-top: 0;
    background: #EEE;
}

.btn-biew {
    display: -ms-flexbox;
    display: flex;
    position: absolute;
    line-height: 1;
    -ms-flex-align: center;
    align-items: center;
    top: 10px;
    right: 10px;
    border-radius: 8px;
    background-color: rgba(0,0,0,.6);
    padding: 10px 17px;
    transition: background-color .3s ease;
    border: 0;
    color: #fff;
    line-height: 1;
    cursor: pointer;
}

.wp-image-box:hover .btn-biew {
    background-color: var(--color2);
}

.btn-biew .icon-expand {
    background-image: url('data:image/svg+xml;charset%3DUS-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2212%22%20height%3D%2212%22%20viewBox%3D%220%200%2012%2012%22%3E%3Cpath%20fill%3D%22%23FFF%22%20d%3D%22M7.326%207.326a.54.54%200%200%201%20.74%200l2.89%202.891V8.37a.53.53%200%200%201%20.522-.522c.283%200%20.522.239.522.522v3.108a.53.53%200%200%201-.522.522H8.37a.53.53%200%200%201-.522-.522c0-.282.239-.521.522-.521h1.847l-2.89-2.892a.536.536%200%200%201%200-.739zm-3.37%200a.477.477%200%200%201%20.718%200%20.54.54%200%200%201%200%20.74l-2.891%202.89H3.63a.53.53%200%200%201%20.522.522.529.529%200%200%201-.522.522H.522A.53.53%200%200%201%200%2011.478V8.37a.53.53%200%200%201%20.522-.522c.282%200%20.521.239.521.522v1.847zM3.653.022c.283%200%20.522.239.522.521a.53.53%200%200%201-.522.522H1.804l2.979%203a.541.541%200%200%201%200%20.74c-.11.108-.24.152-.37.152s-.26-.044-.37-.153l-3-3v1.848a.529.529%200%200%201-.521.522A.53.53%200%200%201%200%203.652V.543A.53.53%200%200%201%20.522.022zM11.478%200A.53.53%200%200%201%2012%20.522v3.13a.53.53%200%200%201-.522.522.53.53%200%200%201-.521-.522V1.804l-3%202.979c-.11.108-.24.152-.37.152s-.26-.044-.37-.152a.541.541%200%200%201%200-.74l3-3H8.37a.529.529%200%200%201-.522-.521c0-.283.239-.522.522-.522z%22%2F%3E%3C%2Fsvg%3E');
    content: "";
    width: 12px;
    height: 12px;
    background-size: 12px 12px;
    background-repeat: no-repeat;
}

.btn-biew .text-view {
    line-height: 1;
    margin-top: 3px;
    margin-left: 5px;
    color: #FFF;
    font-size: 12px;
    font-weight: 500;
}

.btn-plus {
    display: block;
    background-color: transparent;
    width: 40px;
    height: 40px;
    border-radius: 0;
    padding: 0;
    margin: 0;
    border: 0;
    cursor: pointer;
}

.btn-plus i {
    width: 40px;
    height: 40px;
    background-position: center;
    display: block;
}

.image-share {
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    width: 40px;
    background: rgba(0,0,0,.6);
}

.imagebox-share a, .imagebox-share button {
    text-decoration: none;
    float: left;
    width: 40px;
    height: 40px;
    color: #5C5C5C;
    background-color: transparent;
    padding: 0;
    border: 0;
    cursor: pointer;
}

.btn-image-share i {
    display: block;
    width: 40px;
    height: 40px;
    text-transform: none;
    background-position: center;
    margin: 0 auto;
    background-size: 18px;
}

.imagebox-share {
    display: none;
}

.image-share:hover .btn-plus {
    display: none;
}

.image-share:hover .imagebox-share {
    display: block;
}

.post-content {
    font-size: 16px;
    line-height: 23px;
    color: #222;
    max-width: 650px;
    margin-bottom: 20px;
}
.post-row {
    display: flex;
    margin-bottom: 20px;
    flex-wrap: nowrap;
}
.post-content.notfull {
    max-width: 472px;
}
.article-adv {
    width: 160px;
    margin-left: 15px;
    margin-top: 8px;
}
.sticky-post {
    position: sticky;
    top: 110px;
}
.sticky-post .widget {
    margin-bottom: 30px;
    width: 160px;
    height: 600px;
}
.post-content a {
    color: var(--color1);
}

.bacajuga2 {
    position: relative;
    border-left: 5px solid var(--color1);
    padding-left: 10px;
    font-weight: 600;
    font-size: 16px;
    margin-block-start:1em;
    margin-block-end:1em;
    }

.bacajuga2 strong {
    display: block;
    text-transform: uppercase;
    font-weight: 800;
    font-size: 14px;
}

.bacajuga2 a {
    color: var(--color1);
}
.post-content figure {
    max-width: 100% !important;
}
.post-content img {
    max-width: 100%;
    height: auto;
    display: block;
}

.paginationpost {
    display: none;
    margin: 20px auto;
}

.loading {
    margin: 20px auto;
    display: none;
    text-align: center;
}

.paginationpost a:last-child {
    font-size: 12px;
    padding: 10px 20px;
    display: block;
    text-align: center;
    text-transform: uppercase;
    color: var(--color1);
    line-height: 1;
    border: solid 1px var(--color1);
    border-radius: 2px;
    max-width: 140px;
    margin: auto;
}

.paginationpost a:last-child:hover {
    background: #FA6400;
    color: #fff;
}

.credits-label {
    color: #6c6c6c;
    font-size: 12px;
    line-height: 15px;
    text-transform: capitalize;
}

.credits-content a {
    display: inline-block;
}

.credits-content img {
    width: 40px;
    height: 40px;
    border-radius: 20px;
}


.pagination-post {
    border-radius: 4px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin-bottom: 20px;
}
.pagination-post .paginationPostNum {
    justify-content: space-between;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-flow: wrap;
    align-items: center;
    flex: 1
}
.pagination-post.paginationPostLink {
    padding-right: 13px;
    font-size: 14px;
    text-align: left
}
.pagination-post .paginationPostNav a .btn-next,
.pagination-post .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: 4px;
    font-size: 12px;
    padding: 6px 12px;
    background: var(--color1);
    color: #fff;
    right: unset;
    width: auto;
    height: auto;
}
.pagination-post .paginationPostNav a .btn-next svg {
    height: 12px;
    margin-left: 10px;
    color: #fff;
}
.pagination-post .paginationPostLabel {
    font-weight: 700;
    font-size: 14px;
    line-height: 1.3;
    margin-right: 10px
}
.pagination-post .paginationPostLink a,
.pagination-post .paginationPostLink span {
    border-radius: 50%;
    background: #ccc;
    color: #fff;
    width: 30px;
    height: 30px;
    display: inline-block;
    margin: 0;
    padding: 6px 11px;
    line-height: 1.2
}
.pagination-post .paginationPostLink .post-page-numbers.current {
    background: var(--color1);
    color: #fff
}


.post-footer .widget {
    margin-bottom: 20px;
}

.credits-content {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
    margin-right: 5px;
}
.credits-content a,.tag-nav ul li,.tag-title h1,.tags ul li {
    display: inline-block
}
.credits {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    width: 100%;
}

.credits-name {
    font-size: 13px;
    font-weight: 700;
    display: flex;
    flex-wrap: wrap;
}

.credits-box {
    flex: 1;
}
.credits-content .avatar-image  img {
    width: 35px;
    height: 35px;
    border-radius: 20px;
    display: block;
}
.credits-content > *:not(:first-child) {
    margin-left: -24px;
}


.post-footer .share {
    margin-bottom: 0;
    width: 100%;
}
.tags-title {
    color: #000;
    font-size: 14px;
    line-height: 15px;
    text-transform: capitalize;
    margin-top: 10px;
    margin-bottom: 10px;
    font-weight: 600;
}

.tags ul {
    padding: 0;
    margin: 0;
    margin-bottom: 20px;
}

.tags ul li {
    display: inline-block;
    margin: 0 5px 0 0;
    list-style: none;
    background-color: #F8F6F6;
    position: relative;
    border-radius: 100px;
    line-height: 36px;
    border: 1px solid var(--color1);
    overflow: hidden;
}

.tags ul li a {
    line-height: 22px;
    text-decoration: none;
    display: block;
    padding: 7px 15px;
    font-weight: 600;
    font-size: 12px;
    color: var(--color1);
    max-width: 150px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    position: relative;
}
.tags ul li a svg {
    margin-left: 10px;
    position: absolute;
    right: 8px;
    top: 11px;
}
.tags ul li:hover {
    background-color: var(--color1);
    border: 1px solid var(--color1);
}

.tags ul li:hover a {
    color: #fff;
}
.tags ul li a.cstom {
    padding-right: 29px;
}
.tags .icon-tags {
    display: inline-block;
    width: 16px;
    height: 16px;
    margin-left: 4px;
    vertical-align: text-top;
    background-size: cover;
    background-image: url('data:image/svg+xml;charset%3DUS-ASCII,%3Csvg%20width%3D%2212%22%20height%3D%2212%22%20viewBox%3D%220%200%2012%2012%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Ctitle%3Esmarttopic%3C%2Ftitle%3E%3Cg%20stroke%3D%22%2377B54A%22%20fill%3D%22none%22%20fill-rule%3D%22evenodd%22%3E%3Cellipse%20cx%3D%226%22%20cy%3D%226%22%20rx%3D%225%22%20ry%3D%225%22%2F%3E%3Cpath%20d%3D%22M3.903%205.9l1.403%201.656%203.03-3.062%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E');
    margin-top: -2px;
}

.tags .tag-desc {
    position: absolute;
    bottom: 30px;
    left: 50%;
    z-index: 1040;
    max-width: inherit;
    font-style: normal;
    font-weight: 400;
    letter-spacing: normal;
    line-break: auto;
    line-height: 1.42857;
    text-align: start;
    text-decoration: none;
    text-shadow: none;
    text-transform: none;
    word-break: normal;
    word-spacing: normal;
    word-wrap: normal;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #ccc;
    border-radius: 6px;
    box-shadow: 0 5px 10px rgba(0,0,0,.2);
    width: 320px;
    height: auto;
    display: block;
    padding: 20px;
    font-size: 12px;
    margin-left: -160px;
    display: none;
}

.tags ul li a:hover .tag-desc {
    display: block;
    color: #222;
}

.tags .tag-desc:before {
    position: absolute;
    content: "";
    border: 3px solid;
    right: 50%;
    margin: 0 -7px 0 0;
    top: 100%;
    border-top: 8px solid #ffffff;
    border-left: 7px solid transparent;
    border-right: 7px solid transparent;
    border-bottom: none;
}

.grid .related-row {
    display: flex;
    flex-wrap: wrap;
    margin-left: -9px;
    margin-right: -9px;
    padding-left: 0;
    margin-top: 8px;
    margin-bottom: 0;
}

.grid .related-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-flow: wrap;
    padding-bottom: 12px;
    margin-bottom: 12px;
    position: relative;
    width: 100%;
    padding-left: 9px;
    padding-right: 9px;
    -ms-flex: 0.33333;
    flex: 0 0 33.33333%;
    max-width: 33.33333%;
    align-content: flex-start;
}

.grid .related-image {
    width: 100%;
    height: 0;
    padding-bottom: 56%;
}

.grid .related-title {
    margin-top: 10px;
    line-height: 1.4;
    margin-bottom: 0;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    font-size: 14px;
    font-weight: 700;
}

.tag-header {
    border-bottom: 1px solid #EEE;
    margin-bottom: 20px;
}

.tag-nav {
    margin-top: 5px;
}

.tag-wrapper {
    margin: 0 auto;
    padding-bottom: 15px;
}

.tag-title h1 {
    margin: 0;
    font-size: 18px;
    font-weight: 800;
    line-height: 1;
    display: inline-block;
    vertical-align: middle;
}

.tag-nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.tag-nav ul li {
    padding: 0;
    margin: 0;
    display: inline-block;
    max-height: 40px;
}

.tag-nav ul li a {
    font-size: 13px;
    font-weight: 700;
    padding: 8px 12px;
    text-transform: capitalize;
    display: block;
    text-align: center;
    line-height: 1;
}

.tag-nav ul li.active a {
    text-decoration: none;
    border-bottom: solid 2px #444;
}

.sidebar-row {
    display: flex;
    flex-wrap: wrap;
    margin-left: -9px;
    margin-right: -9px;
    padding-left: 0;
    margin-top: 8px;
    margin-bottom: 0;
}

.sidebar-item {
    padding-bottom: 12px;
    margin-bottom: 12px;
    position: relative;
}

.column6 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-flow: wrap;
    padding-left: 9px;
    padding-right: 9px;
    -ms-flex: 50%;
    flex: 0 0 50%;
    max-width: 50%;
}

.sidebar-image {
    width: 100%;
    height: 0;
    padding-bottom: 56%;
    border-radius: 8px;
}

.sidebar-title {
    margin-top: 10px;
    font-size: 13px;
    line-height: 1.43;
    margin-bottom: 0;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.next-icon {
    width: 12px;
    height: 12px;
    display: inline-block;
    vertical-align: text-top;
    margin-left: 5px;
}

.avatar-box {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.avatar-image {
    border-radius: 50em;
    overflow: hidden;
    width: 40px;
    height: 40px;
}

.avatar-image img {
    width: 40px;
    height: 40px;
    display: block;
}

.avatar-box h1 {
    margin: 0;
    font-size: 18px;
    padding: 0 15px 0 10px;
}

.kanal-header {
    font-size: 14px;
    font-weight: 700;
    text-align: left;
    background-color: #F5F5F5;
    color: #333;
    padding: 17px 20px;
    text-transform: uppercase;
}

.kanal-menu {
    border-radius: 3px;
    border: solid 1px #EDEDED;
    position: sticky;
    top: 75px;
    overflow: hidden;
}

.kanal-menu ul li svg {
    height: 10px;
    color: var(--color1);
}

.kanal-menu ul li a {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    margin-bottom: 2px;
    border-bottom: 1px solid #EDEDED;
    font-size: 14px;
    font-weight: 700;
}

.kanal-menu ul li a:hover {
    color: var(--color1);
}

.kanal-menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.kanal-menu ul li {
    padding: 0 20px;
}

.kanal-menu ul li:last-child a {
    border: 0;
}

.indeks-title {
    font-weight: 700;
    line-height: 26px;
    margin: 0;
    color: #333;
    padding-bottom: 10px;
    font-size: 18px;
}

.indeks-data {
    height: 80px;
    padding: 20px;
    background-color: #F5F5F5;
    border: solid 1px #EDEDED;
    margin-bottom: 32px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.sidebar.kanal-box {
    -ms-flex: 0.30;
    flex: 0 0 30%;
    max-width: 30%;
}

.article.kanal-box {
    -ms-flex: 0.70;
    flex: 0 0 70%;
    max-width: 70%;
}

.indeks-data #boxDate {
    flex: 1;
}

.btn-form-indeks {
    padding: 4px 30px;
    border-radius: 2px;
    height: 40px;
    border: none;
    width: 153px;
    background-color: var(--color2);
    color: #FFF;
    cursor: pointer;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    margin-left: 10px;
}

.kanal-menu ul li.current-menu-item a {
    color: var(--color1);
}

#startDate {
    height: 40px;
    font-size: 14px;
    width: 100%;
    border-radius: 2px;
    background-color: #FFF;
    box-shadow: 0 0 2px 0 rgb(0 0 0 / 15%);
    color: #9B9B9B;
    border: 0;
    padding: 10px 10px 8px 18px;
    outline: 0;
}

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

.btn-ads-close {
    position: absolute;
    background: #767575;
    display: flex;
    right: calc(50% - 35px);
    top: -24px;
    padding: 2px 2px 2px 10px;
    line-height: 1;
    color: #fff;
    cursor: pointer;
    border-radius: 50em;
    align-items: center;
    font-weight: 600;
    font-size: 11px;
    text-transform: uppercase;
}

.ads-close-icon {
    position: relative;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: flex;
    width: 17px;
    height: 17px;
    background: #e3e2e2;
    align-items: center;
    justify-content: center;
    border-radius: 50em;
    margin-left: 5px;
}

.ads-close-icon:after,.ads-close-icon:before {
    content: "";
    position: absolute;
    top: 45%;
    right: 2px;
    width: 65%;
    height: 2px;
    background: #666;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg)
}
.ads-close-icon:before {
    content: "";
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
}
footer.footer {
    margin-top: 40px;
    background-color: #F5F5F5;
    position: relative;
}

.footer .footer-container {
    width: 1000px;
    margin: 0 auto;
    padding: 0 13px;
    padding-top: 30px;
}

.footer .footer-row {
    border-bottom: 2px solid #EEE;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.footer .footer-left, .footer .footer-right {
    position: relative;
    min-height: 1px;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
}
.footer-left .widget, .footer-right .widget {
    margin-bottom: 20px;
}
.footer .footer-left .widget > img, .footer .footer-left .widget > a img {
    margin-bottom: 0;
    width: auto;
    height: 50px !important;
}

.footer .footer-left ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin: 0 -5px;
}

.footer .footer-left ul li {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 33.333333%;
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
    padding: 0 5px;
    margin-bottom: 10px;
}

.footer-left ul li a {
    font-size: 12px;
    line-height: 1.5;
    font-weight: 600;
    display: block;
}

.footer-right ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin: 0 -5px;
}

.footer-right ul li {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 33.333333%;
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
    padding: 0 5px;
    margin-bottom: 10px;
}

.footer-right ul li a {
    font-size: 12px;
    font-weight: 600;
    display: block;
    line-height: 1.5;
}

.social-box svg {
    height: 14px;
    width: 14px;
}
.social-box a {
    background: #333;
    display: flex;
    width: 25px;
    height: 25px;
    color: #fff !important;
    justify-content: center;
    align-items: center;
    border-radius: 7px;
    padding: 0 !important;
}
.social-box {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
}
.social-box a.facebook {
    background: #3c5a99;
}
.social-box a.twitter {
    background: #000;
}
.social-box a.whatsapp {
    background: #25d366;
}
.social-box a.telegram {
    background: #08c;
}
.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%);
}
.social-box a.youtube {
    background: #ff0002;
}
.social-box a.tiktok {
    background: #000;
}

.footer-bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 15px 0;
}

.footer-bottom .widget {
    margin-bottom: 15px;
}
.footer-bottom p, .footer-bottom a {
    font-size: 12px;
    line-height: 15px;
    color: #B4B4B4;
    margin: 0;
}

.footer .menu-image.menu-image-title-after {
    width: 15px;
    height: 15px;
    padding: 0;
}


.btn-top {
    transition: opacity .3s 0s,visibility 0s .3s;
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: rgba(187,187,187,.8);
    display: block;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 0;
    display: none;
    cursor: pointer;
}

.btn-top .icon-top {
    width: 22px;
    height: 22px;
    display: block;
    position: absolute;
    left: 50%;
    top: 50%;
    margin-left: -11px;
    margin-top: -11px;
}

.comment-reply-title {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 13px;
    text-transform: uppercase;
    margin-top: 0;
    color: #222;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.comment-reply-title a {
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    -webkit-font-smoothing: antialiased;
    color: var(--color1);
    font-size: 13px;
    line-height: 24px;
    font-weight: 700;
    text-transform: capitalize;
    margin-left: 10px;
}

.comments_title {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 13px;
    text-transform: uppercase;
    margin-top: 0;
    color: #222;
}

.logged-in-as a {
    flex-direction: column;
    -webkit-font-smoothing: antialiased;
    color: var(--color1);
    font-size: 14px;
    line-height: 18px;
    font-weight: 700;
    word-break: break-all;
}

.comment-form {
    flex: 1 1 0%;
    align-items: flex-end;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.logged-in-as {
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
    margin-top: 0;
    font-size: 13px;
}

input#author {
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    display: flex;
    border-radius: 5px;
    background-color: transparent;
    border: 1px solid #E5E5E5;
    padding: 8px;
    transition: all 0.2s ease 0s;
    word-break: break-word;
    position: relative;
    outline: none;
    white-space: pre-wrap;
    overflow-wrap: break-word;
    resize: none;
    margin-bottom: 10px;
    max-width: 100%;
}

input#email {
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    display: flex;
    border-radius: 5px;
    background-color: transparent;
    border: 1px solid #E5E5E5;
    padding: 8px;
    transition: all 0.2s ease 0s;
    word-break: break-word;
    position: relative;
    outline: none;
    white-space: pre-wrap;
    overflow-wrap: break-word;
    resize: none;
    margin-bottom: 10px;
    max-width: 100%;
}

textarea#comment {
    display: flex;
    margin-right: 12px;
    border-radius: 5px;
    background-color: transparent;
    border: 1px solid #E5E5E5;
    padding: 8px;
    transition: all 0.2s ease 0s;
    min-height: 58px;
    word-break: break-word;
    position: relative;
    outline: none;
    white-space: pre-wrap;
    overflow-wrap: break-word;
    resize: none;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
    margin-bottom: 10px;
    line-height: 1.5;
}

.form-submit {
    position: relative;
    margin-top: 0;
    min-height: 40px;
    width: 100%;
    height: 40px;
    margin-bottom: 0;
}

.form-submit .submit {
    position: absolute;
    right: 0;
    background-color: var(--color2);
    color: #FFF;
    border: none;
    border-radius: 100px;
    margin-left: 5px;
    line-height: 20px;
    padding: 6px 12px;
    cursor: pointer;
    height: 40px;
    background-color: var(--color2);
    font-size: 13px;
    font-weight: 600;
}

.commentsArea ol {
    margin: 0;
    list-style: none;
    padding: 0 0 20px;
    border-bottom: 1px solid #eeeeee;
}

.comment-respond {
    margin-bottom: 20px;
}

.commentsArea {
    margin-top: 30px;
}

.commentsArea ul {
    list-style: none;
}

.commentsArea ul ul {
    padding: 0;
}

.comment-notes {
    color: #6c6c6c;
}

.commentBox {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: start;
    align-items: flex-start;
    padding-bottom: 20px;
}

.commentAvatar {
    width: 32px;
    border-radius: 50%;
    height: 32px;
    background: #eee;
}

.commentAvatar img {
    display: block;
    border-radius: 50%;
    object-fit: cover;
    width: 100%;
    height: 100%;
}

.commentBody {
    margin-bottom: 4px;
    padding-left: 12px;
    padding-right: 12px;
    -ms-flex: 1;
    flex: 1;
}

.commentAuthorName, .commentAuthorName a {
    -webkit-font-smoothing: antialiased;
    color: #222;
    font-size: 14px;
    line-height: 24px;
    font-weight: 700;
}

.commentBodyText {
    font-size: 14px;
    position: relative;
    line-height: 1.25;
    word-break: break-word;
    overflow-wrap: break-word;
    margin: 0 0 5px 0;
}

.commentBodyText .commentBodyModeration {
    background-color: #eeeeee;
    padding: 5px;
    border-radius: 6px;
    color: #999999;
    margin-bottom: 10px;
    font-size: 12px;
}

.commentBodyText p {
    margin: 0 0 5px 0;
    font-size: 14px;
}

.commentReplyTo {
    float: left;
    margin-right: 5px;
    font-weight: 600;
}

.commentBodyFooter {
    -webkit-font-smoothing: antialiased;
    color: #999999;
    font-size: 12px;
    line-height: 16px;
    font-weight: 400;
}

.commentBodyFooter a {
    text-decoration: none;
    -webkit-font-smoothing: antialiased;
    color: #999999;
    font-size: 12px;
    line-height: 16px;
    font-weight: 600;
}

.commentBodyFooter time::after, .commentBodyFooter a::after {
    content: "\00B7";
    margin: 0 4px;
    font-weight: normal;
}

.commentBodyFooter a:last-child::after {
    content: "";
}

.navigation.comments-pagination {
    text-align: center;
    border-top: 1px solid #e6e8ea;
    padding-top: 10px;
}

.notfound-wrap {
    text-align: center;
    margin-bottom: 100px;
}

.notfound-message-image {
    display: block;
    margin: 101px auto 36px auto;
}

.notfound-message-caption {
    font-size: 24px;
    font-weight: 700;
    line-height: 36px;
    margin: 0;
    color: #222;
    text-align: center;
}

.notfound-message-sub-caption {
    font-size: 14px;
    line-height: 24px;
    margin: 0 0 28px 0;
    color: #979797;
    text-align: center;
}

.notfound-message-button {
    margin: auto;
    font-size: 12px;
    font-weight: 700;
    line-height: 14px;
    color: var(--color1);
    padding: 10px 23px;
    border: 1px solid #CDCDCD;
    background-color: #FFF;
    border-radius: 1px;
}

.comments-pagination {
    padding-top: 12px;
    padding-bottom: 12px;
    appearance: none;
    outline: 0px;
    transition: all 0.2s ease 0s;
    position: relative;
    cursor: not-allowed;
    vertical-align: middle;
    text-align: center;
    display: flex;
    justify-content: center;
}

.page-numbers {
    display: inline-block;
    border: 1px solid #EEE;
    padding: 8px 12px 7px 12px;
    vertical-align: middle;
    border-radius: 2px;
    line-height: 16px;
    font-size: 12px;
    color: #222;
    height: 30px;
    text-transform: uppercase;
    margin-top: 10px;
}

.prev.page-numbers {
    display: inline-block;
    border: 1px solid #FF5722;
    padding: 7px 10px;
    vertical-align: middle;
    border-radius: 2px;
    line-height: 16px;
    font-size: 12px;
    color: #FF5722;
    width: 90px;
    height: 30px;
    text-transform: uppercase;
    margin-top: 10px;
    margin-right: 10px;
}

.next.page-numbers {
    display: inline-block;
    border: 1px solid #FF5722;
    padding: 7px 10px;
    vertical-align: middle;
    border-radius: 2px;
    line-height: 16px;
    font-size: 12px;
    color: #FF5722;
    width: 90px;
    height: 30px;
    text-transform: uppercase;
    margin-top: 10px;
    margin-left: 10px;
}

span.page-numbers.current {
    color: #FFF;
    border-width: 1px 0;
    background: #FF5722;
    border: 1px solid #FF5722;
}

.commenticon {
    display: inline-block;
    vertical-align: middle;
    background-size: cover;
    width: 8px;
    height: 12px;
}

.lds-ellipsis {
    display: inline-block;
    position: relative;
}

.lds-ellipsis div {
    position: absolute;
    top: -5px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--color1);
    animation-timing-function: cubic-bezier(0, 1, 1, 0);
}

.lds-ellipsis div:nth-child(1) {
    left: -15px;
    animation: lds-ellipsis1 0.6s infinite;
}

.lds-ellipsis div:nth-child(2) {
    left: -10px;
    animation: lds-ellipsis2 0.6s infinite;
}

.lds-ellipsis div:nth-child(3) {
    left: -25px;
    animation: lds-ellipsis2 0.6s infinite;
}

.lds-ellipsis div:nth-child(4) {
    left: -25px;
    animation: lds-ellipsis3 0.6s infinite;
}

@keyframes lds-ellipsis1 {
    0% {
        transform: scale(0);
    }

    100% {
        transform: scale(1);
    }
}

@keyframes lds-ellipsis3 {
    0% {
        transform: scale(1);
    }

    100% {
        transform: scale(0);
    }
}

@keyframes lds-ellipsis2 {
    0% {
        transform: translate(0, 0);
    }

    100% {
        transform: translate(24px, 0);
    }
}

.i-arrow-reverse {
    background-image: url('data:image/svg+xml;charset%3DUS-ASCII,%3Csvg%20width%3D%2210%22%20height%3D%2212%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Ctitle%3EFill%201%3C%2Ftitle%3E%3Ctitle%3Ebackground%3C%2Ftitle%3E%3Cpath%20fill%3D%22none%22%20d%3D%22M-1-1h582v402H-1z%22%2F%3E%3Cg%3E%3Ctitle%3ELayer%201%3C%2Ftitle%3E%3Cpath%20d%3D%22M2.521%206.014l4.484%204.483a.306.306%200%200%200%20.221.097.305.305%200%200%200%20.222-.097l.48-.48a.305.305%200%200%200%200-.443l-3.78-3.782%203.78-3.781a.305.305%200%200%200%20.097-.222.307.307%200%200%200-.096-.221l-.481-.481a.304.304%200%200%200-.443%200L2.52%205.57a.304.304%200%200%200%200%20.443z%22%20fill%3D%22%232D8348%22%20fill-rule%3D%22evenodd%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E');
    margin-right: 5px;
}

.i-arrow {
    background-image: url('data:image/svg+xml;charset%3DUS-ASCII,%3Csvg%20width%3D%2210%22%20height%3D%2212%22%20viewBox%3D%220%200%2010%2012%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Ctitle%3EFill%201%3C%2Ftitle%3E%3Cpath%20d%3D%22M7.928%205.57L3.445%201.088a.306.306%200%200%200-.221-.096.305.305%200%200%200-.222.096l-.48.481a.305.305%200%200%200%200%20.443l3.78%203.781-3.78%203.782a.305.305%200%200%200-.097.222c0%20.083.032.156.096.221l.481.48a.304.304%200%200%200%20.443%200l4.483-4.483a.304.304%200%200%200%200-.443z%22%20fill%3D%22%23999%22%20fill-rule%3D%22evenodd%22%2F%3E%3C%2Fsvg%3E');
    margin-left: 5px;
}

.i-sl-left-circle {
    background-repeat: no-repeat;
    background-image: url('data:image/svg+xml;charset%3DUS-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2240%22%20height%3D%2240%22%20viewBox%3D%220%200%2040%2040%22%3E%3Cg%20fill%3D%22none%22%20fill-rule%3D%22evenodd%22%20transform%3D%22translate%283%203%29%22%3E%3Ccircle%20cx%3D%2217%22%20cy%3D%2217%22%20r%3D%2217%22%20fill%3D%22%23FFF%22%2F%3E%3Cpath%20fill%3D%22%232D8348%22%20d%3D%22M16.202%2016.999l5.13-4.267a.246.246%200%200%200%20.029-.353l-1.13-1.291a.257.257%200%200%200-.361-.027l-2.502%202.12-4.28%203.629a.247.247%200%200%200%200%20.378l6.782%205.751a.26.26%200%200%200%20.167.061.267.267%200%200%200%20.194-.087l1.129-1.291a.246.246%200%200%200-.029-.353l-5.13-4.27z%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E');
}

.i-sl-right-circle {
    background-repeat: no-repeat;
    background-image: url('data:image/svg+xml;charset%3DUS-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2240%22%20height%3D%2240%22%20viewBox%3D%220%200%2040%2040%22%3E%3Cg%20fill%3D%22none%22%20fill-rule%3D%22evenodd%22%20transform%3D%22rotate%28-180%2018.5%2018.5%29%22%3E%3Ccircle%20cx%3D%2217%22%20cy%3D%2217%22%20r%3D%2217%22%20fill%3D%22%23FFF%22%2F%3E%3Cpath%20fill%3D%22%232D8348%22%20d%3D%22M16.202%2016.999l5.13-4.267a.246.246%200%200%200%20.029-.353l-1.13-1.291a.257.257%200%200%200-.361-.027l-2.502%202.12-4.28%203.629a.247.247%200%200%200%200%20.378l6.782%205.751a.26.26%200%200%200%20.167.061.267.267%200%200%200%20.194-.087l1.129-1.291a.246.246%200%200%200-.029-.353l-5.13-4.27z%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E');
}

.i-headline-slider-bottom-photo {
    background-repeat: no-repeat;
    background-image: url('data:image/svg+xml;charset%3DUS-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2222%22%20height%3D%2222%22%20viewBox%3D%220%200%2022%2022%22%3E%3Cg%20fill%3D%22none%22%20fill-rule%3D%22evenodd%22%3E%3Cpath%20d%3D%22M2%205.413h3.547L6.946%202h7.832l1.4%203.413h3.546v11.82H2z%22%2F%3E%3Cpath%20stroke%3D%22%232D8348%22%20d%3D%22M10.862%207.378a2.795%202.795%200%200%201%202.788%202.8%202.795%202.795%200%200%201-2.788%202.802%202.795%202.795%200%200%201-2.788-2.801%202.795%202.795%200%200%201%202.788-2.801zm0-1.965c2.62%200%204.744%202.134%204.744%204.766%200%202.631-2.124%204.765-4.744%204.765-2.62%200-4.744-2.134-4.744-4.765%200-2.632%202.124-4.766%204.744-4.766z%22%2F%3E%3Cpath%20stroke%3D%22%232D8348%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%20d%3D%22M2%205.413h3.547L6.946%202h7.832l1.4%203.413h3.546v11.82H2z%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E');
}

.i-headline-slider-bottom-video {
    background-repeat: no-repeat;
    background-image: url('data:image/svg+xml;charset%3DUS-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2222%22%20height%3D%2222%22%20viewBox%3D%220%200%2022%2022%22%3E%3Cg%20fill%3D%22none%22%20fill-rule%3D%22evenodd%22%3E%3Cpath%20fill%3D%22%232D8348%22%20d%3D%22M8.262%2015.526a.368.368%200%200%201-.369-.368v-8.35a.368.368%200%200%201%20.553-.319l7.23%204.175a.368.368%200%200%201%200%20.638l-7.23%204.174a.368.368%200%200%201-.184.05zm.368-8.08v7.074l6.126-3.537L8.63%207.446z%22%2F%3E%3Cpath%20fill%3D%22%232D8348%22%20d%3D%22M10.983%2019.966c-2.4%200-4.655-.935-6.352-2.631A8.924%208.924%200%200%201%202%2010.983c0-2.4.934-4.655%202.631-6.352A8.924%208.924%200%200%201%2010.983%202c2.4%200%204.655.934%206.352%202.631a8.924%208.924%200%200%201%202.63%206.352c0%202.4-.934%204.655-2.63%206.352a8.924%208.924%200%200%201-6.352%202.63zm0-17.23a8.193%208.193%200%200%200-5.831%202.416%208.193%208.193%200%200%200-2.416%205.831%208.19%208.19%200%200%200%202.416%205.831%208.193%208.193%200%200%200%205.83%202.416%208.193%208.193%200%200%200%205.832-2.416%208.193%208.193%200%200%200%202.416-5.831%208.193%208.193%200%200%200-2.416-5.831%208.193%208.193%200%200%200-5.831-2.416z%22%2F%3E%3Cpath%20d%3D%22M0%200h22v22H0z%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E');
}

.i-checklist {
    background-repeat: no-repeat;
    background-image: url('data:image/svg+xml;charset%3DUS-ASCII,%3Csvg%20width%3D%2212%22%20height%3D%2212%22%20viewBox%3D%220%200%2012%2012%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Ctitle%3Esmarttopic%3C%2Ftitle%3E%3Cg%20stroke%3D%22%2377B54A%22%20fill%3D%22none%22%20fill-rule%3D%22evenodd%22%3E%3Cellipse%20cx%3D%226%22%20cy%3D%226%22%20rx%3D%225%22%20ry%3D%225%22%2F%3E%3Cpath%20d%3D%22M3.903%205.9l1.403%201.656%203.03-3.062%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E');
}

.i-button-back-to-top {
    background-repeat: no-repeat;
    background-image: url('data:image/svg+xml;charset%3DUS-ASCII,%3Csvg%20width%3D%2222%22%20height%3D%2222%22%20viewBox%3D%220%200%2022%2022%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Ctitle%3E8F4647C4-C464-4B45-98D3-7AFE3EE05A9A%3C%2Ftitle%3E%3Cpath%20d%3D%22M.167%2015.13l2.546%202.537L11%209.426l8.288%208.24%202.545-2.536L11%204.333z%22%20fill%3D%22%23FFF%22%20fill-rule%3D%22evenodd%22%2F%3E%3C%2Fsvg%3E');
}

.i-gallery-plus {
    background-repeat: no-repeat;
    background-image: url('data:image/svg+xml;charset%3DUS-ASCII,%3Csvg%20width%3D%2215%22%20height%3D%2214%22%20viewBox%3D%220%200%2015%2014%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Ctitle%3EGroup%2017%3C%2Ftitle%3E%3Cg%20fill%3D%22%23FFF%22%20fill-rule%3D%22evenodd%22%3E%3Cpath%20d%3D%22M7%200h1v14H7z%22%2F%3E%3Cpath%20d%3D%22M.5%207.5v-1h14v1z%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E');
}

.i-gallery-facebook {
    background-repeat: no-repeat;
    background-image: url("data:image/svg+xml,%3Csvg height='24' fill='%23fff' viewBox='0 0 512 512' width='24' xml:space='preserve' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink'%3E%3Cpath d='M374.245,285.825l14.104,-91.961l-88.233,0l0,-59.677c0,-25.159 12.325,-49.682 51.845,-49.682l40.117,0l0,-78.291c0,0 -36.408,-6.214 -71.214,-6.214c-72.67,0 -120.165,44.042 -120.165,123.775l0,70.089l-80.777,0l0,91.961l80.777,0l0,222.31c16.197,2.542 32.798,3.865 49.709,3.865c16.911,0 33.512,-1.323 49.708,-3.865l0,-222.31l74.129,0Z'%3E%3C/path%3E%3C/svg%3E");
}

.i-gallery-twitter {
    background-repeat: no-repeat;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16' fill='none'%3E%3Cpath d='M0.0551897 0L5.97805 8.73568L0 16H1.60552L6.70304 9.80469L10.9025 16H16L9.49765 6.40885L14.7708 0H13.1653L8.77266 5.33984L5.15271 0H0.0551897ZM2.51364 1.33333H4.48166L13.5415 14.6667H11.5735L2.51364 1.33333Z' fill='%23fff'%3E%3C/path%3E%3C/svg%3E");
}

.i-gallery-email {
    background-repeat: no-repeat;
    background-image: url('data:image/svg+xml;charset%3DUS-ASCII,%3Csvg%20width%3D%2216%22%20height%3D%2211%22%20viewBox%3D%220%200%2016%2011%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Ctitle%3EEmail%3C%2Ftitle%3E%3Cg%20fill%3D%22none%22%20fill-rule%3D%22evenodd%22%3E%3Cpath%20d%3D%22M-2-5h20v20H-2z%22%2F%3E%3Cpath%20d%3D%22M15.962%201.285c0-.442-.228-.834-.573-1.065a1.3%201.3%200%200%200-.726-.22H1.3C.583%200%200%20.576%200%201.285v8.43C0%2010.424.583%2011%201.299%2011h13.364c.716%200%201.298-.576%201.298-1.285V2.198h.001v-.913zM1.353%201.34H14.61v.156L7.978%206.033%201.353%201.58v-.24zM14.61%209.661H1.353V3.197l6.631%204.46%206.625-4.534v6.538z%22%20fill%3D%22%23FFF%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E');
}

.i-arrow {
    background-repeat: no-repeat;
    background-image: url('data:image/svg+xml;charset%3DUS-ASCII,%3Csvg%20width%3D%2210%22%20height%3D%2212%22%20viewBox%3D%220%200%2010%2012%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Ctitle%3EFill%201%3C%2Ftitle%3E%3Cpath%20d%3D%22M7.928%205.57L3.445%201.088a.306.306%200%200%200-.221-.096.305.305%200%200%200-.222.096l-.48.481a.305.305%200%200%200%200%20.443l3.78%203.781-3.78%203.782a.305.305%200%200%200-.097.222c0%20.083.032.156.096.221l.481.48a.304.304%200%200%200%20.443%200l4.483-4.483a.304.304%200%200%200%200-.443z%22%20fill%3D%22%23999%22%20fill-rule%3D%22evenodd%22%2F%3E%3C%2Fsvg%3E');
}

.i-gallery-copy-link {
    background-image: url('data:image/svg+xml;charset%3DUS-ASCII,%3Csvg%20width%3D%2213%22%20height%3D%2213%22%20viewBox%3D%220%200%2013%2013%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Ctitle%3ECopy%20Link%3C%2Ftitle%3E%3Cpath%20d%3D%22M12.258%207.814l-1.647-1.632a2.21%202.21%200%200%200-1.615-.659c-.644%200-1.193.23-1.647.69l-.697-.69c.464-.45.697-.996.697-1.64%200-.627-.22-1.158-.658-1.592L5.06.667A2.18%202.18%200%200%200%203.445%200c-.634%200-1.17.217-1.608.651L.673%201.797A2.132%202.132%200%200%200%200%203.389c0%20.628.222%201.161.665%201.6l1.647%201.633c.444.439.982.659%201.616.659a2.23%202.23%200%200%200%201.647-.69l.697.69c-.465.45-.697.996-.697%201.64%200%20.627.219%201.158.657%201.592l1.632%201.624c.438.444.976.667%201.615.667.634%200%201.169-.217%201.607-.651l1.165-1.146c.448-.434.673-.965.673-1.592%200-.628-.222-1.161-.666-1.6zM5.575%204.456a25.515%2025.515%200%200%201-.147-.149%205.028%205.028%200%200%200-.17-.168%201.995%201.995%200%200%200-.15-.118.641.641%200%200%200-.42-.13.735.735%200%200%200-.538.22.722.722%200%200%200-.222.534.622.622%200%200%200%20.131.416%201.744%201.744%200%200%200%20.288.317l.151.145a.77.77%200%200%201-.57.243.733.733%200%200%201-.539-.211L1.742%203.923a.724.724%200%200%201-.221-.534c0-.203.073-.379.221-.525l1.164-1.146a.769.769%200%200%201%20.539-.212c.21%200%20.39.074.538.22L5.614%203.35a.758.758%200%200%201-.04%201.106h.001zm5.607%205.484l-1.164%201.146a.768.768%200%200%201-.539.203.733.733%200%200%201-.538-.211L7.31%209.454a.759.759%200%200%201%20.04-1.106l.146.149a1.825%201.825%200%200%200%20.32.286.631.631%200%200%200%20.42.13c.211%200%20.39-.074.539-.22a.723.723%200%200%200%20.221-.533c0-.079-.01-.15-.027-.216a.64.64%200%200%200-.104-.2%201.988%201.988%200%200%200-.118-.15%205.393%205.393%200%200%200-.17-.168l-.151-.145a.757.757%200%200%201%20.57-.251c.211%200%20.391.073.539.22L11.18%208.88a.723.723%200%200%201%20.222.534c0%20.204-.074.38-.221.525z%22%20fill%3D%22%23FFF%22%20fill-rule%3D%22evenodd%22%2F%3E%3C%2Fsvg%3E');
    background-repeat: no-repeat;
}

.i-search-2 {
    background-image: url('data:image/svg+xml;charset%3DUS-ASCII,%3Csvg%20width%3D%2214%22%20height%3D%2214%22%20viewBox%3D%220%200%2014%2014%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Ctitle%3EFill%201%3C%2Ftitle%3E%3Cpath%20d%3D%22M9.28%2010.454a4.887%204.887%200%200%201-2.59.743%204.859%204.859%200%200%201-4.123-2.248%204.75%204.75%200%200%201-.63-3.635%204.79%204.79%200%200%201%202.15-3.01%204.887%204.887%200%200%201%202.592-.743c1.683%200%203.224.84%204.122%202.248a4.745%204.745%200%200%201%20.63%203.635%204.785%204.785%200%200%201-2.15%203.01m4.327%202.177l-2.463-2.438c.628-.72%201.094-1.567%201.312-2.52a5.771%205.771%200%200%200-.766-4.419A5.908%205.908%200%200%200%206.68.52a5.944%205.944%200%200%200-3.152.904A5.82%205.82%200%200%200%20.91%205.085a5.77%205.77%200%200%200%20.766%204.419%205.908%205.908%200%200%200%205.012%202.734%205.943%205.943%200%200%200%203.152-.903c.198-.124.367-.277.546-.42l2.477%202.453a.527.527%200%200%200%20.744%200%20.517.517%200%200%200%200-.737%22%20fill%3D%22%23656565%22%20fill-rule%3D%22evenodd%22%2F%3E%3C%2Fsvg%3E');
    background-repeat: no-repeat;
}

.i-big-play-button {
    background-image: url('data:image/svg+xml;charset%3DUS-ASCII,%3Csvg%20width%3D%2264%22%20height%3D%2264%22%20viewBox%3D%220%200%2064%2064%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%3E%3Ctitle%3E63B46581-D9ED-4FA3-96E2-7219B7B6A5D4%3C%2Ftitle%3E%3Cdefs%3E%3Ccircle%20id%3D%22a%22%20cx%3D%2232%22%20cy%3D%2232%22%20r%3D%2232%22%2F%3E%3Cmask%20id%3D%22b%22%20x%3D%220%22%20y%3D%220%22%20width%3D%2264%22%20height%3D%2264%22%20fill%3D%22%23fff%22%3E%3Cuse%20xlink%3Ahref%3D%22%23a%22%2F%3E%3C%2Fmask%3E%3C%2Fdefs%3E%3Cg%20fill%3D%22none%22%20fill-rule%3D%22evenodd%22%3E%3Cpath%20d%3D%22M0%200h64v64H0z%22%2F%3E%3Cuse%20stroke%3D%22%23FFF%22%20mask%3D%22url%28%23b%29%22%20stroke-width%3D%224%22%20fill-opacity%3D%22.3%22%20fill%3D%22%23000%22%20xlink%3Ahref%3D%22%23a%22%2F%3E%3Cpath%20fill%3D%22%23FFF%22%20d%3D%22M25%2045V19l18%2013z%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E');
    background-repeat: no-repeat;
}

ul.menu li.facebook a, ul.menu li.twitter a, ul.menu li.telegram a, ul.menu li.instagram a, ul.menu li.youtube a, ul.menu li.tiktok a {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

ul.menu li.facebook a:before, ul.menu li.twitter a:before, ul.menu li.telegram a:before, ul.menu li.instagram a:before, ul.menu li.youtube a:before, ul.menu li.tiktok a:before {
    content: "";
    height: 16px;
    display: block;
    background-repeat: no-repeat;
    width: 14px;
    margin-right: 5px;
    background-size: 14px;
}

ul.menu li.facebook a:before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 448 512' fill='%23444'%3E%3C!--! Font Awesome Pro 6.2.1 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license (Commercial License) Copyright 2022 Fonticons, Inc. --%3E%3Cpath d='M400 32H48A48 48 0 0 0 0 80v352a48 48 0 0 0 48 48h137.25V327.69h-63V256h63v-54.64c0-62.15 37-96.48 93.67-96.48 27.14 0 55.52 4.84 55.52 4.84v61h-31.27c-30.81 0-40.42 19.12-40.42 38.73V256h68.78l-11 71.69h-57.78V480H400a48 48 0 0 0 48-48V80a48 48 0 0 0-48-48z'/%3E%3C/svg%3E");
}

ul.menu li.twitter a:before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16' fill='none'%3E%3Cpath d='M0.0551897 0L5.97805 8.73568L0 16H1.60552L6.70304 9.80469L10.9025 16H16L9.49765 6.40885L14.7708 0H13.1653L8.77266 5.33984L5.15271 0H0.0551897ZM2.51364 1.33333H4.48166L13.5415 14.6667H11.5735L2.51364 1.33333Z' fill='%23444'%3E%3C/path%3E%3C/svg%3E");
}

ul.menu li.telegram a:before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 496 512' fill='%23444'%3E%3C!--! Font Awesome Pro 6.2.1 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license (Commercial License) Copyright 2022 Fonticons, Inc. --%3E%3Cpath d='M248,8C111.033,8,0,119.033,0,256S111.033,504,248,504,496,392.967,496,256,384.967,8,248,8ZM362.952,176.66c-3.732,39.215-19.881,134.378-28.1,178.3-3.476,18.584-10.322,24.816-16.948,25.425-14.4,1.326-25.338-9.517-39.287-18.661-21.827-14.308-34.158-23.215-55.346-37.177-24.485-16.135-8.612-25,5.342-39.5,3.652-3.793,67.107-61.51,68.335-66.746.153-.655.3-3.1-1.154-4.384s-3.59-.849-5.135-.5q-3.283.746-104.608,69.142-14.845,10.194-26.894,9.934c-8.855-.191-25.888-5.006-38.551-9.123-15.531-5.048-27.875-7.717-26.8-16.291q.84-6.7,18.45-13.7,108.446-47.248,144.628-62.3c68.872-28.647,83.183-33.623,92.511-33.789,2.052-.034,6.639.474,9.61,2.885a10.452,10.452,0,0,1,3.53,6.716A43.765,43.765,0,0,1,362.952,176.66Z'/%3E%3C/svg%3E");
}

ul.menu li.instagram a:before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 448 512' fill='%23444'%3E%3C!--! Font Awesome Pro 6.2.1 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license (Commercial License) Copyright 2022 Fonticons, Inc. --%3E%3Cpath d='M224.1 141c-63.6 0-114.9 51.3-114.9 114.9s51.3 114.9 114.9 114.9S339 319.5 339 255.9 287.7 141 224.1 141zm0 189.6c-41.1 0-74.7-33.5-74.7-74.7s33.5-74.7 74.7-74.7 74.7 33.5 74.7 74.7-33.6 74.7-74.7 74.7zm146.4-194.3c0 14.9-12 26.8-26.8 26.8-14.9 0-26.8-12-26.8-26.8s12-26.8 26.8-26.8 26.8 12 26.8 26.8zm76.1 27.2c-1.7-35.9-9.9-67.7-36.2-93.9-26.2-26.2-58-34.4-93.9-36.2-37-2.1-147.9-2.1-184.9 0-35.8 1.7-67.6 9.9-93.9 36.1s-34.4 58-36.2 93.9c-2.1 37-2.1 147.9 0 184.9 1.7 35.9 9.9 67.7 36.2 93.9s58 34.4 93.9 36.2c37 2.1 147.9 2.1 184.9 0 35.9-1.7 67.7-9.9 93.9-36.2 26.2-26.2 34.4-58 36.2-93.9 2.1-37 2.1-147.8 0-184.8zM398.8 388c-7.8 19.6-22.9 34.7-42.6 42.6-29.5 11.7-99.5 9-132.1 9s-102.7 2.6-132.1-9c-19.6-7.8-34.7-22.9-42.6-42.6-11.7-29.5-9-99.5-9-132.1s-2.6-102.7 9-132.1c7.8-19.6 22.9-34.7 42.6-42.6 29.5-11.7 99.5-9 132.1-9s102.7-2.6 132.1 9c19.6 7.8 34.7 22.9 42.6 42.6 11.7 29.5 9 99.5 9 132.1s2.7 102.7-9 132.1z'/%3E%3C/svg%3E");
}

ul.menu li.youtube a:before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 576 512' fill='%23444'%3E%3C!--! Font Awesome Pro 6.2.1 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license (Commercial License) Copyright 2022 Fonticons, Inc. --%3E%3Cpath d='M549.655 124.083c-6.281-23.65-24.787-42.276-48.284-48.597C458.781 64 288 64 288 64S117.22 64 74.629 75.486c-23.497 6.322-42.003 24.947-48.284 48.597-11.412 42.867-11.412 132.305-11.412 132.305s0 89.438 11.412 132.305c6.281 23.65 24.787 41.5 48.284 47.821C117.22 448 288 448 288 448s170.78 0 213.371-11.486c23.497-6.321 42.003-24.171 48.284-47.821 11.412-42.867 11.412-132.305 11.412-132.305s0-89.438-11.412-132.305zm-317.51 213.508V175.185l142.739 81.205-142.739 81.201z'/%3E%3C/svg%3E");
}

ul.menu li.tiktok a:before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 448 512' fill='%23444'%3E%3C!--! Font Awesome Pro 6.2.1 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license (Commercial License) Copyright 2022 Fonticons, Inc. --%3E%3Cpath d='M448,209.91a210.06,210.06,0,0,1-122.77-39.25V349.38A162.55,162.55,0,1,1,185,188.31V278.2a74.62,74.62,0,1,0,52.23,71.18V0l88,0a121.18,121.18,0,0,0,1.86,22.17h0A122.18,122.18,0,0,0,381,102.39a121.43,121.43,0,0,0,67,20.14Z'/%3E%3C/svg%3E");
}

.bacajuga {
    width: 100%;
    padding: 15px;
    background-color: #F1F1F1;
}

.bacajuga h3 {
    font-weight: 700;
    line-height: 1.25;
    color: #424242;
    display: inline-block;
    text-transform: uppercase;
    margin: 0;
    font-size: 14px;
    margin-bottom: 15px;
}

.bacajuga .bacajuga-wrapper {
    margin: 0 -13px;
    display: -ms-flexbox;
    display: flex;
}

.bacajuga .bacajuga-item {
    padding: 0 13px;
    border-right: 1px solid #C7C7C7;
    -ms-flex-positive: 1;
    flex-grow: 1;
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
}

.bacajuga .bacajuga-item:last-child {
    border-right: 0;
}

.bacajuga .bacajuga-item a {
    font-size: 14px;
    line-height: 1.4;
    font-weight: 700;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.bacajuga .bacajuga-item a:hover {
    color: var(--color1);
}

.sticky-ads-left {
    position: fixed;
    width: 300px;
    top: 0;
    left: 50%;
    margin-left: -841px;
    z-index: 999;
    text-align: left;
}

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

.sticky-ads-right {
    position: fixed;
    width: 300px;
    top: 0;
    right: 50%;
    margin-right: -841px;
    z-index: 999;
    text-align: right;
}

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

@media (min-width: 1024px) and (max-width:1280px) {
    .sticky-ads-left {
        margin-left:-808px;
    }

    .sticky-ads-right {
        margin-right: -808px;
    }
}

.big-video {
    display: flex;
    flex-wrap: wrap;
    padding: 0 10px;
    margin-bottom: 5px;
}

.big-video .big-text {
    flex: 1;
}

.big-video .media-image {
    width: 397px;
    margin-right: 15px;
    height: 0;
    padding-bottom: 36%;
    overflow: hidden;
}

.video-item {
    position: relative;
}

.big-video .big-title {
    margin: 0;
    font-weight: 700;
    display: -webkit-box;
    overflow: hidden;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
    font-size: 20px;
}

.big-video .summary {
    -webkit-line-clamp: 4;
    margin-top: 15px;
}

.video .widget-content {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -10px;
}

.video-item.small-video {
    width: 25%;
    margin-top: 15px;
    padding: 0 10px;
}

.small-video .media-image {
    width: 100%;
    height: 0;
    padding-bottom: 60%;
}

.widget.video {
    padding-bottom: 20px;
    margin-bottom: 0;
}

.small-video .small-title {
    font-size: 13px;
    line-height: 1.3;
    display: -webkit-box;
    overflow: hidden;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    margin-bottom: 0;
}

.widget.slider-inline {
    padding-bottom: 20px;
    margin-bottom: 0;
}

.foto-counter {
    position: absolute;
    right: 5px;
    bottom: 5px;
    width: 20px;
    height: 20px;
    display: inline-block;
    vertical-align: bottom;
    background-size: cover;
    background-image: url('data:image/svg+xml;charset%3DUS-ASCII,%3Csvg%20width%3D%2235%22%20height%3D%2235%22%20viewBox%3D%220%200%2035%2035%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Ctitle%3ERectangle%20106%3C%2Ftitle%3E%3Cg%20transform%3D%22translate%28.413%20.653%29%22%20stroke-width%3D%22.853%22%20stroke%3D%22%23FFF%22%20fill-rule%3D%22evenodd%22%3E%3Cpath%20d%3D%22M4.267%2029.867v2.983c0%20.71.57%201.283%201.283%201.283h27.3c.71%200%201.283-.57%201.283-1.283V5.55c0-.71-.57-1.283-1.283-1.283h-2.983V1.283A1.28%201.28%200%200%200%2028.583%200h-27.3A1.28%201.28%200%200%200%200%201.283v27.3c0%20.71.57%201.284%201.283%201.284h2.984z%22%20fill-opacity%3D%22.5%22%2F%3E%3Crect%20fill-opacity%3D%22.1%22%20width%3D%2229.867%22%20height%3D%2229.867%22%20rx%3D%221.28%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E');
    z-index: 2;
    color: #fff;
    text-align: center;
    font-size: 12px;
    line-height: 1.6;
}

.video-play {
    background-image: url("data:image/svg+xml,%3Csvg width='35px' height='35px' viewBox='0 0 35 35' version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink'%3E%3C!-- Generator:sketchtool 53 (72520) - https://sketchapp.com --%3E%3Ctitle%3E5776A8C5-73D2-4281-B095-F4168AA9BA0B%3C/title%3E%3Cdesc%3ECreated with sketchtool.%3C/desc%3E%3Cg id='Bola-Desktop-Projection' stroke='none' stroke-width='1' fill='none' fill-rule='evenodd'%3E%3Cg id='Bola-Home-Desktop-Redesign-Logo-Baru' transform='translate(-960.000000, -2193.000000)'%3E%3Cg id='Group-2-Copy-2' transform='translate(825.000000, 2078.000000)'%3E%3Cg id='Play' transform='translate(135.000000, 115.000000)'%3E%3Cg id='Group'%3E%3Crect id='Rectangle-4' stroke='%23FFFFFF' fill='%23323232' opacity='0.9' x='0.5' y='0.5' width='34' height='34' rx='4'%3E%3C/rect%3E%3Cpolygon id='Fill-1' fill='%23FFFFFF' points='12 9 12 25.814673 25.2141309 17.4113959'%3E%3C/polygon%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    width: 64px;
    height: 64px;
    background-size: 64px 64px;
    background-repeat: no-repeat;
    display: none;
    position: absolute;
    z-index: 2;
    left: calc(50% - 32px);
    top: calc(50% - 32px);
}

.big-video:hover .video-play {
    display: block;
}

#spotlight .footer {
    right: 0;
    left: 0;
}

#spotlight .footer .title, #spotlight .footer .description {
    max-width: 640px;
    margin: 0 auto;
}

#spotlight .footer .title {
    font-weight: 700;
}

#spotlight .footer .description {
    font-size: 14px;
}
.post-featured img {
    width: 100%;
}
.wp-block-gallery {
    align-items: unset !important;
    flex-wrap: unset !important;
    align-items: unset !important;
    gap: unset !important;
    display: block !important;
    max-width: 100% !important;
    overflow: hidden !important;
}

.slick-gallery figcaption {
    text-align: left !important;
    font-size: 14px;
    margin-top: 0;
    flex-grow: unset !important;
    flex-basis: unset !important;
    display: block !important;
}

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

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

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

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

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

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

.wp-block-gallery .slick-dots li.slick-active button:before {
    content: "Foto ";
}

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

.slick-dots li.slick-active button {
    display: block;
}

.slick-dots li button {
    display: none;
}

.slick-dots {
    display: flex;
    width: 100%;
    padding: 12px 0;
    border-radius: 4px;
    margin-top: 0!important;
    align-items: center;
    justify-content: center;
    color: var(--color1);
    font-weight: 600;
    counter-reset: section;
    list-style: none;
    position: relative;
    border-bottom: 1px solid #E7E7E7;
}

.slick-dots button {
    background: transparent;
    border: 0;
    outline: 0;
    color: var(--color1);
    font-weight: 700;
    font-size: 12px;
    line-height: 1;
}

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

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

.slick-dots li:last-child::after {
    font-size: 12px;
    line-height: 1;
    font-weight: 700;
}

.slick-dots li {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.comment-form-cookies-consent label {
    font-size: 14px;
    margin-left: 35px;
    font-weight: 500;
}

.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;
    margin-top: 0;
}

.comment-form-cookies-consent #wp-comment-cookies-consent {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    width: 100%;
    height: 100%;
}

.comment-form-cookies-consent label:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 25px;
    width: 25px;
    background-color: #dfdfdf;
    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(--color1);
}

.comment-form-cookies-consent #wp-comment-cookies-consent:checked ~ ::after {
    left: 10px;
    top: 6px;
    width: 4px;
    height: 10px;
    border: solid white;
    border-width: 0 3px 3px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
    content: "";
    position: absolute;
    top: 5px;
    left: 9px;
}
.parallxads {
    margin-right: auto;
    margin-left: auto;
    width: 100%;
    height: 300px;
    position: relative;
    left: 0;
    right: 0;
    margin-bottom: 0;
    background: #161616;
}

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

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

.parallxads-box > * {
    margin: 0 auto !important;
    display: inline-block;
}

.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: 24px;
    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;
}
.darkmode .btn-next-tag:after {
    background-image: -webkit-gradient(linear, left top, right top, from(rgba(0 0 0 / 0%)), to(#1b1f27) );
    background-image: -o-linear-gradient(left, rgb(0 0 0 / 0%), #1b1f27);
    background-image: linear-gradient(to right, rgb(0 0 0 / 0%), #1b1f27);
}

.darkmode .nav-submenu {
    border-top: 1px solid #323232;
    background-color: #282828;
}

.darkmode .submenu ul li.active {
    border-bottom: solid 4px var(--color2);
}

.darkmode .fixed-form {
    position: absolute;
    background-color: #282828;
}

.darkmode .fixed-input-search {
    background: #222222;
    border-color: #323232;
    color: #fff;
}

body.darkmode, .darkmode .content, .darkmode .separator-title, .darkmode .btn-share.copylink.copied, .darkmode .tags ul li, .darkmode input#author, .darkmode input#email, .darkmode textarea#comment, .darkmode .tags .tag-desc, .darkmode .header-nav .nav-container ul > li .sub-menu, .darkmode .notfound-message-button, .darkmode .widget.custom-tag, .darkmode #startDate,.darkmode .header-input-search {
    background-color: #282828;
}

.darkmode, .darkmode a, .darkmode .nav-title-search, .darkmode .header-nav a, .darkmode .widget-title, .darkmode .post-title, .darkmode .post-content, .darkmode .author .author-name a, .darkmode .header-input-search, .darkmode .tags ul li a:hover, .darkmode .share .share-label, .darkmode .credits-label, .darkmode .comment-reply-title, .darkmode input#author, .darkmode input#email, .darkmode textarea#comment, .darkmode .tags ul li a:hover .tag-desc, .darkmode .notfound-message-caption, .darkmode .latest-area .headline .slider-inline .btn-prev svg, .darkmode .latest-area .headline .slider-inline .btn-next svg, .darkmode .comments_title, .darkmode .tags-title, .darkmode .kanal-header, .darkmode .indeks-title, .darkmode .bacajuga h3, .darkmode .commentAuthorName, .commentAuthorName a, .darkmode .header-nav .nav-container ul > li .sub-menu li a {
    color: #fff;
}

.darkmode .nav-title a, .darkmode .nav-title-search, .darkmode .nav-title, .darkmode .article-item, .darkmode .tags ul li, .darkmode .popularpos .popularpos-item, .darkmode .headline, .darkmode .populartag .populartag-item h2, .darkmode .list .list-item, .darkmode .footer .footer-row, .darkmode .wp-block-image figcaption, .darkmode .separator:after, .darkmode .header-input-search, .darkmode input#author, .darkmode input#email, .darkmode textarea#comment, .darkmode .tags .tag-desc, .darkmode .tag-header, .darkmode .headline-content, .darkmode .notfound-message-button, .darkmode .commentsArea ol, .darkmode .page-numbers, .darkmode .popularpos .widget-header, .darkmode .kanal-menu, .darkmode .kanal-menu ul li a, .darkmode .indeks-data, .darkmode .indeks-title, .darkmode .bacajuga .bacajuga-item, .darkmode .latest-area .widget.video, .darkmode .latest-area .widget.slider-inline, .darkmode .slick-dots, .darkmode .latest-area .widget, .darkmode .post-content figcaption {
    border-color: #3e3e3e;
}

.darkmode .tags .tag-desc:before {
    border-top: 8px solid #393e46;
    border-left: 7px solid transparent;
    border-right: 7px solid transparent;
    border-bottom: none;
}

.darkmode .summary, .darkmode .article-time time, .darkmode .headline-time, .darkmode .breadcrumbs ul li:first-child a, .darkmode .wp-block-image figcaption, .darkmode .separator-title, .darkmode .tags ul li a, .darkmode .no-more, .darkmode .headline-content, .darkmode .latest-area .slider-inline .slider-time, .darkmode .bacajuga .bacajuga-item a, .darkmode .slider-inline .slider-time, .darkmode .post-content figcaption, .darkmode .breadcrumbs ul li a, .darkmode .author .pub-time time, .darkmode .comment-notes {
    color: #999;
}

.darkmode header.header, .darkmode .header-wrap, .darkmode .header-nav, .darkmode .popularpos .popularpos-item:first-child, .darkmode footer.footer, .darkmode .breaking, .darkmode .commentAvatar, .darkmode .kanal-header, .darkmode .indeks-data, .darkmode .bacajuga, .darkmode .commentBodyModeration, .darkmode .wp-block-image figcaption, .darkmode .post-content figcaption, .darkmode .pagination-post .paginationPostLink a, .darkmode .pagination-post .paginationPostLink span {
    background-color: #343434;
}

.darkmode .post-content a, .darkmode .notfound-message-button {
    color: var(--color1);
}

.darkmode .tags ul li a:hover {
    background-color: var(--color1);
}

.darkmode .media-image:before, .darkmode .article-gallery .big-gallery:before, .darkmode .article-gallery .small-gallery:before {
    background: #262626;
}

.darkmode .media-image:after, .darkmode .article-gallery .big-gallery:after, .darkmode .article-gallery .small-gallery:after {
    background-image: linear-gradient(90deg,rgb(36 36 36) 0,rgb(36 36 36) 20%,rgb(36 36 36) 60%,rgb(36 36 36));
}

.darkmode .i-sl-left-circle {
    background-repeat: no-repeat;
    background-image: url('data:image/svg+xml;charset%3DUS-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2240%22%20height%3D%2240%22%20viewBox%3D%220%200%2040%2040%22%3E%3Cg%20fill%3D%22none%22%20fill-rule%3D%22evenodd%22%20transform%3D%22translate%283%203%29%22%3E%3Ccircle%20cx%3D%2217%22%20cy%3D%2217%22%20r%3D%2217%22%20fill%3D%22%2322262f%22%2F%3E%3Cpath%20fill%3D%22%232D8348%22%20d%3D%22M16.202%2016.999l5.13-4.267a.246.246%200%200%200%20.029-.353l-1.13-1.291a.257.257%200%200%200-.361-.027l-2.502%202.12-4.28%203.629a.247.247%200%200%200%200%20.378l6.782%205.751a.26.26%200%200%200%20.167.061.267.267%200%200%200%20.194-.087l1.129-1.291a.246.246%200%200%200-.029-.353l-5.13-4.27z%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E');
}

.darkmode .i-sl-right-circle {
    background-repeat: no-repeat;
    background-image: url('data:image/svg+xml;charset%3DUS-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2240%22%20height%3D%2240%22%20viewBox%3D%220%200%2040%2040%22%3E%3Cg%20fill%3D%22none%22%20fill-rule%3D%22evenodd%22%20transform%3D%22rotate%28-180%2018.5%2018.5%29%22%3E%3Ccircle%20cx%3D%2217%22%20cy%3D%2217%22%20r%3D%2217%22%20fill%3D%22%2322262f%22%2F%3E%3Cpath%20fill%3D%22%232D8348%22%20d%3D%22M16.202%2016.999l5.13-4.267a.246.246%200%200%200%20.029-.353l-1.13-1.291a.257.257%200%200%200-.361-.027l-2.502%202.12-4.28%203.629a.247.247%200%200%200%200%20.378l6.782%205.751a.26.26%200%200%200%20.167.061.267.267%200%200%200%20.194-.087l1.129-1.291a.246.246%200%200%200-.029-.353l-5.13-4.27z%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E');
}

.darkmode .custom-tag .btn-next:after {
    background-image: -webkit-gradient(linear,left top,right top,from(rgba(255, 255, 255, 0)), to(#222222) );
    background-image: -o-linear-gradient(left, rgba(255, 255, 255, 0), #222222);
    background-image: linear-gradient(to right, rgba(255, 255, 255, 0), #282828);
}

.darkmode .latest-area .headline .slider-inline .btn-prev, .darkmode .latest-area .headline .slider-inline .btn-next {
    background: #3e3e3e;
}

.darkmode .footer .footer-left .widget > a img, .darkmode ul.menu li.facebook a:before, .darkmode ul.menu li.twitter a:before, .darkmode ul.menu li.telegram a:before, .darkmode ul.menu li.instagram a:before, .darkmode ul.menu li.youtube a:before, .darkmode ul.menu li.tiktok a:before {
    filter: brightness(0) invert(1);
}

.darkmode .btn-top {
    background-color: #3c3c3cba;
}
.darkmode .banner:before {
    background-color: #3c3c3c;
    background-position: center;
}