@charset "utf-8";
/* CSS Document */
.wrap-collabsible {
  margin-bottom: 1.2rem 0;
	
}

input[type='checkbox'] {
  display: none;
}

.lbl-toggle {
  display: block;
	height: 6vh;
 
	font-family: 'Open Sans', sans-serif;
	font-size: 18px;
	font-weight: 400;
  
  
  text-align: left;

  padding: 1rem;

  color: #fff;
  background: #1863E1;

  cursor: pointer;

  border-radius: 7px;
  transition: all 200ms ease-in-out;
	
}


.lbl-toggle:hover {
  color: black;
}

.lbl-toggle::before {
  content: ' ';
  display: inline-block;
	
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  border-left: 5px solid currentColor;
  vertical-align: middle;
  margin-right: .7rem;
  transform: translateY(-2px);

  transition: transform .2s ease-out;
}

.toggle:checked + .lbl-toggle::before {
  transform: rotate(90deg) translateX(-3px);
}

.collapsible-content {
  max-height: 0px;
  overflow: hidden;
  transition: max-height .25s ease-in-out;
}

.toggle:checked + .lbl-toggle + .collapsible-content {
  	max-height: 100%;

	
}

.toggle:checked + .lbl-toggle {
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}

.collapsible-content .content-inner {
  background: rgba(234, 234, 234, .2);
  border-bottom: 1px solid rgba(234, 234, 234, .45);
  border-bottom-left-radius: 7px;
  border-bottom-right-radius: 7px;
  padding: .5rem 1rem;
}
.content-inner{
	font-family: 'Open Sans', sans-serif;
	
	font-weight: 400;
}
/* Cell Phone View */
@media screen and (max-width: 700px) {
	
.lbl-toggle {
	font-size: 12px;
	height: 3vh;
	}
}