:root {
    --bg-green: #267a87;
    --bg-blue: #1d1374;
    --bg-org: #ea4828;
    --bg-white: #FFF;
    --bg-red: #ce2a22;
    --bg-light-blue: #6b95bf;
    --dark-org: #ea660e;
    --black: #000;
    --dark-blue: #3a9ce1;
    --gold: #fcc43f;
    --orange: #f57d36;
    --blue: #127ac3;
    --container:1024px;
    --dark: #333;
    --light: #ccc;
};

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale
}

a {
  text-decoration: none;
  color: #333;
}

a:hover {
  color: var(--bg-blue);
}

li {
  
}

/*! normalize-scss | MIT/GPLv2 License | bit.ly/normalize-scss */

html {
  font-family: "Poppins", sans-serif;
  line-height: 1.3;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%
}

body {
  font-size: 20px;
  margin: 0;
}

article,
aside,
footer,
header,
nav,
section {
  display: block
}

h1 {
  font-size: 2em;
  margin: 0.67em 0
}

figcaption,
figure {
  display: block
}

figure {
  margin: 1em 40px
}

hr {
  box-sizing: content-box;
  height: 1;
  overflow: visible
}

main {
  display: block
}

pre {
  font-family: monospace, monospace;
  font-size: 1em
}

a {
  background-color: transparent;
  -webkit-text-decoration-skip: objects
}

abbr[title] {
  border-bottom: none;
  text-decoration: underline;
  text-decoration: underline dotted
}

b,
strong {
  font-weight: inherit
}

b,
strong {
  font-weight: bolder
}

code,
kbd,
samp {
  font-family: monospace, monospace;
  font-size: 1em
}

dfn {
  font-style: italic
}

mark {
  background-color: #ff0;
  color: #000
}

small {
  font-size: 80%
}

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline
}

sub {
  bottom: -0.25em
}

sup {
  top: -0.5em
}

audio,
video {
  display: inline-block
}

audio:not([controls]) {
  display: none;
  height: 0
}

img {
  border-style: none
}

svg:not(:root) {
  overflow: hidden
}

button,
input,
optgroup,
select,
textarea {
  font-family: sans-serif;
  font-size: 100%;
  line-height: 1.15;
  margin: 0
}

button {
  overflow: visible
}

button,
select {
  text-transform: none
}

button,
html [type="button"],
[type="reset"],
[type="submit"] {
  -webkit-appearance: button
}

button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
  border-style: none;
  padding: 0
}

button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
  outline: 1px dotted ButtonText
}

input {
  overflow: visible
}

[type="checkbox"],
[type="radio"] {
  box-sizing: border-box;
  padding: 0
}

[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
  height: auto
}

[type="search"] {
  -webkit-appearance: textfield;
  outline-offset: -2px
}

[type="search"]::-webkit-search-cancel-button,
[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none
}

::-webkit-file-upload-button {
  -webkit-appearance: button;
  font: inherit
}

fieldset {
  padding: 0.35em 0.75em 0.625em
}

legend {
  box-sizing: border-box;
  display: table;
  max-width: 100%;
  padding: 0;
  color: inherit;
  white-space: normal
}

progress {
  display: inline-block;
  vertical-align: baseline
}

textarea {
  overflow: auto
}

details {
  display: block
}

summary {
  display: list-item
}

menu {
  display: block
}

canvas {
  display: inline-block
}

template {
  display: none
}

[hidden] {
  display: none
}

