/* 2015 - 2018 by AiCOACH Sp. z o.o. All rights reserved */

#contents-section h2 {
    text-align: left;
}

#contents-section ol.contents-menu {
    padding: 0;
}

.question_container {
  padding: 18px 0;
}

section .question_container .question p {
  margin: 0 0 0 5px !important;
  padding: 0px;
  cursor: pointer;
  font-weight: bold;
  display: inline-block;
  text-align: left;
}

#contents-section .contents-menu li {
    list-style-type: none;
}
 
.answer_container {
  height: 0px;
  overflow: hidden;
  padding: 0px;
}

.answer_container .answer ul {
  margin: 0 0 0 30px;
  padding: 0;
}

.answer_container .answer ul li {
    list-sty  le-type: disc;
} 

.answer_container .answer p {
    ma  rgin: 0 !important;
}

.question_container hr {
    m argin: 0;
}

/*arrow-toggle (start)*/
.arrow-toggle {
  width: 25px;
  height: 25px;
  position: relative;
  display: inline-block;
  float: right;
}

.arrow-toggle:before, .arrow-toggle:after {
  content: "";
  width: 10px;
  height: 3px;
  background: #000;
  position: absolute;
  top: 13px;
  transition: transform .5s;
}

.arrow-toggle:before {
  right: 15px;
  transform: rotate(45deg);
}

.arrow-toggle:after {
  right: 10px;
  transform: rotate(-45deg);
}

.arrow-toggle.arrow-active:before {
  transform: rotate(-45deg);
}

.arrow-toggle.arrow-active:after {
  transform: rotate(45deg);
}
/*arrow-toggle (end)*/