
/* buat menu balik ke koran */
.btn-cust {
    color: #fff;
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    box-shadow: inset 2px 2px 2px 0px rgba(255, 255, 255, .5),
      7px 7px 20px 0px rgba(0, 0, 0, .1),
      4px 4px 5px 0px rgba(0, 0, 0, .1);
    outline: none;
  }
  
  .btn-shining {
    border: none;
    background: rgb(0,172,238);
    background: linear-gradient(0deg, rgba(0,172,238,1) 0%, rgba(2,126,251,1) 100%);
    color: #fff;
    overflow: hidden;
  }
  
  .btn-shining:hover {
    text-decoration: none;
    color: #fff;
  }
  
  .btn-shining:before {
    position: absolute;
    content: '';
    display: inline-block;
    top: -180px;
    left: 0;
    width: 30px;
    height: 100%;
    background-color: #fff;
    animation: shiny-btn1 3s ease-in-out infinite;
  }
  
  .btn-shining:hover {
    opacity: .7;
  }
  
  .btn-shining:active {
    box-shadow: 4px 4px 6px 0 rgba(255, 255, 255, .3),
      -4px -4px 6px 0 rgba(116, 125, 136, .2),
      inset -4px -4px 6px 0 rgba(255, 255, 255, .2),
      inset 4px 4px 6px 0 rgba(0, 0, 0, .2);
  }

  .content p{
    font-size: 16px;
    line-height: 2rem;
  }  
  .content h2, .content h3, .content h4, .content h5, .content h6 {
    font-weight: 700px;
    line-height: 2rem;
  } 
  .content h2{
    font-size: 20px;
  }  
  .content h3{
    font-size: 18px;
  }  
  .content h4{
    font-size: 16px;
  }  
  .content h5{
    font-size: 15px;
  }  
  .content h6{
    font-size: 14px;
  }  
  
  @-webkit-keyframes shiny-btn1 {
    0% {
      -webkit-transform: scale(0) rotate(45deg);
      opacity: 0;
    }
  
    80% {
      -webkit-transform: scale(0) rotate(45deg);
      opacity: 0.5;
    }
  
    81% {
      -webkit-transform: scale(4) rotate(45deg);
      opacity: 1;
    }
  
    100% {
      -webkit-transform: scale(50) rotate(45deg);
      opacity: 0;
    }
  }

  /* tambahan pagination buat koran */
  .pagination .list-inline-item:not(:last-child) {
    margin-right: calc(1px * -2);
  }

  /* tambahan buat jarak footer  */
  footer .network {
    line-height: 1.7rem !important;
}
/* hidden iklan mobile */
@media only screen and (max-width: 600px) {
  .sidebnr-stick.js-nkt-stick {
    display: none;
  }
}