@charset "UTF-8";
/* CSS Document */


/*
* Animation Variables
*/
/* 
* Global
*/
*,
*:before,
*:after {
	box-sizing: border-box;
}

/* 
* Base
*/
body:before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

/*
* Accordion
*/
/* Basic Accordion Styles */
.accordion {
	width: 100%;  /* Radio Inputs */  /* Labels */
  /* Panel Content */
}
.accordion input[name='panel'] {
  display: none;
}
.accordion label {
	position: relative;
	display: block;
	padding: 5px 0;
	cursor: pointer;
	transition: all 0.4s cubic-bezier(0.865, 0.14, 0.095, 0.87);
	height: 60px;
}
.accordion label:after {
	content: '▼';
	position: absolute;
	right: 10px;
	width: 12px;
	height: 12px;
	text-align: center;
	border-radius: 50%;
	top: 23px;
	font-weight: bold;
}
.accordion label:hover {
  	color: #666;
}
.accordion input:checked + label {
	color: #000000;
	width: auto;
}
.accordion input:checked + label:after {
  content: '▲';
  font-weight: bold;
  /* adjsut line-height to vertically center icon */
  line-height: 1.2em;
}
.accordion .accordion__content {
	overflow: hidden;
	height: 0px;
	position: relative;
	padding: 0;
	transition: height 0.4s cubic-bezier(0.865, 0.14, 0.095, 0.87);
}
.accordion .accordion__content:not(:last-of-type) {
  
}
.accordion .accordion__content .accordion__header {
}
.accordion .accordion__content .accordion__body {
}

/* 
* Size Variations
*/
input[name='panel']:checked ~ .accordion__content.accordion__content--small {
	height: 120px;
}

input[name='panel']:checked ~ .accordion__content.accordion__content--med {
  height: 180px;
}

input[name='panel']:checked ~ .accordion__content.accordion__content--large {
  height: 220px;
}
@media screen and (max-width: 1024px) {
	.accordion{
	width: 100%;
	}
}
@media screen and (max-width: 640px) {
	.accordion{
	width: 100%;
	}
	.accordion label:after {
	right: 15px;
	width: 20px;
	height: 20px;
	top: 25px;
}
}
