
.tabrow {
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
	justify-content: center;
	align-items: center;
	width: 100%;
}

.mytab_item {
	width: calc(50% - 10px);
	box-sizing: border-box;
}

.tab_link {
	display: block;
	width: 100%;
	text-decoration: none;
	color: inherit;
}

.tab_link:hover {
	text-decoration: none;
	color: inherit;
}

.tab_link .tab_cat {
	width: 100%;
	box-sizing: border-box;
	text-align: center;
	cursor: pointer;
}

/* Selected tab */
.tab_cat.tselected {
	background: #477fae;
	color: #ffffff;
}

/* Normal tab */
.tab_cat {
	transition: 0.25s ease;
}

/* =========================
   Smooth slide-up animation
========================= */

.mytabs_slide_up {
	animation: mytabsSlideUp 0.45s ease;
}

@keyframes mytabsSlideUp {
	from {
		opacity: 0;
		transform: translateY(45px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}


@media only screen and (max-width: 768px) {
	.tabrow {
		display: block;
	}

	.mytab_item {
		width: 100%;
		margin-bottom: 10px;
	}

	.tab_link .tab_cat {
		border-radius: 1em !important;
	}
}