/** Tabs */ /* блок меню   */
/*.tabs .tab-items {
  position: relative;
  display: inline-flex;
  list-style: none;
  margin: 0;
  border-bottom: 1px solid #e1e1e1;
  padding: 0 15px; 
  } */
 
 

.tabs .tab-items {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    align-content: center;
	list-style: none;
}




/* меньше 800px */
@media all and (max-width: 800px) {
	.tabs  { justify-content: space-around; }
	.tabs a{ flex-grow:1; /* растягиваться на всю ширину */ }
}

/* меньше 500px */
@media all and (max-width: 500px) {
	.tabs { flex-direction: column; }
}





 /* конец блока   */ 


.tabs .tab__item {
  position: relative;
  top: 1px;
  color: #222222;
  font-weight: bold;
 /* font-size: 1.2em; */
  text-align: center;
  letter-spacing: 1px;
  border: 1px dashed #e1e1e1;
  border-top: none;
  border-right: none;
 /* background-color: #ebebeb; */
 /* padding: 5px 12px; */ 
  padding: 8px 24px; 
  cursor: pointer; 
  }
  
  .tabs .tab__item.active {
    color: #004dff;
    border-top: 4px solid #004dff;
    border-bottom: none;
    background-color: #fff;
    cursor: default; }
  .tabs .tab__item:hover {
    color: #004dff; }
  .tabs .tab__item:last-child {
    border-right: 1px solid #e1e1e1; }

.tabs .tab__content {
  display: none; }
  .tabs .tab__content.active {
    display: block; }