.tabbed-content {
	display: block;
	position: relative;
}
	.tabbed-content .tabbed-header {
		padding: 40px 0;
		background-color: #eee;
	}
		.tabbed-content .tabbed-header h2 {
			margin: 0 auto 20px;
			text-align: center;
			font-family: var(--font-body-bold);
			font-size: 36px;
			color: #000;
		}

	.tabbed-content ul.tab-titles {
		margin: 0;
		padding: 0;
		list-style: none;
		text-align: center;
	}
		.tabbed-content ul.tab-titles > li {
			display: inline-block;
			min-width: 100px;
			border-bottom: 5px solid #000;
			text-align: center;
			font-family: var(--font-body-reg);
			font-size: 20px;
			color: #000;
			cursor: pointer;
		}
			.tabbed-content ul.tab-titles > li:hover,
			.tabbed-content ul.tab-titles > li.active {
				color: #eb2328;
				border-color: #eb2328;
			}

	.tabbed-content .tab-contents {}
		.tabbed-content .tab-contents .tab-content {
			height: 0;
			opacity: 0;
			visibility: hidden;
			pointer-events: none;
			transition: opacity 0.5s ease;
		}
			.tabbed-content .tab-contents .tab-content.active {
				height: auto;
				opacity: 1;
				visibility: visible;
				pointer-events: all;
			}

	.tabbed-content .heart {
		margin: 40px 0;
	}
		.tabbed-content .heart img {
			margin: 0 auto;
		}

@media only screen and (min-width: 40.063em) {
	.tabbed-content ul.tab-titles > li {
		min-width: 150px;
		font-size: 22px;
	}
}

@media only screen and (min-width: 64.063em) {

}
