/*----- only for demo purposes -----*/
.variable {
  background-color: #fffc00;
}
/*----- Variables -----*/
/*----- Styling CSS -----*/
#subscription-contact .kicker {
  color: #ba2814;
  cursor: pointer;
  display: block;
  font-family: 'McClatchy Sans Cond', 'Roboto Condensed Medium', 'HelveticaNeue-CondensedBold', sans-serif;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.25;
  margin-top: 30px;
  padding-right: 25px;
  position: relative;
  text-transform: uppercase;
}
#subscription-contact .kicker .glyphicon {
  position: absolute;
  right: 0;
  top: -1px;
}
#subscription-contact .kicker .glyphicon-chevron-down {
  animation: collapse-icon 0.5s both;
}
#subscription-contact .kicker .glyphicon-chevron-down.rotate {
  animation: expand-icon 0.5s both;
}
.faq-item {
  border-bottom: dotted 2px #ccc;
  margin: 10px 0;
  padding: 10px 0;
}
.faq-item .question {
  font-family: 'McClatchy Sans', Arial, 'Helvetica Neue', Helvetica, sans-serif !important;
  font-size: 14px;
  font-weight: 600;
  margin: 5px 0;
  padding: 0 0;
}
.faq-item .answer {
  font-size: 14px;
  color: #666;
  font-family: 'McClatchy Sans', Arial, 'Helvetica Neue', Helvetica, sans-serif !important;
}
.faq-item ul {
  list-style-type: disc;
}
#form-toggle {
  background-color: #ba2814;
  color: #fff;
  margin: 40px 0 20px 0;
  padding: 10px;
  text-align: center;
}
#form-toggle .kicker-inverse {
  color: #fff;
  font-family: 'McClatchy Sans', Arial, 'Helvetica Neue', Helvetica, sans-serif !important;
  font-size: 13px;
  line-height: 1.25;
  margin: 0;
  text-transform: none;
  font-weight: 400;
}
#form-toggle a.btn-default {
  color: #ba2814;
  font-weight: bold;
  margin-top: 10px;
}
@media screen and (min-width: 768px) {
  #subscription-contact .kicker {
    cursor: default;
  }
  #subscription-contact .glyphicon {
    display: none;
  }
  #form-toggle {
    background-color: #fff;
    color: #ba2814;
    margin: 0;
    padding: 0;
    text-align: left;
  }
  #form-toggle .btn {
    display: none;
  }
}
/* ----- Keyframes ----- */
@keyframes expand-icon {
  0% {
    transform: rotate(0deg);
  }
  80% {
    transform: rotate(200deg);
  }
  100% {
    transform: rotate(180deg);
  }
}
@keyframes collapse-icon {
  0% {
    transform: rotate(180deg);
  }
  80% {
    transform: rotate(-20deg);
  }
  100% {
    transform: rotate(0deg);
  }
}
