.jdw-tabs-2 {
	width: 100%;
}

.jdw-tabs-2,
.jdw-tabs-2 * {
	box-sizing: border-box;
}

.jdw-tabs-2__list {
	align-items: stretch;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	list-style: none;
	margin: 0;
	padding: 0;
}

.jdw-tabs-2__item {
	display: flex;
	margin: 0 40px;
}

.jdw-tabs-2__button {
	appearance: none;
	background: transparent;
	border-color: #fff;
	border-radius: 0;
	border-style: solid;
	border-width: 0 0 4px;
	color: #122341;
	cursor: pointer;
	display: inline-flex;
	font: inherit;
	line-height: inherit;
	margin: 0;
	padding: 10px 0;
	text-align: center;
	transition: border-color 0.2s ease, color 0.2s ease;
}

.jdw-tabs-2__button:hover,
.jdw-tabs-2__button:focus-visible,
.jdw-tabs-2__item.is-active .jdw-tabs-2__button {
	border-color: #d95e49;
	color: #d95e49;
}

.jdw-tabs-2__button:focus-visible {
	outline: 2px solid currentColor;
	outline-offset: 4px;
}

.jdw-tabs-2__title {
	display: block;
}

.jdw-tabs-2-panel {
	display: none;
}

.jdw-tabs-2-panel.is-active {
	display: flex;
}

@media (max-width: 767px) {
	.jdw-tabs-2__list {
		align-items: center;
		flex-direction: column;
	}

	.jdw-tabs-2__item {
		margin-left: 0;
		margin-right: 0;
	}

	.jdw-tabs-2__button {
		width: 100%;
	}
}