@keyframes pulse {
  0% {
    background-color: rgba(0, 0, 0, 0.05)
  }
  25% {
    background-color: rgba(245, 195, 195, 0.2)
  }
  50% {
    background-color: rgba(0, 0, 0, 0.1)
  }
  75% {
    background-color: rgba(206, 117, 118, 0.3)
  }
  100% {
    background-color: rgba(0, 0, 0, 0.05)
  }
}
.c_blue {color: #0066da;}
.c_white {color: #FFF;}
.c_red {color: #ce2a22;}
.c_green {color: #18510b;}
.bg-white {background: var(--bg-white)}
.bg-black {background: #000;}
.bg-blue {background: var(--bg-blue)}
.bg-light {background: #efefef;}
.bg-orange {background: #ea4828; }
.bg-red {background: #ce2a22; }
.bg-light-blue {background: var(--bg-light-blue);}
.bg-warning {
  width: 100%;
  display: table;
  border-radius:4px;
  background: #f64549;
  padding: 10px;
}
.bg-success {
  width: 100%;
  display: table;
  border-radius:4px;
  background: #4ee79a;
  padding: 10px;
}
.bg-1 { background: url(bg-1.jpg) center center no-repeat; background-size:100%;  }
.bg-2 { background: url(bg-2.jpg) center center no-repeat; background-size:100%;  }
.bg-3 { background: url(bg-3.jpg) center center no-repeat; background-size:100%;  }

.clear:before,
.clear:after,
.cf:before,
.cf:after {
    content: " "; /* 1 */
    display: table; /* 2 */
}

.cf:after,
.clear:after {
    clear: both;
}

/**
 * For IE 6/7 only
 * Include this rule to trigger hasLayout and contain floats.
 */
.cf {
   /* *zoom: 1;*/
}

.fr {
  float: right;
}

.fl {
  float: left;
}

.break {
  clear: both;
}
.br  {
  clear: both;
  height: 10px;
}
.space {
  clear: both;
  height: 25px;
}
.hr {
  border-top: 1px solid #ccc;
}
.brdr, .border { border:1px solid #ccc;}
.br-rad {border-radius: 8px; overflow: hidden;}
.br_btm { border-bottom:1px solid #ccc;}
.br_btm_dash { border-bottom:1px dashed #ccc;}
.text-upper, .uppercase {
  text-transform: uppercase;
}
.bold {font-weight: bold;}
.pd0 {padding: 0;}
.pd5 { padding: 5px;}
.pd10 { padding: 10px;}
.pd15 { padding: 15px;}
.pd20 { padding: 20px;}

.pl15 {padding-left: 15px;}
.pr15 {padding-right: 15px;}

.pt5 {padding-top: 5px;}
.pt20 {padding-top:20px;}

.pt10 {
  padding-top: 10px;
}

.mt10 {margin-top:10px;}
.mt20 {margin-top:20px;}

.pb15 {
  padding-bottom: 15px;
}
.bagi-1 { width: 100%; }
.bagi-2 { width: 50%; }
.w-96   { width: var(--container); margin: 0 auto}
.w-90   { width: 90%; margin: 0 auto}
.w-70   { width: 70%; }
.w-30   { width: 30%; }
.w-40   { width: 40%; }

.scroll {
  width: 100%;
  margin-top: 10px;
}
.wrapper {
  padding-top:10px;
}

.content {
  padding: 0;
  margin: 0;
}

aside  {
    max-width: 100%;
    position: relative;
    z-index: 0;
  }
nav, .header {
  width: 100%;
  float:none;
  margin:0 auto;
  background: var(--bg-white);
  border-bottom: 1px solid #efefef;
}
.pagewrap {width: auto; padding: 0; float: none; margin: 0 auto; 
  background: url(./bg.png) bottom center no-repeat;
  background-size:99.99%; background-attachment: fixed;}
.mainframe {
  width: var(--container);
  margin: 0 auto;
  padding: 0 15px;
  background: var(--bg-white);
  box-shadow: 0px 0px 8px #d9d9d9;
}
.container,
.contentiklan {
  position: relative;
  width: var(--container);
  margin: 0 auto;
}

.sideleft {
  width:700px;
  float:left;
}

.leftbig {
  width:700px;
  float:right;
}

.leftsmall {
  width:0px;
  float:left;
}

.sidebar {
  width:300px;
  float:right;
}

.container h1 {
  font-size:15px;
  color:#222;
}

.container h1 a {
  color:yellow;
  text-decoration:none;
}

.container .no {
  width:20px;
  padding:10px;
  background:red;
  font-size:20px;
}

.logo {
  padding: 0;
  float: left;
  font-size:20px;
  margin: 4px 0;
  cursor: pointer;
}
.logo img {
  height: 75px;
}
.card {
  z-index: 1;
  display: block;
  position: relative;
  margin-bottom: 15px;
  /*background-color: #fff*/
}

.card .card-image-detail {
  margin: 0;
  overflow: hidden;
}

.card .card-image-detail img {
  width: 100%;
}

.card .card-image,
.card .card-image-pilihan {
  margin: 0;
  overflow: hidden;
  animation: pulse 2s infinite ease-in-out
}

.card .card-image img {
  width: 100%;
  height: auto;
  min-height: 100%;
  display: block
}

.card .card-image figcaption {
  margin: 0
}

.card .card-header {
  display: inline-block
}

.card .card-footer {
  left: 0;
  z-index: 2;
  position: absolute;
  background-color: #fff
}

.card .card-title {
  width: 100%
}

.card .card-excerpt {
  width: 100%;
  color: #607D8C;
  font-size: 14px;
  font-weight: 400
}

.card-label {
  height: 12px;
  position: relative;
  width: 100%;
  /*border-bottom: 1px solid var(--bg-white);*/
}
.card-label-1 {
  height: 35px;
  position: relative;
  width: 100%;
  /*border-bottom: 1px solid var(--bg-white);*/
}

.block-left {
  padding-left: 10px;
  border-left: 5px solid var(--blue);
}
.terkini {
  height: 35px;
  float: left; 
  width: auto; 
  margin-right: 20px; 
  cursor: default;
  color: var(--dark-blue);
  font-size: 20px;
  font-weight: 700;
  display: inline-block;
  border-bottom: 2px solid var(--bg-blue);
  /*background: var(--bg-blue);*/
}
.terkini a {color: var(--dark-blue);}

.card .card-label a {
  color: var(--bg-red)
}

.card .card-label a:hover {
  opacity: 0.7
}
.card--headline {
  text-align: left;
  position: relative;
}

.card--headline .card-image {
  width: 100%;
  z-index: 1;
  height: 400px;
  border-radius: 0px;
}

.card--headline .card-image:after {
  content: "";
  z-index: 1;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  position: absolute;
  pointer-events: none;
  background: rgba(0, 0, 0, 0);
  background: -moz-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.7) 100%);
  background: -webkit-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.7) 100%);
  background: -o-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.7) 100%);
  background: -ms-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.7) 100%);
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.7) 100%)
}

.card--headline .card-header {
  width: 92%;
  padding:10px 4%;
  bottom: 15px;
  z-index: 1000;
  position: absolute;
}

.card--headline .card-header .card-label {
  font-size: 12px;
  font-weight: 400;
  padding: 4px 8px;
  margin: 0px;
  background: var(--bg-blue);
  color: #FFF;
}

.card--headline .card-header .card-label a {
  color: #FFF;
}

.card--headline .card-header .card-label a:hover {
  opacity: 0.7
}

.card--headline .card-header .card-time {
  font-size: 13px;
  font-weight: 700;
  padding: 4px 8px;
  margin: 0px; 
  color: #FFF;
}

.card--headline .card-title {
  color: #fff;
  margin: 8px auto;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  word-break: break-word
}

.card--headline .card-header h1 {
  font-size: 1.6em;
  font-weight: 700;
  line-height: 1.3em;
}

.card--headline .card-title a {
  color: #fff
}

.card--headline .card-title a:hover {
  opacity: 0.7
}

.card--large,
.card--large-media {
  min-height: 150px;
  height: auto;
  max-height: 600px;
  background: #FFF;
  border-radius:0px;
}

.card--large .card-image,
.card--large-media .card-image {
  min-height: 10px;
  height: auto;
  max-height: 400px;
  position: relative
}

.card--large .card-image img,
.card--large-media .card-image img {
  min-height: 100%
}

.card--large .card-image figcaption,
.card--large-media .card-image figcaption {
  margin: 0
}

.card--large .card-header,
.card--large-media .card-header {
  width: 100%;
  margin: 0px 0;
  padding: 40px 3% 45px 3%;
  height: auto;
  text-align: center;
  position: absolute;
  bottom: 0px;
  pointer-events: none;
  background: rgba(0, 0, 0, 0);
  background: -moz-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 1) 100%);
  background: -webkit-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 1) 100%);
  background: -o-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 1) 100%);
  background: -ms-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 1) 100%);
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 1) 100%)

}

.card--large .card-footer,
.card--large-media .card-footer {
  width: 100%;
  margin: 10px 3% 0 3%;
  padding: 10px 0px 0px;
  text-align: center;
  display: block;
  position: absolute;
  bottom: 15px;
  background: none;
  color: #FFF;
  font-size: 12px;
  /*border-top: 1px solid #D0D9DD*/
}

.card--large .card-footer .card-label,
.card--large-media .card-footer .card-label {
  font-weight: 700;
}

