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

.target {
  background-color: #ea3345;
  padding: 10px;
  line-height: 1.5;
  transition:
    padding-top 300ms,
    line-height 300ms;
}
.target.is-hidden {
  padding-top: 0;
  padding-bottom: 0;
  line-height: 0;
  pointer-events: none;
}
.text {
  color: white;
  transition: opacity 200ms;
}
.target.is-hidden .text {
  opacity: 0;
}
p {
  margin: 0;
}