.wr-tc{
	width: 100%;
}

.wr-tc__tabs{
	display: flex;
	flex-wrap: wrap;
	gap: 16px;
	justify-content: center;
}

.wr-tc__tab{
	border: 1px solid transparent;
	background: #c81c66;
	color: #fff;
	text-transform: uppercase;
	letter-spacing: 0.6px;
	cursor: pointer;
	transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
	flex: 0 0 auto;
	text-align: center;
	border-radius: 0;
	box-shadow: none;
	font-weight: 700;
	white-space: nowrap;
}

.wr-tc__tab.is-active{
	background: #fff;
	color: #c81c66;
	border-color: #c81c66;
}

@media (max-width: 767px){
	.wr-tc__tabs{
		justify-content: flex-start;
	}
	.wr-tc__tab{
		flex: 1 1 100%;
	}
}
