.ac-container {
  max-width: 1200px;
  width: 100%;
  margin: 10px auto 30px auto;
  text-align: left;
}

.ac-container label {
  display: block;
  position: relative;
  padding: 5px 20px;
  font-size: 19px;
  font-family: 'Mulish', 'Arial Narrow', Arial, sans-serif;
  line-height: 33px;
  height: 40px;
  cursor: pointer;
  color: #ffffff;
  background-color: #a0745d;
}

.ac-container label:hover {
  background-color: #a0745d;
}

.ac-container input:checked + label,
.ac-container input:checked + label:hover {
  background-color: #a0745d;
  color: #ffffff;
}

.ac-container label:hover:after,
.ac-container input:checked + label:hover:after {
  content: '';
  position: absolute;
  top: 50%;
  right: 15px;
  transform: translateY(-50%);
  width: 24px;
  height: 24px;
  background: transparent url(../images/arrow_down.png) no-repeat center center;
}

.ac-container input:checked + label:hover:after {
  background-image: url(../images/arrow_up.png);
}

.ac-container input {
  display: none;
}

.ac-container article {
  position: relative;
  z-index: 1;
  max-height: 0;
  overflow: hidden;
  -webkit-transition: max-height 0.5s ease-out;
  transition: max-height 0.5s ease-out;
}

.ac-container article p {
    color: #000000;
    padding: 20px;
    font: normal normal 16px 'Open Sans';
    background-color: white !important;
}

.ac-container input:checked ~ article {
  max-height: 100vh;
  overflow-y: auto;
}

  .ac-container input:checked + label {
    color: #ffffff;
  }
  
  .ac-container article {
    max-height: none;
    overflow-y: auto;
  }
  
  .ac-container article p {
    font-size: 14px;
    line-height: 20px;
    padding: 15px;
  }
  
  .ac-container label:hover:after,
  .ac-container input:checked + label:hover:after {
    display: none;
  }
}

.ac-container .ac-item.is-active .ac-large {
    display: block !important;
}

.ac-container .ac-item .ac-large {
    display: none;
    padding: 5px 20px;
}