.card--large .card-title,
.card--large-media .card-header .card-title {
  display: block;
  font-size: 28px;
  margin: 5px 0;
  padding: 0;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  word-break: break-word
}

.card--large-media .card-title a {
  color: #FFF;
}
.card--large-media .card-header .card-label {
  display: none;
}
.card--large-media-foto {
  height: auto;
  /*height: 600px*/
}

.card--large-media-foto .card-image {
  /*min-height: 10px;
  height: auto;
  max-height: 400px*/
}

.card--large-media-foto .card-title {
  min-height: 70px;
  height: auto;
}

.card--video {
  width: 49.5%;
  float: left;
  padding: 1%;  
  margin: 1px;
  box-sizing: border-box;
}

.card--video h2.card-title {
  min-height: 70px;
  height: auto;
  font-size: 18px;
  line-height: 1.5;
  font-weight: 700;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  word-break: break-word

}

.card--visual {
  min-height: 130px;
  height: auto;
  max-height: 185px;
  /*margin-bottom: 10px;
  border-bottom: 1px dotted #ccc;*/
}

.card--visual:hover .card-image img,
.card--visual:hover .card-image-pilihan img {
  transform: scale(1.05, 1.05);
  -webkit-transform: scale(1.05, 1.05);
  -moz-transform: scale(1.05, 1.05);
  -ms-transform: scale(1.05, 1.05);
  -o-transform: scale(1.05, 1.05)
}

.card--visual .card-image {
  position: relative;
  width: 28%;
  margin-right: 3%;
  min-height: 110px;
  max-height: 130px;
  height: auto;
  border-radius: 8px;
  float: left;
}

.card--visual .card-image img {
  min-height: 110px;
  max-height: 100%;
  min-width: 100%;
  width: auto;
  max-width: 110%;
  -webkit-transition: 300ms linear;
  -moz-transition: 300ms linear;
  -o-transition: 300ms linear;
  -ms-transition: 300ms linear;
  transition: 300ms linear
}

.card--visual .card-image figcaption {
  margin: 0;
}

.inset {
  position: absolute;
  top: 8px;
  right: 8px;
  padding: 2px 5px;
  background: #333;
  color: #FFF;
  opacity: 0.8;
  font-size: 11px;
}

.card--visual .card-header {
  position: absolute;
  left: 0;
  margin-left:30%;
  margin-right: 1%;
  width: auto;
}

.card--visual .small {
  font-size: 12px;
  color: #333;
}
  
.card--visual .card-header h2,
.card--visual .card-header-pilihan h2 {
  font-size: 18px;
  line-height: 1.5;
  color: #888;
  font-weight: 700;
}

.card--visual .card-header .card-label,
.card--visual .card-header-pilihan .card-label {
    font-size: 12px;
    font-weight: 200;
    line-height: 1.3;
    padding: 0;
    margin-top: 0;
}
.card--visual .card-header .card-label a,
.card--visual .card-header-pilihan .card-label a {
  color: var(--dark-blue); /*#e7535e;*/
}

.card--visual .card-header .card-title {
    padding: 0;
    margin: 0;
}

.card--visual .card-header .card-time,
.card--visual .card-header-pilihan .card-time {
  width: auto;
  margin: 5px 0;
  font-size: 13px;
  color: #111;
}

.card--visual .card-footer {
  position: absolute;
  left: 0;
  bottom: 0px;
  margin-left:33%;
  width: 100%;
  background: none;
}

.card--visual .card-footer .card-time {
  width: 100%;
  margin: 0 0;
  font-size: 11px;
}

.card--visual .card-title {
  font-size: 18px;
  line-height: 1.4;
  font-weight: 700;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  word-break: break-word
}
.card--visual .card-header small {
  font-size: 30px;
  color: #999;
  margin: -10px 5px 0 5px;
  padding-bottom: 10px;
  height: 2px;
}
/*card-pilihan*/
.card--visual .card-image-pilihan {
  width: 40%;
  margin-left: 3%;
  margin-right: 0;
  padding-bottom: 20px;
  margin-bottom: 0px;
  min-height: 140px;
  max-height: 175px;
  height: auto;
  border-radius: 0px;
  float: right;
}

.card--visual .card-image-pilihan img {
  min-height: 140px;
  max-height: 100%;
  min-width: 100%;
  width: auto;
  max-width: 110%;
  -webkit-transition: 300ms linear;
  -moz-transition: 300ms linear;
  -o-transition: 300ms linear;
  -ms-transition: 300ms linear;
  transition: 300ms linear
}

.card--visual .card-header-pilihan {
  position: absolute;
  left: 0;
  float: left;
  margin-left: 2%;
  width: 58%;
  padding-bottom: 0;
}

.card--visual .card-footer-pilihan .card-time {
  position: absolute;
  left: 0;
  bottom: 10px;
  margin-right:33%;
  width: 100%;
  background: none;
  font-size: 11px;
}

.card--landscape {
  position: relative;
  height: 65px;
  display: block;
  /*padding: 0 0 16px 0;
  border-radius: 0px;*/
  clear: both;
}

.card--landscape .card-image-first {
  float: left;
  width: 100%;
  margin: 0;
  min-height: 160px;
  max-height: 220px;
  height: auto;
  padding: 0;
  overflow: hidden;
  border-radius: 0px;
  display: block;
  background: #ccc;
}

.card--landscape .card-image {
  float: left;
  width: 35%;
  margin: 0 3% 0 0;
  min-height: 60px;
  max-height: 100px;
  height: auto;
  padding: 0;
  overflow: hidden;
  border-radius: 0px;
  display: none;
}

.card--landscape .card-image-first img {
  width: auto;
  min-width: 100%;
  height: auto;
  min-height: 180px;
}

.card--landscape .card-image img {
  min-height: 60px;
  height: auto;
  min-width: 100%;
  width: auto;
}

.card--landscape .card-image figcaption {
  margin: 0;
}

.card--landscape .card-header {
  margin: 0 0 0 40px;
}

.sidelist {
  margin-bottom: 0px;
}
.sidelist .card-image-first {
  float: none;
  width: 100%;
  height: 210px;
  border-radius: 8px;
  margin: 0 15px 1px 0;
  overflow: hidden;
  clear: both;
}
.sidelist .card-image {
  float: left;
  width: 30%;
  height: 80px;
  border-radius: 5px;
  margin: 10px 5% 0 0;
  overflow: hidden;
}
.sidelist .card-image-first img,
.sidelist .card-image img {width: 100%;}

