/**
 * Article Container
 */
.article-container {
	padding: 2rem;
}

/**
 * Article Block
 */
.article-block {
	text-align: center;
}

.article-block .entry-content > p {
	color: #666;
}

/**
 * Tabs Container
 */
.tabs-container {
	padding: 2rem;
}

/**
 * Tabs Block
 */
.tabs-block {
	display: flex;
	align-items: center;
	justify-content: center;
}

/**
 * Tabs
 */
.tabs {
	display: flex;
	justify-content: space-between;
}

.tabs > ul {
	list-style-type: none;
	margin: 0;
	padding: 0;
	width: 200px;
}

.tabs > ul li {
	display: block;
}


.tabs > ul li a,
.tabs > ul li a:visited {
	display: flex;
	border-bottom: none;
	text-decoration: none;
	background-color: transparent;
	color: #405270;
	padding: 10px 30px;
	border-radius: 100px;
	transition: all 0.2s ease-in-out;
	word-wrap: break-word;
	margin-bottom: 10px;
}

.tabs > ul li a:hover,
.tabs > ul li a:focus,
.tabs > ul li a:active {
	border-bottom: none;
	outline: 0;
}

.tabs > ul li a.active {
	background: linear-gradient(270deg, #6E96D1 -3.85%, #455672 235.77%);
	color: #fff;
}

.tabs > ul li a:hover:not(.active) {
	color: #0067b8;
}

.tabs > ul li a > span {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
}

.tabs section {
	background-color: #fff;
	display: none;
}

.tabs section > * {
	opacity: 0;
	transform: translateY(20px);
	transition: opacity 0.2s, transform 0.2s;
}

.tabs section > *:nth-child(1) {
	transition-delay: 0.2s;
}

.tabs section > *:nth-child(2) {
	transition-delay: 0.3s;
}

.tabs section > *:nth-child(3) {
	transition-delay: 0.4s;
}

.tabs section > *:nth-child(4) {
	transition-delay: 0.5s;
}

.tabs section > *:nth-child(5) {
	transition-delay: 0.6s;
}

.tabs section > *:nth-child(6) {
	transition-delay: 0.7s;
}

.tabs section > *:nth-child(7) {
	transition-delay: 0.8s;
}

.tabs section > *:nth-child(8) {
	transition-delay: 0.9s;
}

.tabs section > *:nth-child(9) {
	transition-delay: 1s;
}

.tabs section > *:nth-child(10) {
	transition-delay: 1.1s;
}

.tabs section > *:nth-child(11) {
	transition-delay: 1.2s;
}

.tabs section > *:nth-child(12) {
	transition-delay: 1.3s;
}

.tabs section > *:nth-child(13) {
	transition-delay: 1.4s;
}

.tabs section > *:nth-child(14) {
	transition-delay: 1.5s;
}

.tabs section > *:nth-child(15) {
	transition-delay: 1.6s;
}

.tabs section > *:nth-child(16) {
	transition-delay: 1.7s;
}

.tabs section > *:nth-child(17) {
	transition-delay: 1.8s;
}

.tabs section > *:nth-child(18) {
	transition-delay: 1.9s;
}

.tabs section > *:nth-child(19) {
	transition-delay: 2s;
}

.tabs section > *:nth-child(20) {
	transition-delay: 2.1s;
}

.tabs section.active {
	display: block;
}

.tabs section.active-content > * {
	opacity: 1;
	transform: translateY(0);
}
@media (min-width: 576px) {

	.tabs > ul li a {
		flex-wrap: wrap;
		display: inline-flex;
	}

	.tabs > ul li a > span {
		width: 100%;
	}

	.tabs > ul li a > span.tab-label {
		width: 100%;
		display: block;
		margin-top: 0.2rem;
	}

	.tabs section {
		width: calc(100% - 220px);
	}
}
@media (min-width: 768px) {

	body {
		font-size: 1.125rem;
	}

	.tabs-container {
		padding: 4rem 4rem;
	}
}
@media (min-width: 992px) {

	.tabs {
		width: 100%;
	}
}

@media (max-width: 1320px){
	.tabs > ul{
		width: 150px;
	}

	.tabs section {
    width: calc(100% - 170px);
	}
}

@media (max-width: 820px){
	.tabs{
		flex-wrap: wrap;
	}

	.tabs > ul{
		width: 100%;
		margin-bottom: 20px;
		display: flex;
	}

	.tabs section{
		width: 100%;
	}

	.cards{
		grid-template-columns: 1fr;
	}

	.tabs > ul li a, .tabs > ul li a:visited{
		padding: 6px 12px;
	}

	.card-item img{
		max-width: 150px;
	}
	.card-item-cart img{
		max-width: 150px;
	}
}

.card-item:hover{
	background: rgba(116,149,255,0.12);
}
.card-item-cart:hover{
	background: rgba(0,149,255,0.12);
}