@charset "UTF-8";
/* CSS Document */

.tabs-nav {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	margin-bottom: 40px;
}
.tabs-nav > li {
	width: 32%;
	margin-bottom: 8px;
	cursor: pointer;
}
.tabs-nav > li:nth-child(1) {
	width: 100%;
	margin-bottom: 10px;
}
.tabs-nav > li a {
	display: block;
	padding: 14px 0 15px;
	background-color: #eae8d8;
	border-radius: 5px;
	font-size: 1.1rem;
	text-align: center;
	line-height: 1;
	transition: all .3s ease-out;
}
.tabs-nav > li a.active {
	background-color: #ff4645;
	color: #fff;
	pointer-events: none;
}


@media print, screen and (min-width: 681px) {
	

	
}


@media print, screen and (min-width: 1200px) {
	
	.tabs-nav {
		display: flex;
		flex-wrap: nowrap;
		justify-content: space-between;
		border-bottom: 1px solid #eae8d8;
		margin-bottom: 70px;
	}
	.tabs-nav > li,
	.tabs-nav > li:nth-child(1) {
		width: 13.5%;
		margin-bottom: 0;
	}
	.tabs-nav > li a {
		display: block;
		padding: 20px 0;
		border-radius: 10px 10px 0 0;
		font-size: 1.4rem;
	}
	.tabs-nav > li:not(:last-child) {
		margin-right: 0;
	}
	
	
	
	
}