/* CSS Document */
.product-nav {
  width: 100%;
}
.product-nav__list {
  display: flex; flex-direction: row; flex-wrap: nowrap;
}
.product-nav__item {
  display: inline-block;
  margin-right: 5px; min-width: 215px;
}
.product-nav__link {
  font-size: 20px;
  display: block;
  text-align: center; color:#3a3a3a; line-height: 67px; background: rgba(255,255,255,.6);
}
/*.product-nav__link:hover { background: rgba(255,255,255,1);}
.product-nav__link.hover, .product-nav__link.active {
  background: rgba(255,255,255,1);
}*/
.product-nav__link:visited {
  text-decoration: none;
}

.tab-content {
  display: none; padding: 28px 30px;
}

@media only screen and (max-width: 768px) {
	.tab-content {padding: 20px 0;}
}
@media only screen and (max-width: 640px) {
	.product-nav__list > li {width: calc(50% - 5px) !important; min-width:inherit !important;}
}