.sidelist .card-header {
  background: #ccc;
  margin:0;
}
.sidelist  header {
  /*border-bottom: 1px solid #efefef;*/
  padding: 10px 0 20px 0;
}
.sidelist h2 {
  font-size: 14px;
  font-weight: 700;
  line-height: 1.3;
  margin: 2px 0 0 0;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  word-break: break-word;
}
.sidelist h2.card-title{ width: 65%; float: left; }
.sidelist .card-time {
  font-size: 12px; 
  line-height: 1.3; 
  margin: 0; 
  padding: 0; 
}

.sidelist_small {
  margin-bottom: 0px;
}

.sidelist_small .card-image {
  float: left;
  width: 30%;
  height: 75px;
  border-radius: 0px;
  margin: 7px 15px 0 0;
  overflow: hidden;
}
.sidelist_small .card-image img {width: 100%;}

.sidelist_small  header {
  /*border-bottom: 1px solid #efefef;*/
  padding: 10px 0 0 0;
  height: 80px;

  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  word-break: break-word;
}

.sidelist_small h2 {
  font-size: 13px;
  font-weight: 700;
  line-height: 1.3;
  margin: 2px 0 0 0;
 
}

.sidelist_small .card-title {
 height: 50px;
 overflow: hidden;
}

.sidelist_small .card-time {
  font-size: 12px; 
  line-height: 1.3; 
  margin: 0; 
  padding: 0; 
}

.card--landscape .card-footer {
  position: relative;
  right: 10px;
  margin: -8px 0 5px 68px;
  /*bottom: -10px;*/
}

.card--landscape .card-title {
  font-size: 13px;
  line-height: 1.4;
  font-weight: 700;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  word-break: break-word;
}


.sidelist .card-title-first {
  font-size: 16px;
  font-weight: 700;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  word-break: break-word;
  position: relative;
}

.card--landscape .card-time {
  color: #607D8C;
  font-size: 12px;
  font-weight: 400;
  display: inline-flex;
  margin: 0;
}


/*card foto */

.card--foto {
  width: 100%;
  height: 220px;
  background: #FFF;
  display: block;
  margin: 0 0 0 0;
  padding: 0 0 0;
  /*border-radius: 0px;*/
  overflow: hidden;
}
.card--foto .image_ {
  display: block;
  width: 100%;
  margin: 0 0;
  float: left;
  min-height: 220px;
  max-height: 220px;
  height: auto;
  padding: 0;
}

.card--foto .image_ img {
  min-height: 220px;
  height: auto;
  min-width: 100%;
  width: auto;
  max-width: 150%;
  max-height: auto;
}

.card--foto .card-header {
  width: 100%;
  padding: 70px 3% 15px 3%;
  margin: 0 0;
  position: absolute;
  bottom: 0px;
  text-align: center;
  background: rgba(0, 0, 0, 0);
  background: -moz-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 1) 100%);
  background: -webkit-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 1) 100%);
  background: -o-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 1) 100%);
  background: -ms-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 1) 100%);
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 1) 100%)
}

.card--foto .card-title {
  font-size: 18px;
  line-height: 1.3;
  margin: 3px 0 5px 0;
  padding: 0;
  text-align: center;
}

.card--foto .card-title a {
  margin-bottom: 10px;
  color: #FFF;
}

.card--foto .card-time {
  color: #CCC;
  font-size: 12px;
}

.card--detail {
  position: relative;

}
.card--detail .card-header {
  width: 100%;
}
.card--detail .card-title h1 {
  font-size: 32px;
  line-height: 1.3;
  margin: 3px 0 15px 0;
  padding: 0;
  text-align: center;
}
.card--detail .judulatas {
  font-size: 14px;
  line-height: 1.3;
  text-align: center;
  text-transform: uppercase;
}
.card--detail .judulkecil {
  font-size: 14px;
  line-height: 1.3;
  text-align: center;
  font-weight: 600;
  margin-bottom: 15px;
}

.card--detail .card-label {
  text-align: center;
  display: block;
}

.card--detail .card-image {
  width: 100%;
  height: auto;
  overflow: hidden;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}

.card--detail .card-image img,
.card--detail .card-text img {
  width: 100%;
}

.card--detail .beritafoto .image {
  width: 100%;
  height: auto;
  min-height: 600px;
  background: #222;
  margin:0 0 0 1px;
}

.card--detail .card-reporter {
  font-size: 13px;
  text-align: center;
  line-height: 25px;
  margin-top: 15px;
}

.card--detail .gambar-reporter {
  display: block;
  float: left;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  overflow: hidden;
  background: #222;
  margin: 5px 10px 10px 0;
  border: 1px solid #222;
}

.card--detail .gambar-reporter img {
  width: 100%;
  height: 100%;
}

.card--detail .nama-reporter {
  display: block;
  margin: 7px 0;
  float: none;
  text-align: center;
  font-size: 13px;
  font-weight: 600;
  color: #444;
}
.card--detail .nama-reporter a {
  color: var(--dark-blue);
}
.card--detail .nama-reporter a:hover {
  color: var(--orange);
}
.card--detail .card-time {
  clear: both;
  display: flex;
  margin-top: 2px;
  font-size: 18px
  line-height: 25px;
  float: left;
}
.card--detail .teks-capt {
  background-color: #efefef;
  padding: 10px;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
}
.card--detail .card-caption {
  font-size: 12px;
  width: 100%;
  text-align: right;
}

.card--detail .card-text {
  font-size: 14px;
  line-height: 1.3;
  margin-bottom: 10px;
  width: 100%;
}
.card--detail .viewnum {
  font-size: 12px;
  margin: 0;
  font-weight: 400;
  width: auto;
  position: absolute;
  right: 0;
}
.card--detail .footmsg {
  font-size: 13px;
  color: #444;
}
.card .card-isi,
.card .card-isi span,
.card .card-isi b {
  font-size: 18px;
  line-height: 1.5;
  color: #333;
}

