#aspect-content {
	font-family: 'Verdana', cursive;
	font-size: 18px;
	font-weight: 400;
	color: #000;
}

#aspect-content * {
	box-sizing: border-box;
}

.aspect-tab {
	text-align: center;
	position: relative;
	width: 100%;
	margin: 0;
	background-color: #45626b;
}

.aspect-arrow {
	position: absolute;
	top: 5px;
	right: 10px;
}

.aspect-tab-content {
	background-color: rgba(239, 225, 224, 1);
}

.aspect-name {
	font-family: 'Verdana', cursive;
	font-size: 18px;
	font-weight: 400;
	color: #fff;
}

.aspect-tab:hover {
	
}

.aspect-input {
	display: none;
}

.aspect-input:checked ~ .aspect-content + .aspect-tab-content {
	max-height: 3000px;
}

.aspect-content + .aspect-tab-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s;
}

.aspect-input:checked ~ .aspect-content .aspect-arrow {
    transform: rotate(90deg);
    -o-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    -webkit-transform: rotate(90deg);
}

.aspect-content .aspect-arrow {
	transition: transform 0.3s;
}

.aspect-label {
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
	width: 100%;
	margin: 0;
	padding: 0;
	font-size: 0;
	z-index: 1;
	cursor: pointer;
}

.aspect-content {
	position: relative;
	display: block;
	height: 30px;
	line-height: 23px;
	margin: 0;
	padding: 5px 0px;
	cursor: pointer;
	user-select: none;
	-webkit-user-select: none;
	-khtml-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	-o-user-select: none;
}

.aspect-hr {
	margin: 0px;
	padding: 0px;
	background-color: #45626b;
	height: 10px;
}

