@charset "utf-8";
/* CSS Document */


.ac-label {
  font-weight: 700;
  position: relative;
  display: block;
  cursor: pointer;
  background-color: #BDBDBD;
  transition: background-color .15s ease-in-out;
  height: 47px;
  line-height: 47px;
  text-align: center;
  color: #fff;
}

.ac-input:checked + label, .ac-label:hover {
  background-color: #999;
}

.ac-label:after, .ac-input:checked + .ac-label:after {
  content: "";
  position: absolute;
  display: block;
  right: 15px;
  top: 50%;
  background: url('../images/accordion_arrow.svg');
  background-size: 12px 8px;
  width: 12px;
  height: 8px;
  margin-top: -4px;
}


.ac-input:checked + .ac-label:after {
  transform: rotate(-180deg);
}

.ac-input {
  display: none;
}



.ac-text, .ac-sub-text {
  opacity: 0;
  height: 0;
  transition: opacity .5s ease-in-out;
  overflow: hidden;
}

.ac-input:checked ~ .ac-text, .ac-sub .ac-input:checked ~ .ac-sub-text { 
  opacity: 1;
  height: auto;
}



.ac-sub .ac-label {
  background: #E0E0E0;
  font-weight: bold;
  padding: 0 15px;
  margin-bottom: 0;
  text-align: left;
  color: #828282;
  line-height: 36px;
  height: 36px;
  position: relative;
}

.ac-sub .ac-label:checked {
  background: #E0E0E0;
  border-bottom: 1px solid whitesmoke;
}

.ac-sub .ac-label:after, .ac-sub .ac-input:checked + .ac-label:after {
  content: "";
  position: absolute;
  display: block;
  right: 15px;
  top: 50%;
  background: url('../images/accordion_arrow2.svg');
  background-size: 12px 8px;
  width: 12px;
  height: 8px;
  margin-top: -4px;
}

.ac-sub .ac-input:checked + label, .ac-sub .ac-label:hover {
  background: #E0E0E0;
}

.ac-sub-text {
  padding: 0;
}


