/* Smooth height transition for utfalld content */
.utfalld-content {
	height: 0;
	overflow: hidden;
	transition: height 1s ease;
}

/* Show content in Gutenberg editor */
.wp-block-editor .utfalld-content,
.wp-admin .utfalld-content {
	height: auto !important;
	overflow: visible !important;
}
.wp-admin .utfalld-block.utfalld-block.utfalld-block {
	border: 3px solid #366eb3;
	padding: 25px;
	margin-left: 0 !important;
	margin-right: 0 !important;
}

/* General */
.utfalld-block {
	border-top: 1px solid #afc5e1;
	border-bottom: 1px solid #afc5e1;
	padding-top: 20px;
	margin-left: 25px;
	margin-right: 25px;
	margin-top: 30px;
	margin-bottom: 30px;
}
@media screen and (max-width: 767px) {
	.utfalld-block {
		margin-left: 0;
		margin-right: 0;
	}
}
/* Heading */
.utfalld-heading {
	cursor: pointer;
	font-size: 20px;
	font-family: source sans pro;
	font-weight: 600;
	margin-bottom: 20px;
	text-underline-offset: 4px;
	position: relative;
	display: flex;
	justify-content: space-between;
	gap: 20px;
}

@media screen and (min-width: 1026px) {
	.utfalld-heading:hover {
		text-decoration: underline;
	}
}
.utfalld-open .utfalld-heading {
	text-decoration: underline;
}
/* Button */
.utfalld-toggle-button {
	padding: 0;
	background: transparent;
	border: none;
	background: transparent !important;
	height: fit-content;
	position: relative;
	top: 11px;
}

.utfalld-toggle-button > div {
	width: 24px;
	height: 2px;
	background: black;
	transition: 0.2s ease-out;
}
.utfalld-heading-button-icon-plus {
	rotate: 90deg;
	position: absolute;
}

.utfalld-open .utfalld-heading-button-icon-plus {
	opacity: 0;
}
