.box-loading{
  width:100%; height:80px;
  display:flex;
  flex-direction:row;
  border:0px solid #CCC;
  padding:5px;
}
.box-left {
  flex-grow:1;
  background-color:none;  flex-basis:250px;
}
.box-thumb {
  height:100%; width:100%;
  background-color: #CCC;
  border-radius: 5px;
  overflow: hidden;
}
.isi-box-thumb {
  width: 0;
  height: 100%;
  box-shadow: 0 0 50px 50px rgba(160, 160, 160, 0.5);
  animation: animation-load 1s linear infinite;
  opacity: 0;
}
.box-right {
  flex-grow:1;
  background-color:none; flex-basis:500px;
}
.wrap-right {
  padding:0 0 0 10px; height:100%; overflow:hidden; 
}
.box-row{
  height:30px; width:100%; margin-bottom:10px;
  background-color: #CCC;
  border-radius: 5px;
  overflow: hidden;
}
@keyframes animation-load {
  0% {
    transform: translateX(-50px);
    opacity: 0;
  }

  20% {
    opacity: 0;
  }

  50% {
    transform: translateX(20px);
    opacity: 0.3;
  }

  100% {
    transform: translateX(750px);
    opacity: 1;
  }
}

.load-more-next {
  margin-bottom: 20px;
}

.isi-berita ul {
  list-style-type: square;
  /* list-style-position: inside; */
  list-style-image: none; 
  margin-left: 30px;
}

.figure img {
  box-shadow: 0px 0px 2px 2px rgba(0,0,0,0.1);
}

.isi-berita .view-video video {
  max-width: 100%; object-fit: scale-down;
}

blockquote {
  /* background: #f9f9f9; */
  border-left: 10px solid #ccc;
  margin: 1.5em 10px;
  padding: 0.5em 10px;
  quotes: "\201C""\201D""\2018""\2019";
}
blockquote:before {
  color: #ccc;
  content: open-quote;
  font-size: 4em;
  line-height: 0.1em;
  margin-right: 0.25em;
  vertical-align: -0.4em;
}
blockquote p {
  display: inline;
}