

details {
    width: 100%;
    min-height: 5px;
    max-width: 100%;
    padding: 10px;
    margin: 0 auto;
    position: relative;
    font-size: 15px;
    border: 1px solid #E11C00;
    border-radius: 4px;
    box-sizing: border-box;
    transition: all .3s;
}

details + details {
  margin-top: 14px;
}

details[open] {
  min-height: 50px;
  background-color: #f6f7f8;
  box-shadow: 2px 2px 20px rgba(0,0,0,.2);
}

details p {
    color: #666;
    font-weight: 300;
    margin-top: 5px;
    text-align: justify;
}

summary {
  font-weight: 500;
  cursor: pointer;
}

/* removed outline as for codepen only
  don't remove focus on elements
  it's bad accessibility
  don't be _that_ guy
*/
summary:focus {
  outline: none;
}

summary::-webkit-details-marker {
  display: none
}

summary::after {
    position: absolute;
    left: 8px;
    color: #E11C00;
    font-family: "FontAwesome";
    font-size: 18px !important;
    font-style: normal;
    font-variant-caps: normal;
    font-variant-ligatures: normal;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    content: "\f078";
}

details[open] summary::after {
  content: "\f057";
  font-size: 25px;
  top: 0;
 
}


@-webkit-keyframes pulse {
  25% {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
  50% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  75% {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

@keyframes pulse {
  25% {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
  50% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  75% {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}