/* View Faq Style */

.faq_h2 {
 text-transform: uppercase;
 margin-left:3px;
 font-size: 18px;
 color: #1C629C;
 text-shadow:
    -1px -1px #FFF,
    -2px -2px #FFF,
    -1px 1px #FFF,
    -2px 2px #FFF,
    1px 1px #FFF,
    2px 2px #FFF,
    1px -1px #FFF,
    2px -2px #FFF,
    -3px -3px 2px #BBB,
    -3px 3px 2px #BBB,
    3px 3px 2px #BBB,
    3px -3px 2px #BBB;
}

.accordion {
  background-color: #f5f7fa;
  color: #444;
  cursor: pointer;
  padding: 11px;
  width: 100%;
  border:1px solid #d6d6d6;
  text-align: left;
  outline: none;
  transition: 0.4s;
  font-size: 18px;
}

.active, .accordion:hover {
  background-color: #ebebeb;
  color:#00822e;
}

.accordion:after {
  content: '\002B';
  color: #777;
  font-weight: bold;
  float: right;
  margin-left: 5px;

}

.active:after {
  content: "\2212";
}

.panel {
  padding: 0 18px;
  background-color: white;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out;
}

.breaker{
  padding:4px;
}