.newatours-faq {
	width: 100%;
	max-width: none;
}

.newatours-faq-columns {
	display: grid;
	grid-template-columns: minmax(0, 1fr);
	width: 100%;
	column-gap: 28px;
}

.newatours-faq--columns-2 .newatours-faq-columns {
	grid-template-columns: repeat(2, minmax(0, 1fr));
}

.newatours-faq-column {
	display: flex;
	flex-direction: column;
	min-width: 0;
	row-gap: 12px;
}

.newatours-faq-item {
	scroll-margin-top: 100px;
	position: relative;
	overflow: hidden;
	background: #fffdf8;
	border: 1px solid #b08d578c;
	border-radius: 6px;
}

.newatours-faq .newatours-faq-question-v2 {
	appearance: none;
	-webkit-appearance: none;
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 100%;
	max-width: 100%;
	min-width: 0;
	margin: 0;
	border: 0;
	border-radius: 0;
	box-shadow: none;
	text-align: left;
	font: inherit;
	line-height: inherit;
	cursor: pointer;
	color: #0e2a47;
	background-color: #fffdf8;
	padding: 18px 20px;
	transition: color .2s ease, background-color .2s ease;
}

.newatours-faq .newatours-faq-item.is-open .newatours-faq-question-v2 {
	color: #0e2a47;
	background-color: #f8f6ec;
}

.newatours-faq .newatours-faq-question-v2:hover {
	color: #0e2a47;
	background-color: #f8f6ec;
}

.newatours-faq .newatours-faq-question-v2:focus-visible {
	outline: 2px solid currentColor;
	outline-offset: -3px;
}

.newatours-faq-question-main {
	display: inline-flex;
	flex: 1 1 auto;
	align-items: center;
	min-width: 0;
	max-width: 100%;
	column-gap: 12px;

	margin-right: 20px;
}


.newatours-faq-question-text {
	display: block;
	flex: 1 1 auto;
	min-width: 0;
	max-width: 100%;
	white-space: normal;
	overflow-wrap: anywhere;
	word-break: normal;
	font-weight: 600;
}

.newatours-faq-icon {
	position: relative;
	display: inline-flex;
	flex: 0 0 auto;
	align-items: center;
	justify-content: center;
	width: 22px;
	height: 22px;
	color: #b08d57;
}

.newatours-faq--icon-right .newatours-faq-icon {
	margin-left: 0;
}

.newatours-faq--icon-left .newatours-faq-icon {
	margin-right: 16px;
}

.newatours-faq-toggle-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
}

.newatours-faq-toggle-icon--open {
	display: none;
}

.newatours-faq-item.is-open .newatours-faq-toggle-icon--closed {
	display: none;
}

.newatours-faq-item.is-open .newatours-faq-toggle-icon--open {
	display: inline-flex;
}

.newatours-faq-toggle-icon i,
.newatours-faq-toggle-icon svg {
	display: block;
	width: 100%;
	height: 100%;
	font-size: inherit;
	color: currentColor;
	fill: currentColor;
}

.newatours-faq-fallback-plus,
.newatours-faq-fallback-minus {
	position: relative;
	display: block;
	width: 100%;
	height: 100%;
}

.newatours-faq-icon-line {
	position: absolute;
	left: 50%;
	top: 50%;
	display: block;
	width: 72%;
	height: 2px;
	background: currentColor;
	border-radius: 2px;
	transform: translate(-50%, -50%);
	transition: transform .35s ease, opacity .35s ease;
}

.newatours-faq-icon-line--vertical {
	transform: translate(-50%, -50%) rotate(90deg);
}

.newatours-faq-item.is-open .newatours-faq-icon-line--vertical {
	transform: translate(-50%, -50%) rotate(0deg);
	opacity: 0;
}



.newatours-faq--icon-left .newatours-faq-question-v2 {
	flex-direction: row-reverse;
	justify-content: flex-end;
}

.newatours-faq-answer {
	height: 0;
	overflow: hidden;
	transition: height .42s cubic-bezier(0.4, 0, 0.2, 1);
}

.newatours-faq-answer[hidden] {
	display: none;
}

.newatours-faq-answer-inner {
	min-width: 0;
	color: #333333;
	background-color: #fffdf8;
	padding: 0 20px 20px;

	margin-top: 12px;
}

.newatours-faq-answer-inner > :first-child {
	margin-top: 0;
}

.newatours-faq-answer-inner > :last-child {
	margin-bottom: 0;
}

.newatours-faq-answer-inner a {
	text-decoration: underline;
	text-underline-offset: 2px;
}

/* Gruppierung aller FAQs */

.newatours-faq-section-column {
	display: flex;
	flex-direction: column;
	row-gap: 28px;
}

.newatours-faq-section {
	min-width: 0;
}

.newatours-faq-section-title {
	display: flex;
	align-items: center;
	color: #0e2a47;
	margin-bottom: 10px;
	column-gap: 12px;
}

.newatours-faq-section-title-text {
	min-width: 0;
	font-weight: 600;
}

.newatours-faq-section-items {
	display: flex;
	flex-direction: column;
	row-gap: 12px;
}

/* Themen-Icon für Gruppenmodus und Gruppenüberschriften */

.newatours-faq-topic-icon {
	display: inline-flex;
	flex: 0 0 auto;
	align-items: center;
	justify-content: center;
	width: 22px;
	height: 22px;
	color: #b08d57;
}

.newatours-faq-topic-icon svg {
	display: block;
	width: 100%;
	height: 100%;
}

/* Stand */

.newatours-faq-updated {
	width: 100%;
	font-size: .9em;
	line-height: 1.4;
	text-align: right;
}

.newatours-faq-updated--top {
	margin-bottom: 12px;
}

.newatours-faq-updated--bottom {
	margin-top: 12px;
}

.newatours-faq-updated-prefix {
	margin-right: .25em;
}

/* Elementor-Hinweis */

.newatours-faq-editor-notice {
	padding: 12px 14px;
	border: 1px dashed #b08d57;
	background: #faf7f1;
	color: #0e2a47;
}

@media (max-width: 767px) {
	.newatours-faq--columns-2 .newatours-faq-columns {
		grid-template-columns: minmax(0, 1fr);
	}
}

@media (prefers-reduced-motion: reduce) {
	.newatours-faq-question-v2,
	.newatours-faq-answer,
	.newatours-faq-icon-line {
		transition: none !important;
	}
}
