.domande-frequenti .wrap-details {
	padding: 1.5rem 0;
	margin-right: 0;
	margin-left: 0;
	border-width: 1px;
	border-top-left-radius: .25rem;
	border-top-right-radius: .25rem;
}

.domande-frequenti details {
	background-color: #fff;
	border-top: 1px solid rgba( 0, 0, 0, .125 );
}
.domande-frequenti details:last-child {
		border-bottom: 1px solid rgba(0, 0, 0, .125);
}
.domande-frequenti details[open] {
	animation: open-details;
}

.domande-frequenti details:first-of-type {
	border-top-left-radius: .25rem;
	border-top-right-radius: .25rem;
	border-top: 1px solid rgba( 0, 0, 0, .125 );
}

/* .domande-frequenti details[open] summary {
	border-bottom: 1px solid rgba( 0, 0, 0, .125 );
	margin-bottom: 0.5em;
	background-color: #efefef;
} */

.domande-frequenti summary {
	position: relative;
	display: flex;
	align-items: center;
	width: 100%;
	padding: 1em;
	text-align: left;
	background-color: #fff;
	overflow-anchor: none;
	transition: color .15s ease-in-out,
					background-color .15s ease-in-out,
					border-color .15s ease-in-out,
					box-shadow .15s ease-in-out,
					border-radius .15s ease;
	font-weight: 600;
	cursor: pointer;
}

.domande-frequenti summary::after {
	flex-shrink: 0;
	width: 1.25rem;
	margin-left: auto;
	font-family: Ionicons;
	content: "\f123";
	background-repeat: no-repeat;
	background-size: 1.25rem;
	transition: transform .2s linear;
	font-weight: normal;
	text-decoration: none;
	align-self: flex-start;
}

.domande-frequenti summary:hover span {
	text-decoration: underline;
}

.domande-frequenti details[open] summary::after {
	transform: scaleY(-1);
}

.domande-frequenti details p {
	padding: 0 1em 1em;
}

@keyframes open-faq {
	0% { opacity: 0 }
	100% { opacity: 1 }
}

/* closing animation */
@keyframes close-faq {
	0% { opacity: 1 }
	100% { opacity: 0 }
}

details[open] p {
	animation: open-faq .5s;
}

/* closing class */
details.closing p {
	animation: close-faq .5s;
}