
@keyframes flipdown {
  0% {
    opacity: 0;
    transform-origin: top center;
    transform: rotateX(-90deg);
  }
  5% {
    opacity: 1;
  }
  80% {
    transform: rotateX(8deg);
  }
  83% {
    transform: rotateX(6deg);
  }
  92% {
    transform: rotateX(-3deg);
  }
  100% {
    transform-origin: top center;
    transform: rotateX(0deg);
  }
}


.card {
  display: flex;
  flex-direction: column;
  box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2);
  transition: 0.4s;
}

.card:hover {
  box-shadow: 0 4px 8px 0 #209D0F33;
  transition: 0.4s;
}

.header {
  background: #27ae60;
  color: white;
  text-align: center;
}

.keterangan {
  padding: 2px 16px;
}
.isi{
  margin:.3em;
}

.header h1 {
  text-transform: uppercase;
  font-size: 18px;
  letter-spacing: 3px;
  font-weight: 100;
}

.header h4{
  font-weight: normal;
  font-size: 13px;
  margin: 2px;
}

.keterangan p {
  color: rgba(48, 69, 92, 0.8);
  font-size: 12px;
}





.isi block {
  position: relative;
  display: block;
  padding: 0;
  margin: 0;
  padding-bottom: 4px;
  padding-top: 18px;
  border-top: 1px dotted #dce7eb;
  animation: flipdown 0.5s ease both;
}
.isi block:last-of-type {
  animation-delay: 1s;
}
.isi block:nth-of-type(1) {
  animation-delay: 0.25s;
}
.isi block:nth-of-type(2) {
  animation-delay: 0.5s;
}
.isi block:nth-of-type(3) {
  animation-delay: 0.75s;
}


.isi block label {
  display: block;
  font-size: 16px;
  line-height: 34px;
  font-weight: 300;
  letter-spacing: 1px;
  background: #fefffa;
  margin: 0;
  cursor: pointer;
}
.isi block i {
  position: absolute;
  top: 32px;
  right: 10px;
}
.isi block i:before, 
.isi block i:after {
  content: "";
  position: absolute;
  /*background: #ff6873;*/
  background: #d35400;
  width: 3px;
  height: 9px;
}
.isi block i:before {
  transform: translate(-2px, 0) rotate(45deg);
}
.isi block i:after {
  transform: translate(2px, 0) rotate(-45deg);
}
.isi block input[type=checkbox] {
  display: none;
}
.isi block input[type=checkbox]:checked ~ .tbl-info{
  margin-top: 0;
  max-height: 0;
  display: none;
  transform: translate(0, 50%);
}
.isi block input[type=checkbox]:checked ~ i:before {
  transform: translate(2px, 0) rotate(45deg);
}
.isi block input[type=checkbox]:checked ~ i:after {
  transform: translate(-2px, 0) rotate(-45deg);
}



.isi .tbl-info{
  border-collapse: collapse;
  width: 100%;  
  table-layout: auto;
}

.isi .tbl-info tr:nth-child(2n+1){
  background: #f2f2f2;
}
.isi .tbl-info tr:hover {
  background: #ddd;
}

.isi .tbl-info tr td{
  padding: 10px;
  line-height: 1.6;
  color: #806c00;
  font-size: 14px;
}

.isi .tbl-info tr td:nth-child(2n){
  width:60%;
  word-break: break-all;
  text-align: left;
  font-weight: bold;
}