.card--detail .card-isi h1,
.card--detail .card-isi h2,
.card--detail .card-isi h3,
.card--detail .card-isi h4,
.card--detail .card-isi h5,
.card--detail .card-isi h6 {
  margin: 15px 0 0 0;
  display: block;
  clear: both;
}
.card--detail .card-isi .content {
  width:70%; float:left; margin-right: 3%;
}
.melayang {
  float: right;
  position: sticky;
  position: -webkit-sticky;
  width: 27%;
  height: auto;
  min-height: 600px;
  top: 80px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #f9f9fb url('https://cdn.tanjakberita.com/image/bg_ads.png') center no-repeat;
  background-size: 100%;
}
.stickycontent {
  width: 100%;
  float: left;
  min-height: 100vh;
  clear: both;
}
.card--detail .card-isi .content p {
  margin: 10px 0;
  padding: 0;
  position: relative;
  left: 0;
  display: table-row;
  float: left;
  width: 100%;
  clear: both;
}

.card--detail .card-isi .content img,
.card--detail .card-isi .content iframe {
  text-align: center !important;
  max-width: 100%;
}

.card--detail .card-isi .content a {
  color: var(--dark-blue);
}

.card--detail .card-isi .content a:hover {
  color: var(--bg-blue);
  text-decoration: none;
}

.card--detail .card-isi .content blockquote {
  width: 90%;
  border-left: 5px solid var(--bg-blue);
  background: #f8f8fa;
  padding: 3px 10px 10px 10px;
  line-height: 1.2;
  font-weight: 600;
  margin: 0;
  display: inline-block;
}

.card--detail .card-isi .content blockquote a {
  clear: both;
  display: table;
}
.card--detail .card-isi .content blockquote p {
  padding: 0px;
  margin-bottom: 0px;
}
.card--detail .card-isi .content blockquote br{
  height: 0px;
}
.card-footer-group {
  font-size: 14px;
}

.w-penulis {
  font-size: 14px;
  float: left;
  width: 20%;
  padding-right:10px;
  color: #666;
}
.w-penulis-isi {
  font-size: 14px;
  float: left;
  width: 76%;
  overflow: hidden;
  color: #666;
}

/*detail foto*/
.card--detail .kontrol {display:block; font-size: 20px;
  position:relative!important; padding: 0px 3px; height: 65px; background: #111; color:#FFF;}
.card--detail .kontrol .left {
  background:#ccc; position:absolute!important; 
  left:0; z-index:100; top:0; opacity:0.3}
.card--detail .kontrol .right {
  background:#ccc; position:absolute!important; 
  right:0; z-index:100; top:0; opacity:0.3}
.card--detail .kontrol .left:hover, 
.card--detail .kontrol .right:hover {opacity:.8;}


/*detail video*/
.videoWrapper {
  position: relative;
  padding-bottom: 56%;  /*16:9 */
  padding-top: 25px;
  height: 0;
}
.videoWrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.play {
  position: absolute;
  top: 40%;
  left: 45%;
  z-index: 1000;
  width: 80px;
  height: 40px;
}
.play img {
  width: 100%;
}

.play:hover img {
  opacity: 0.8;
}
#liste_terkait { 
  width:31%; 
  font-size:15px; 
  min-height:210px; 
  height:auto;
  float: left;
  position: relative;
}
#liste_terkait.mr { margin-right:3.5%;}
#liste_terkait .isi { display:block;}
#liste_terkait h2 a { 
  color:#222; 
  text-decoration:none; 
  display:block;
}
#liste_terkait h2 { 
  font-size:14px; 
  line-height:1.4; 
  font-weight:600; 
  margin:2px 0;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  word-break: break-word
}
#liste_terkait h5 { 
  font-size:11px; 
  margin:0px;
} /*for date time age*/
#liste_terkait a:hover { color: #000000}
#liste_terkait span.infokat { 
  color: #1ca7ef;
  font-size:12px; 
  font-weight:normal;
}
#liste_terkait .img_  { 
  float:left; 
  width:100%; 
  min-height:120px; 
  max-height: 130px;
  height: auto;
  margin-right:0px; 
  margin-bottom:5px; 
  overflow:hidden;  
  position:relative; 
  z-index:1;
  border-radius: 5px;
}

#liste_terkait .img_ img{ 
  max-width:120%;
  min-height: 120px;
  max-height: 200px;
  height: auto;
  min-width: 100%;
  width: auto;
}
#liste_terkait .klear { 
    clear: both;
  }

#liste_terkait .infokat {
  font-weight:400; 
  text-transform: uppercase;
  margin:5px 0;
  letter-spacing: 0.5px;
}

.div-tag {
  margin: 0; 
}

.tag {
  font-size: 16px;
  color: #333;
  padding: 4px 10px;
  margin-bottom:10px;
  width: auto;
  float: left;
  border:1px solid #ccc;
  margin-right: 5px;
  border-radius: 5px;
  background: var(--light);
}

.tag a {
  color: #222;
}

.tag a:hover {
  color:#fff;
  text-decoration: none;
}

.tag:hover {
  background: #888f91;
  -webkit-transition: background-color 1s ease-out;
  -moz-transition: background-color 1s ease-out;
  -o-transition: background-color 1s ease-out;
  transition: background-color 1s ease-out;
}

/*Tambahan*/

.center { text-align: center;}
.left { text-align: left;}
.right { text-align: right;}

.iklan {
  display: block;
  width: 100%;
  clear: both;
  text-align: center;
}

.iklan img {
  max-width: 100%;
  width: auto;
  height: auto;
}

.iklan:before,
.iklan:after {
    content: " "; /* 1 */
    display: table; /* 2 */
}

.iklan:after {
    clear: both;
}

.iklan_header { width: 680px; max-height: 100px;}
.iklan_mobile {display: none; height: 0;}
.iklan_desktop {display: block}

.headerad { width: 100vw; height: 320px; }

@media(max-width: 600px) { 
  .iklan_header { width: 96%; height: auto; max-height: auto; min-height: 1px; margin: 0 auto;} 
  .iklan_mobile { display: block; margin-top:55px;}
  .iklan_desktop { display: none; height: 0;} 
}

@media(min-width: 320px) { .headerad { width: 320px; height: 100px; } }

.tombol {
  padding: 3px 10px;
  border: 1px solid #999;
  border-radius: 4px;
  cursor: pointer;
}

.tombol:focus {
  background: #ccc;
}

.showtgl {
  padding: 1px 10px;
  border: 1px solid #999;
  border-radius: 2px;
  margin: 0 3px;
}

.label {
  width: 100%;
  clear: both;
  display: table;
  margin-bottom: 15px;
}

.label input,
.label textarea {
  padding: 5px 10px;
  font-size: 20px;
  margin: 5px 0;
  border-radius: 5px;
  border: 1px solid #ccc;
}

.label input {
  width: 80%;
}

.label textarea {
  width: 98%;
}

