/** Widgets: toggle **/

.ha-toggle .ha-toggle__item-content:after {
	display: block;
	clear: both;
	content: "";
}

.ha-toggle .ha-toggle__wrapper {
	color: #2b2b2b;
}

.ha-toggle .ha-toggle__item {
	overflow: hidden;
	border: 1px solid #e8e8e8;
	-webkit-transition: all .2s ease-in-out;
	transition: all .2s ease-in-out;
}

.ha-toggle .ha-toggle__item:not(:first-child) {
	margin-top: -1px;
}

.ha-toggle .ha-toggle__item .ha-toggle__icon i, .ha-toggle .ha-toggle__item-title {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	line-height: 1;
}

.ha-toggle .ha-toggle__item-title {
	-webkit-box-align: center;
	-webkit-align-items: center;
	align-items: center;
	-ms-flex-align: center;
	margin: 0;
	padding: 20px;
	font-weight: 700;
	cursor: pointer;
	-webkit-transition: all .2s ease-in-out;
	transition: all .2s ease-in-out;
}

.ha-toggle .ha-toggle__item-title-icon {
	-webkit-flex-shrink: 0;
	-ms-flex-negative: 0;
	flex-shrink: 0;
	margin-right: 15px;
}

.ha-toggle .ha-toggle__item .ha-toggle__icon svg, .ha-toggle .ha-toggle__item-title-icon svg {
	width: 1em;
	height: auto;
	fill: currentColor;
}

.ha-toggle .ha-toggle__item .ha-toggle__icon, .ha-toggle .ha-toggle__item-title-icon, .ha-toggle .ha-toggle__item-title-inner {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	align-items: center;
	-ms-flex-align: center;
}

.ha-toggle .ha-toggle__item-title-text {
	line-height: 1.2;
}

.ha-toggle .ha-toggle__item-content {
	display: none;
	padding: 20px;
	border-top: 1px solid #e8e8e8;
}

.ha-toggle .ha-toggle__item .ha-toggle__icon {
	display: inline-block;
	-webkit-flex-shrink: 0;
	-ms-flex-negative: 0;
	flex-shrink: 0;
	font-size: .8em;
	line-height: 1em;
}

.ha-toggle .ha-toggle__item .ha-toggle__icon--opened {
	display: none;
	line-height: 1;
}

.ha-toggle .ha-toggle__item .ha-toggle__icon--closed {
	line-height: 1;
}

.ha-toggle .ha-toggle__item .ha-toggle__icon i {
	vertical-align: middle;
	font-size: 13px;
}

.ha-toggle .ha-toggle__item--active > span > .ha-toggle__icon--closed {
	display: none;
}

.ha-toggle .ha-toggle__item .ha-toggle__icon--closed, .ha-toggle .ha-toggle__item--active > span > .ha-toggle__icon--opened {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	align-items: center;
	-ms-flex-align: center;
}

.ha-toggle--icon-left .ha-toggle__icon {
	float: left;
	margin-right: 15px;
}

.ha-toggle--icon-right .ha-toggle__icon {
	float: right;
	margin-left: 15px;
}
