.tabs__main{
	display: none;
}
.tabs__items{
	display: flex;
	gap: 15px 0;
	justify-content: center;
}
.tabs__items .tabs__item{
	border-left: 0;
	border-right: 1px solid #BDBDBD;
}
.tabs__items .tabs__item:last-child{
	border-right: 0;
}
@media(max-width: 1199px){
	.tabs__main{
		display: flex;
		justify-content: center;
	}
	.tabs__items{
		flex-direction: column;
	}
	.tabs__items .tabs__item{
		border-right: 0;
	}
}