.more_tab {
  text-align: center;
}
.more_div {
  float: none;
}
.more_button {
  width: 100%;
  margin: 0 auto;
  text-align: center;
  font-size: 20px;
  line-height: 3;
  font-weight: 700;
  background: var(--dark-blue);
  border-radius: 20px;
  padding: 8px 15px;
  box-shadow: 0px 0px 5px #333;
}
.more_button a {
  color: var(--bg-white);
}
.more_div:hover .more_button {
  transition: .5s;
}
.more_div:hover a {
  color:#CCC;
}
.card-box {
  width: 40px;
  height: 40px;
  float: left;
  margin-right: 15px;
  padding:0;
  text-align: center;
  background: var(--dark-blue);
  border-radius: 50%;
}
.card-box i {
  font-weight:600;
  font-style: italic;
  color: var(--bg-white);
  opacity: 0.6;
  font-size:38px;
  padding-left: 15px;
}
.social-share {
  font-size:24px;
}
.social-share a {
  text-align: center;
  display: inline-block;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  padding: 2px;
  background: var(--white);
  border: 1px solid #ccc;
}
.social-share a.facebook {color: #FFF; background: #1f449c;}
.social-share a.twitter {color: #FFF; background: #43a2ea;}
.social-share a.telegram {color: #FFF; background: #1488e0;}
.social-share a.whatsapp {color: #FFF; background: #30ab39;}

.box {
  display: table;
  padding: 5px 10px;
  border: 1px dashed #ededed;
  margin-bottom: 15px;
  width: 100%;
  clear: both;
  box-sizing: border-box;
}

.bannerkat {
  width: 100%;
  min-height: 90px;
  height: auto;
}
.bannerkat img {
  min-height: 90px;
  height: auto;
  min-width: 100%;
  width: 100%;
  max-width: 100%;
  width: auto;
}

.form-kontak input,
.form-kontak textarea {
  padding: 5px 3px;
  border: 1px solid #efefef;
  border-radius: 3px;
  width: 80%;
  margin-bottom: 15px;
}

.btt {
    position: fixed;
    bottom: 50px;
    right: 10px;
    background: var(--dark);
    color: #fff;
    border-radius: 50%;
    text-align: center;
    padding:10px;
    z-index: 1;
}

.btt:hover {
    color: #e9ec0b;
    background: var(--dark-blue);
    cursor: pointer
}
.back-to-top {
    padding-bottom: 0px
}

.rightslink,
footer .rightslink a {
    font-size: 20px;
    color: #fff
}

/*page*/
.pagin {float:left;}
.pagin div {
  height: 15px;
  width: 20px;
  /*border:2px solid #222; */
  background: var(--dark-blue); 
  border-radius:3px; 
  cursor: pointer; 
  margin-left:5px; 
  color:#FFF;
  font-size: 14px;
  font-weight: 700;
  line-height: 14px;
  padding: 10px 12px;
  text-align: center;
}

.paginall div {
  height: 15px;
  width: 60px;
  /*border:2px solid #222; */
  background: var(--dark-blue); 
  border-radius:3px; 
  cursor: pointer; 
  margin-left: 5px; 
  color:#FFF;
  font-size: 14px;
  font-weight: 700;
  line-height: 14px;
  float: left;
  padding: 10px 10px;
}
.pagin .active, .paginall .active {
  background:var(--bg-blue);
  color:#FFF;
}
.pagin div:hover, .paginall div:hover {
  background: var(--bg-blue);
  color:#fff;
}

.nav_button {
  width: auto;
  padding: 3px 6px;
  border: 1px solid #ccc;
  border-radius:2px;
  font-size: 15px;
}

/*all site preview*/
.breakpage {
  min-height:200px; 
  margin:0px auto 8px auto; 
  display:grid; 
  grid-template-columns: 23.5% 23.5% 23.5% 23.5%; 
  grid-gap:2%; 
}

.breakwrap {
  width: 94%;
  margin: auto 3%;
  height: inherit;
}

.label_breakpage {
  font-size: 32px;
  line-height: 1.5;
  text-transform: uppercase;
  font-weight: 700;
  border-bottom: 1px solid #FFF;
  color: #FFF;
  font-style: italic;
}
.breakpage_bagi {
  width:100%; 
  height:230px; 
  position:relative;
}

.breakpage_bagi .img_{
  width:100%; 
  height:160px; 
  margin: 0;
  padding: 0;
  border-radius: 8px;
  overflow: hidden;
}

.breakpage_bagi .info  {
  width:100%; 
  position:absolute; 
  z-index:1;
}

.breakpage_bagi .info .time {
  font-size: 12px;
  color: #efefef;
}

.breakpage_bagi .info  h2{
  font-size:15px; 
  line-height:1.3; 
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  word-break: break-word
}
.breakpage_bagi .info  h2 a{
  color:#FFF; 
  text-decoration:none;
}
/*author page*/
.authorbanner {
  width: 100%;
  height: 220px;
  background: url(../cdn/uploads/authorpage.jpg) no-repeat;
  background-size: 100%;
  background-position: center center;
  border-radius: 5px;
}
.authorimage {
  width: 150px;
  height: 150px;
  float: left;
  margin: -40px 5% 0 5%;
  overflow: hidden;
  border: 1px solid #eee;
  border-radius: 50%;
  box-shadow: 0px 2px 30px rgba(0, 0, 0, 0.1);
}
.authorimage img {
  width: 100%;
  height: 100%;
}
.authorinfo {
  float: left;
  font-size: 12px;
}
.authorinfo h3 {
  font-size: 25px;
  color: #ccc;
}
.authorinfo span {float: left; width: auto; margin-right: 20px;}
.footer {
  width: 100%; /*var(--container);*/
  margin: 0px auto 0px;
  padding: 20px 0 0 0;
  background-color:var(--dark);
  font-size: 14px;
  color: var(--dark);
  border-top: 4px solid var(--dark-blue);
}

/*menu footer */
.menu-footer {
  width: 100%;
  float: left;
}
.menu-footer .menulist {
  width: 40%;
  float: left;
  margin-bottom: 20px;
}

.menu-footer .menulist .alist {
  width: 45%;
  float: left;
  color: var(--bg-white);
  margin-right: 5%;
  text-align: left;
  padding: 4px 0;
}

/*infosite*/
.infosite { font-size: 13px; font-weight: 600; padding: 0}
.infosite a {color:var(--bg-white); margin:15px 5px;}

/*copyright*/
.copyright {font-size:12px; font-weight:100; color:var(--bg-white); border-top:1px dotted #666;}
.copyright a {color: var(--light);}
.copyright a:hover, .infosite a:hover {color:var(--dark-blue); border-bottom:1px dashed #CCC;}

.footer ul {
    padding-top:5px;
    padding-bottom:5px;
    text-align: center;
}

.footer ul li {
    display: inline-block;
    text-transform: uppercase;
    margin: 0 8px;
}
.sosmed {margin-top: 30px;}
.sosmed a {
  width: 25px;
  height: 25px;
  padding: 5px;
  box-shadow: 0px 0px 3px #ccc;
  display: inline-block;
  border-radius: 50%;
  text-align: center;
}
.sosmed .i-fb,
.sosmed .i-twitter,
.sosmed .i-ytube,
.sosmed .i-ig {
    webkit-transition: 150ms;
    -moz-transition: 150ms;
    transition: 150ms;
    font-size: 18px;
}

.sosmed .i-fb:hover,
.sosmed .i-twitter:hover,
.sosmed .i-ytube:hover,
.sosmed .i-ig:hover{
    color: var(--dark-blue);
    background: var(--light);
}

@media all and (max-width : 768px) {
  nav,
  .header,
  .sideleft,
  .leftsmall,
  .leftbig,
  .sidebar,
  .footer,
  .logo-footer,
  .menu-footer  {
    width:100%;
    }
  .footer {padding-bottom: 50px;}
  .container,
  .contentiklan {
    display: block;
    width: 96%;
    clear: both;
  }
  .mainframe {
    display: block;
    width: 96%;
    clear: both;
    padding: 0;
  }
  .has-navbar {
    margin-top: 60px;
  }
  .btt {
    position: fixed;
    bottom: 5px;
    right: 25px;
    background: var(--dark);
    color: #fff;
    border-radius: 50%;
    text-align: center;
    padding:10px;
    z-index: 1;
  }
  .sosmed {position: fixed; bottom: 5px; right:72px; z-index: 100;}
  .sosmed a { background: #ccc; }
  .social-share {
    position: relative;
    width: 100%;
    float: none;
    margin: 10px auto;
  }
  .w-40 {
    width: 100%;
  }
  .card--video {
    width: 99.5%;
    margin-bottom: 15px;
  }
  .card--video h2.card-title {
    min-height: 10px;
    height: auto;
  }
  #liste_terkait { 
    width:100%; 
    min-height: 80px;
    height: auto;
    margin-bottom: 15px;
  }
  #liste_terkait h2 { 
    font-size:14px; 
    font-weight:400; 
  }
  #liste_terkait .img_{ 
    float:left; 
    width:30%; 
    margin-right: 3%;
    min-height: 70px;
    height: auto;
    max-height: 80px;
    overflow: hidden;
  }
  #liste_terkait .klear { 
    clear: none;
  }
  .logo-footer img {
    width: 40%;
    margin: 0 auto
  }
  .infosite {
    width: 100%;
  }
  .menu-footer .infosite a {
    display: table;
    margin: 3px 0 10px 20px;
  }
  .menu-footer .infosite span {
    display: block;
    width: 100%;
  }
  .menu-footer .infosite span a {
    float: left;
  }
}

@media all and (max-width : 400px) {

  .card--visual .card-header small,
  .card--visual .card-header-pilihan small {
    font-size: 0;
    line-height: 0;
    display: table;
  }

  .card--headline .card-image {
    width: 100%;
    z-index: 1;
    height: 200px;
  }

  .card--headline .card-header h1 {
    font-size: 20px;
  }

  .card--visual {
    min-height:90px;
    height: auto;
    max-height: 180px;
    margin-bottom: 15px;
    clear: both;
    overflow: hidden;
  }
  .card--visual .small {
    font-size: 12px;
    color: #333;
  }

  .card--visual .card-header,
  .card--visual .card-header-pilihan {
  margin-top: 0px;
  }

  .card--visual .card-header h2,
  .card--visual .card-header-pilihan h2 {
    font-size: 14px;
    font-weight: 600;
    line-height: 1.3;
  }

  .card--visual .card-image {
    min-height: 90px;
    max-height: 95px;
    height: auto;
  }
  .card--visual .card-image img,
  .card--landscape .card-image-first img {
    width: 30%;
    min-height: 90px;
    height: auto;
    max-height: 95px;
  }

  #liste_terkait { 
    width:100%; 
    min-height: 80px;
    height: auto;
    margin-bottom: 15px;
  }
  #liste_terkait h2 { 
    font-size:14px; 
    font-weight:700; 
    width: 67%;
    float: left;
  }
  #liste_terkait .img_ { 
    float:left; 
    width:30%; 
    margin-right: 3%;
    min-height: 70px;
    height: auto;
    max-height: 80px;
    overflow: hidden;
    border-radius: 5px;
  }
  .card--visual .card-image-pilihan { 
    float:right; 
    width:40%; 
    margin-left: 3%;
    min-height: 80px;
    height: auto;
    max-height: 110px;
    overflow: hidden;
  }
  #liste_terkait .img_ img {
    min-height: 70px;
    max-height: 90px;
    height: auto;
    min-width: 100%;
    width: auto;
    max-width: 150%;

    -webkit-transition: 300ms linear;
    -moz-transition: 300ms linear;
    -o-transition: 300ms linear;
    -ms-transition: 300ms linear;
    transition: 300ms linear
  }
  .tombol {
    padding: 1px 5px;
    font-size: 15px;
    line-height: 1.2;
  }
  .showtgl {
    padding: 1px 3px;
    border: 1px solid #999;
    border-radius: 2px;
    margin: 0 1px;
    font-size: 14px;
    line-height: 1.2;
  }
  .card-label {
    display: table;
    font-size: 14px;
  }
  .card--detail .judulkecil {
    font-weight: 300;
    margin-bottom: 5px;
  }
  .card--detail .card-title h1 {
    font-size: 22px;
    padding: 0;
    margin: 0;
  }
  .card .card-isi {
    float: left;
    max-width: 98%;
    width: 98%;
  }
  .card .card-isi .content p {
    margin:8px 0;
    position: relative;
    left: 0;
    display: inline-block;
    float: left;
  }
  .card--detail .card-isi .content {
    width:100%; 
    margin-right: 0;
  }
  .melayang {width: 100%; position: relative; min-height: 0; height: auto; top: 0; background: none;}
  .tag {font-size: 14px;}
  .breakpage {
    height:200px; 
    margin: 0; 
    display:block; 
   /*grid-template-columns: 130px 130px 130px 130px 130px 130px ; 
    grid-gap:10px;*/
    width: 293%;
    padding: 10px;
    color: #FFF;
  }

  .breakwrap {
    margin:-20px 0 0 0; 
    display: grid;
    grid-template-columns: 80.83% 80.83% 80.83% 80.83%; 
    grid-gap:3%;
    height: 200px;
    overflow-x: auto;
    overflow-y: hidden;
    background: none;
    position: relative;
    z-index: 0
  }

  .breakpage_bagi {
    width:150px; 
    height:200px; 
    position:relative;
    float: left;
    margin-right:20px;
  }

  .breakpage_bagi .img_ {
    height: 90px;
    width: 100%;
    background: #1ca7ef;
    border: 1px solid #555;
  }
  .breakpage_bagi .info  h2 a{
     color: #FFF;
     font-size: 14px;
  }

  .bg-1, .bg-2, .bg-3 { height: auto; background-size:cover; }

  .bagi-2, .w-70, .w-30, .w-90, .w-96 {
    width: 100%;
  }
  .kaki-tengah {
    float:left; 
    width:100%; 
    height:auto; 
    color:#999; 
    margin:10px 0 0 0;
    clear: both;
  }
  .kaki-tengah {margin-bottom:30px }
  .authorbanner {height: 120px;}
  .authorimage {height:100px; width: 100px; margin-top: -60px;}
  .authorinfo {display: inline-block; width: 100%;}
  .mypaginationblock {display: table; clear: both; min-height:40px;}
}

