.page__wrap_boats {
  width: 100vw;
  background: #fff;
  }

.page__boats_by_year {
  max-width: 70rem;
  margin: 0 auto;
}

.boats__by_year_header {
  padding: 1rem;
}

.total {
  color: red;
}
.boat__builds {
	display: block;
	
}
.builds {
	border-bottom: 1px solid #ccc;
	padding-bottom: 1em;
  padding-top: 1em;
}
.tabs {
  display: block;
}

.tabs__header {

  --min: 15ch;
  --gap: 1rem;
  display: grid;
  /*grid-gap: var(--gap);*/
  grid-template-columns: repeat(auto-fit, minmax(min(100%, var(--min)), 1fr));
  
  margin: 0;
  padding: 0;
  overflow: hidden;
}
.tabs__header li {
  display: block;
  float: left;
}
.tabs__title {
  background: #f5f5f5;
  border: 1px solid rgba(180,180,180,0.2);
  cursor: pointer;
  display: block;
  /*margin-right: 0.5em;*/
  padding: 1em 1.5em;
  transition: all 0.25s;
  display: grid;
  justify-content: center;

}
.tabs__title:hover {
  text-decoration: none;
}
.tabs__title_active {
  background: #fff;
  border-bottom-color: #fff;
  border-top-left-radius: 0.75em;
}
.tabs__content {
  border: 1px solid rgba(64,64,64,0.1);
  background-color: #fff;
  line-height: 1.5;
  margin-top: -1px;
  padding: 1em 2em 3em;
  display: grid;
  grid-template-columns: 1fr;
}
