﻿/* Based on W3.CSS 4.15 December 2020 by Jan Egil and Borge Refsnes */
.accordion{
	width:100%;
	border:none;
	border-top: 1px solid #C6CDD2;
	display:inline-block;
	padding:24px;
	vertical-align:middle;
	overflow:hidden;
	text-decoration:none;
	background-color:inherit;
	cursor:pointer;
	white-space:normal;
	-webkit-touch-callout:none;
	-webkit-user-select:none;
	-khtml-user-select:none;
	-moz-user-select:none;
	-ms-user-select:none;
	user-select:none;
	font-family: 'Charles Modern', Arial, 'sans-serif';
	color: #333;
	font-weight: bold;
	font-size: 130%;
	text-align:left;
}
.accordion:first-of-type{
	border:none;
}
.accordion:hover{
	color:#333!important;
	background-color:#F4F5F6!important;
}
.w3-container{
	padding:24px;
}
.w3-container:after,.w3-container:before{
	content:"";
	display:table;
	clear:both;
}
.hide{
	display:none!important
}
.show{
	display:block!important
}
.chevron{
	height:24px;
	float:right;
	margin-top:0.1em;
	width:auto;
	transition: all 0.2s ease-in-out;
}
.up {
	rotate: 0deg;
}
.down {
  rotate: 180deg;
}