.mypagination{padding: 10px 0;font-size: 14px; background:none;}
.mypagination a {padding: 8px 10px; color: #333; margin: 0 2px; background:#efefef; border:1px solid #ddd; text-decoration: none; border-radius: 2px;}
.mypagination a:hover {background:#333; color: #fff; border:1px solid #333;}
.mypagination strong {font-weight:bold; padding: 8px 10px; margin: 0 2px; border:1px solid #888888; color:#003399}

.effecborder
{
    position:relative;
    -webkit-box-shadow:0 1px 4px rgba(0, 0, 0, 0.3), 0 0 40px rgba(0, 0, 0, 0.1) inset;
       -moz-box-shadow:0 1px 4px rgba(0, 0, 0, 0.3), 0 0 40px rgba(0, 0, 0, 0.1) inset;
            box-shadow:0 1px 4px rgba(0, 0, 0, 0.3), 0 0 40px rgba(0, 0, 0, 0.1) inset;
}
.effecborder:before, .effecborder:after
{
  content:"";
    position:absolute;
    z-index:-1;
    -webkit-box-shadow:0 0 20px rgba(0,0,0,0.8);
    -moz-box-shadow:0 0 20px rgba(0,0,0,0.8);
    box-shadow:0 0 20px rgba(0,0,0,0.8);
    top:10px;
    bottom:10px;
    left:0;
    right:0;
    -moz-border-radius:100px / 10px;
    border-radius:100px / 10px;
}
.effecborder:after
{
  right:10px;
    left:auto;
    -webkit-transform:skew(8deg) rotate(3deg);
       -moz-transform:skew(8deg) rotate(3deg);
        -ms-transform:skew(8deg) rotate(3deg);
         -o-transform:skew(8deg) rotate(3deg);
            transform:skew(8deg) rotate(3deg);
}
.effecborder1 {
  box-shadow: 0 1px 5px rgba(0, 0, 0, 0.034);
  border:  1px solid rgba(0, 0, 0, 0.034);
  background: #FFF;
}
/*dark theme*/
#theme .fa {font-size: 23px;}
#theme span:hover {cursor: pointer;}
body.darkmode {transition: .182s; }
#theme {position: relative; top: 0px; right: -5px; z-index: 1001; color: #FFF; width: 25px; height: 25px; border-radius: 50%; border: 1px solid #999; padding: 5px; background: #666;}
.darkmode {background-color: #222; color: #efefef;}
body.darkmode .mainframe, 
body.darkmode .bingkai-ec, 
body.darkmode .bg-white, 
body.darkmode .header, 
body.darkmode nav, 
body.darkmode .footer {background: #222; border-bottom: 1px solid #333;}
body.darkmode .mainframe {box-shadow: 0px 0px 8px #333;}
body.darkmode hr {color: var(--black);}
body.darkmode a, 
body.darkmode .c_black, 
body.darkmode .beritautama a, 
body.darkmode .beritautama a:hover, 
body.darkmode .card-title h1, 
body.darkmode .card-isi, 
body.darkmode #liste_terkait a{color: #efefef;}
body.darkmode .card--visual .card-time {color:var(--dark-blue);}
body.darkmode .card .card-label a, 
body.darkmode .nama-reporter, 
body.darkmode .copyright {color: #999;}
body.darkmode .more_button, 
body.darkmode .teks-capt, 
body.darkmode .bg-light, 
body.darkmode .pagin div, 
body.darkmode .paginall div {background: #333;}
body.darkmode .pagin .active, 
body.darkmode .paginall .active, 
body.darkmode .tag, 
body.darkmode .mypagination a {background: #222; color: #ccc;}
body.darkmode h3 .card-label,
.darkmode .brdr, .darkmode .br_btm {border-color: #555;}
body.darkmode .tag:hover, 
body.darkmode .mypagination strong {background: #666; color: #111;}
body.darkmode nav ul ul li, 
body.darkmode .bg-success, 
body.darkmode #feat li.ui-tabs-nav-item a {background: #555; color: #ccc;}
body.darkmode .card-isi blockquote {background: #333;}
body.darkmode .card-isi blockquote p {color: #FFF;}
body.darkmode #owl-fotonews .info h1 a {color: #ccc;}
body.darkmode .pagewrap {background-image: none;}
body.darkmode .logo img{display: none;}
body.darkmode .logo {height: 73px; width: 360px; background: url(../theme/asset/logo-dark.png) no-repeat top left; background-size: cover;}
body.darkmode [id^=drop]:checked + ul.menu,
body.darkmenu .toggle {color: #ccc;}
@media all and (max-width : 768px) {
body.darkmode nav ul li { background: #333;}
}

.notfound-404 { position:relative;height:180px}
.notfound-404 h1 { font-size:165px;font-weight:700;margin:0;color:var(--dark-blue);text-transform:uppercase}
