/*
To change this license header, choose License Headers in Project Properties.
To change this template file, choose Tools | Templates
and open the template in the editor.
*/
/* 
    Created on : 26.12.2018, 16:23:48
    Author     : dearhome
*/
.question {
	font-size: 16px;
}
.part_title {
	padding: 1rem 0 0.5rem;
	line-height: 2rem;
	font-size: 1.5rem;
	font-weight: 300;
}
.accordion {
  /* border-bottom: 1px solid #ddd; */
  padding-bottom: 2rem;
}
.accordion-item {
  /* border-top: 1px solid #ddd;      
  border-left: 1px solid #ddd;
  border-right: 1px solid #ddd; */
}
.accordion-item-header {
  padding: 0.8rem 1rem;
  /* background: #a4b4bf; */
  color: rgb(0, 153, 255);
  cursor: pointer;
  font-size: 1.2rem;
}
.accordion-item-header img {
	margin-top: -2px;
	padding: 0 0.4rem;
}
.accordion-item-content {
  background: rgb(255, 255, 255);
  transition: opacity .4s ease;
  visibility: hidden;
  height: 0;
  opacity: 0;
  text-align: justify;
}
.accordion-item.show .accordion-item-content {
  padding: 0.8rem 1rem;
  visibility: visible;
  height: auto;
  opacity: 1;
}
.accordion-item.show .accordion-item-header {
  background: rgb(52, 152, 204);
  color: rgb(255, 255, 255);
  border-bottom: 1px solid rgb(221, 221, 221);
}