@charset "utf-8";
/* CSS Document */

.transition, p, ul li i:before, ul li i:after {
  transition: all 0.25s ease-in-out;
}

.flipIn, h1, ul li {
  animation: flipdown 0.5s ease both;
}

.no-select, h2 {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

ul li html {
  width: 100%;
  height: 100%;
  perspective: 900;
  overflow-y: scroll;
}

p {
	overflow-y: visible;
}

ul li body {
  min-height: 0;
  display: inline-block;
  position: relative;
}
ul li h2 {
	padding: 1.8em 1.5em 1.8em 1.5em;
}
ul li img {
	float: right;
	padding: 1em 1.5em 0 0.3em;
}
@media (max-width: 550px) {
  ul li body {
    box-sizing: border-box;
    transform: translate(0, 0);
    max-width: 100%;
    min-height: 100%;
    margin: 0;
    left: 0;
  }
}

ul li p {
	position: relative;
	overflow: hidden;
	/* max-height: 800px;  */
	opacity: 1;
	transform: translate(0, 0);
	z-index: 2;
	background-color: #fff;
	margin-top: -1px;
	padding: 0 1.5em 1.5em 1.5em;
}

ul li {
	color:#000000;
}

ul {
  list-style: none;
  perspective: 900;
  padding: 0;
  margin: 0;
}
ul li {
  position: relative;
  padding: 0;
  margin: 0;
  padding-bottom: 0; 
  padding-top: 0;
  /* border-top: 1px dotted #F3D28A; */ /* seperator */
}
ul li p {
}
ul li:nth-of-type(1) {
  animation-delay: 0.3s;
}
ul li:nth-of-type(2) {
  animation-delay: 0.4s;
}
ul li:nth-of-type(3) {
  animation-delay: 0.5s;
}
ul li:nth-of-type(4) {
  animation-delay: 0.6s;
}
ul li:nth-of-type(5) {
  animation-delay: 0.7s;
}
ul li:nth-of-type(6) {
  animation-delay: 0.8s;
}
ul li:nth-of-type(7) {
  animation-delay: 0.9s;
}
ul li:nth-of-type(8) {
  animation-delay: 1s;
}
ul li:nth-of-type(9) {
  animation-delay: 1.1s;
}
ul li:nth-of-type(10) {
  animation-delay: 1.2s;
}
ul li:nth-of-type(11) {
  animation-delay: 1.3s;
}
ul li:nth-of-type(12) {
  animation-delay: 1.4s;
}
ul li:nth-of-type(13) {
  animation-delay: 1.5s;
}
ul li:nth-of-type(14) {
  animation-delay: 1.6s;
}
ul li:nth-of-type(15) {
  animation-delay: 1.7s;
}
ul li:nth-of-type(16) {
  animation-delay: 1.8s;
}
ul li:nth-of-type(17) {
  animation-delay: 1.9s;
}
ul li:nth-of-type(18) {
  animation-delay: 2s;
}
ul li:nth-of-type(19) {
  animation-delay: 2s;
}
ul li:nth-of-type(20) {
  animation-delay: 2s;
}
ul li:nth-of-type(21) {
  animation-delay: 2s;
}
ul li:nth-of-type(22) {
  animation-delay: 2s;
}
ul li:nth-of-type(23) {
  animation-delay: 2s;
}
ul li:nth-of-type(24) {
  animation-delay: 2s;
}
ul li:nth-of-type(25) {
  animation-delay: 2s;
}

ul li:last-of-type {
  padding-bottom: 0;
}


ul li i {
  position: absolute;
  transform: translate(-6px, 0);
  margin-top: 16px;
  right: 20px;
}
ul li i:before, ul li i:after {
  content: "";
  position: absolute;
  background-color: #ff6873;
  width: 3px;
  height: 9px;
}
/*
ul li i:before {
  transform: translate(-2px, 0) rotate(45deg);
}
ul li i:after {
  transform: translate(2px, 0) rotate(-45deg);
}
ul li input[type=checkbox]:checked ~ i:before {
  transform: translate(2px, 0) rotate(45deg);
}
ul li input[type=checkbox]:checked ~ i:after {
  transform: translate(-2px, 0) rotate(-45deg);
}

*/
ul li input[type=checkbox] {
	position: absolute;
	cursor: pointer;
	width: 100%;
	height: 100%;
	z-index: 1;
	opacity: 0;
	left: -22px;
	top: 20px;
}
ul li input[type=checkbox]:checked ~ p {
  margin-top: 0;
  max-height: 0;
  opacity: 0;
  margin-bottom: -7px;
}


@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);
  }
}
