br.responsive {
  display: inline; // Show BR tag for narrow screens
}

.accordion-header {
  background-color: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  color: #001E5F;
  width: 100%;
  border: none;
  outline: none;
  transition: 0.4s;
  text-align: left;
  padding: 12px 12px 12px 0;
}

.active, .accordion-header:hover {
  background-color: #ccc;
}

/*
.accordion-header:before {
  content: '\1F893';
  color: #777;
  float: left;
}
.active:before {
  content: "\1F891";
}
*/

.accordion-header:before {
	content: '';
	background-image: url("/assets/graphics.svg#i-chevron-down");
	background-repeat: no-repeat;
	width: 1.25em;
    height: 1.25em;
	float: left;
}

.active:before {
	background-image: url("/assets/graphics.svg#i-chevron-up");
	width: 1.25em;
    height: 1.25em;
}

.accordion-content {
  padding: 0;
  background-color: white;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.2s ease-out;
}

.question {
	font-size: 18px;
	font-weight: bold;
	padding: 10px;
	color: #001E5F;
}

.answer {
	padding: 10px;
	font-size: 18px;
	color: #001E5F;
}

.container {
  font-family: calibri;
  margin: 0 auto;
  width: 100%;
  max-width: 1024px;
  text-align: justify;
  text-justify: inter-word;
  padding-left: 15px;
  padding-right: 15px;
}

.header {
	background-color: #ecedf0;
	text-align: center;
	padding-top: 1em;
	padding-bottom: 1em;
}

.title {
	font-weight: bold;
	font-size: 24px;
	color: #9B283C;
}

.sub-title {
	font-weight: normal;
	font-size: 18px;
	color: #001E5F;
}

.space-between-qa {
	display: block;
	margin-bottom: 5px;
}
