/*-- Tabs --*/

.tabs-wrap {
	position: relative;
	overflow: hidden;
}
.tabs-nav-wrap {
  list-style: none;
  margin: 0;
  box-sizing: border-box;
  display: grid;
  grid-auto-columns: 1fr;
  grid-auto-flow: column;
  grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
  grid-gap:3px;
}
.tabs-nav-wrap .tab-item,
.tabs-container .mobile-tab-head {
	text-align: center;
	margin: 0;
	cursor: pointer;
	padding: 10px 5px;
	border-top: 0px solid #b5b5b5;
	border-bottom: 0px solid #b5b5b5;
	border-left: 0px solid #b5b5b5;
	background-color: #FFF;
	-webkit-border-top-left-radius: 5px;
	-webkit-border-top-right-radius: 5px;
	-moz-border-radius-topleft: 5px;
	-moz-border-radius-topright: 5px;
	border-top-left-radius: 5px;
	border-top-right-radius: 5px;
	color: #9E9E9E;
	overflow: hidden;
	position: relative;
	font-weight: 500;
	font-size: 13px;
  line-height: 1.2;
  box-sizing: border-box;
  min-height: 55px;
  display: grid;
  align-content: center;
  align-items: center;
}
.tabs-nav-wrap .tab-item:hover, .tabs-container .mobile-tab-head:hover {
	color: #000;
}
.tabs-nav-wrap .tab-item.active {
	border-bottom-color: #FFF;
	color: #000;
	font-weight: 700;
}
.tabs-nav-wrap .tab-item:last-child {
	border-right: 0px solid #616161;
}
.mobile-tab-head {
	display: none;
}
.tab-body {
	padding: 2px 0px;
	border: 0px solid #616161;
	border-top: 0;
	-webkit-border-bottom-right-radius: 5px;
	-webkit-border-bottom-left-radius: 5px;
	-moz-border-radius-bottomright: 5px;
	-moz-border-radius-bottomleft: 5px;
	border-bottom-right-radius: 5px;
	border-bottom-left-radius: 5px;
}
.tabs-container .mobile-tab-head {
	display: none;
}
.value-box,
.max-box{
  padding:20px 0px;
  text-align: center;
  color:#333;
  border-radius: 4px;
}
.value-box{
	margin-bottom: 15px;
}
.value-box .title,
.max-box .title{
  font-size: 21px;
  font-weight: 700;
  color:#000;
  padding-bottom: 15px;
  border-bottom: 1px solid #FFF;
  margin-bottom: 10px;
}
.value-box ul li,
.max-box ul li{
  padding-bottom: 5px;
}
.value-box .price-box span,
.max-box .price-box span{
  font-weight: 700;
  display: block;
}
.cta-box{
  text-align: center;
  padding-top: 5px;
  padding-bottom: 5px;
}
.cta-box .btn-sml{
  font-size: 14px;
  padding: 6px 20px;
  box-shadow: none !important;
	margin-bottom: 0;
}
