@charset "UTF-8";
.wrap { 
max-width: 700px; 
margin: 0em auto; 
padding-left: 1em;
position: absolute;
}

@media screen and (min-width:390px){
.wrap {
		padding-left: 1em;
		padding-right: 1em;
		margin-top:160px;
	}
}
@media screen and (min-width:500px){
.wrap {
		margin-top:0px;
	}
}
		
@media screen and (min-width:750px){
.wrap {
		margin-left:15%;
	}
}
.tab h6{
  color:#fff;
  text-align:center;
  font-weight: 300;
} 
.tab h1{
	font-family: 'open-sans', sans-serif, "Segoe UI", "DejaVu Sans", "Trebuchet MS","sans-serif";
	font-style: normal;
	padding-left: 1.5em;
	line-height:1.2em;
	font-size:0.75em;
	padding-top:1em;
	padding-bottom: 0em;
	margin-bottom: 0;
}
.tab h2{
		font-family: 'open-sans', sans-serif, "Segoe UI", "DejaVu Sans", "Trebuchet MS","sans-serif";
	color:#131F49;
	font-style: normal;
	line-height:1.4em;
	font-size:0.75em;
	margin-top:0em;
	margin-bottom: 0;
	padding-left: 1.5em;
}


/* [THE ENTIRE TAB] */
.tab p{
	margin-top: 0px; padding-top: 0px;
	font-family: 'open-sans', sans-serif, "Segoe UI", "DejaVu Sans", "Trebuchet MS","sans-serif";
	font-weight: 400;
	font-style: normal;
	font-size:0.75em;
	line-height: 1.4em;
	color: hsla(0,0%,0%,1.00);
	margin-right:1em;
	overflow: auto;
}
.tab {
  position: relative;
  margin: 2px;
  max-width: 700px;
}
.tab li{
	margin-top:0.3em;
	font-family: 'open-sans', sans-serif, "Segoe UI", "DejaVu Sans", "Trebuchet MS","sans-serif";
	font-style: normal;
	line-height:1.4em;
	font-size:0.75em;
	padding-left: 0em;
	margin-right:2em;
}
.tab ul{
	margin-top:0.3em;
	font-family: 'open-sans', sans-serif, "Segoe UI", "DejaVu Sans", "Trebuchet MS","sans-serif";
	font-style: normal;
}
/* [THE LABEL] */
.tab input {
  display: none;
}
.tab label {
  display: block;
  background: hsla(227,59%,18%,0.60);
  color: #fff;
  font-weight: bold;
  padding: 10px;
  cursor: pointer;
  font-family: 'open-sans', sans-serif, "Segoe UI", "DejaVu Sans", "Trebuchet MS","sans-serif";
  font-style: normal;
  line-height:1.4em;
  font-size:0.9em;
}
.tab label::after {
  content: "+";
	font-size: 1.6em;
  position: absolute;
  right: 10px;
  top: 10px;
  display: block;
  transition: all 0.4s;
}

.tab input[type=checkbox]:checked + label::after,
.tab input[type=radio]:checked + label::after {
  content: " – "; color: white; float: right;font-size: 1.6em;
}

/* [THE CONTENTS] */
.tab-content {
  overflow: hidden;
  background: #ffffff;
  /* CSS animation will not work with auto height */
  /* This is why we use max-height */
  transition: max-height 0.4s; 
  max-height: 0;
}
.tab-content p {
  margin: 20px;
}
.tab input:checked ~ .tab-content {
  /* Set the max-height to a large number */
  /* Or 100% viewport height */
  max-height: 100vh;
}
