.b-tabs {
	width: 100%;
	margin: 50px 0;
}

.b-tabs__links {
	text-align: center;
	margin-right: 25px;
	-o-transition: all 0.5s ease-in-out;
	-moz-transition: all 0.5s ease-in-out;
	-webkit-transition: all 0.5s ease-in-out;
	transition: all 0.5s ease-in-out;
	vertical-align: middle;
}
.b-tabs__item {
	border: 2px solid silver;
	text-align: left;
	margin: 5px 0;
	padding: 12px;
	color: #404040;
	font-weight: 600;
	font-size: 14px;
	text-transform: uppercase;
	cursor: pointer;
	-o-transition: all 0.2s ease-in-out;
	-moz-transition: all 0.2s ease-in-out;
	-webkit-transition: all 0.2s ease-in-out;
	transition: all 0.2s ease-in-out;
}
.b-tabs__item:hover {
	color: #000;
	border-color: #00A4EB;
}
.b-tabs__item--active {
	color: #000;
	border-color: #00A4EB;
}
.b-tabs__item--plan{
	background-color: #fff;
	color: var(--main-color-hover);
}
.b-tabs__itemNumber{
	/*border: 2px solid silver;*/
}
.b-tabs__itemName{
	padding: 12px;
}
.b-tabs__right {
	width: 66.6666666667%;
}
.b-tabs__right-content {
	height: 100%;
	width: 100%;
	text-align: center;
}
.b-tabs__right-content img {
	max-width: 100%;
	height: auto;
	box-shadow: 0 0 5px;
	width: 100%;
}
.b-tabs__right-item {
	display: none;
	transition: 1s;
	animation-duration: 1s;
	animation-fill-mode: both;
	animation-name: fadeInRight;
}
.b-tabs__item--is-active {
	display: block;
}

@keyframes fadeInRight {
	0% {
		opacity: 0;
		-webkit-transform: translateX(100px);
		-ms-transform: translateX(100px);
		transform: translateX(100px);
	}
	100% {
		opacity: 1;
		-webkit-transform: translateX(0);
		-ms-transform: translateX(0);
		transform: translateX(0);
	}
}
.row {
	width: 100%;
}

/*---Block info tabs---*/
.b-infoTabs{
	width: 500px;
	height: 500px;
	background-color: #00a4ebd4;
	color: #fff;
	position: absolute;
	left: -20px;
	top: -20px;
	box-shadow: 0 0 5px;
}
.b-infoTabs__content{
	width: 100%;
	height: 100%;
	padding: 25px;
	word-break:break-word;
	overflow-y: auto;
	/*text-shadow: 1px 1px 1px #fff;*/
}
.b-infoTabs__content h2{
	color: #fff;
	text-transform: uppercase;
	font-weight: 600;
}
.b-infoTabs__content::-webkit-scrollbar-track {border-radius: 4px;}
.b-infoTabs__content::-webkit-scrollbar {width: 6px;}
.b-infoTabs__content::-webkit-scrollbar-thumb {border-radius: 4px;background: #6a7d9b;}
.b-infoTabs__content:hover::-webkit-scrollbar-thumb {background: #fff;}

.b-infoTabs__text{
	margin-top: 20px;
	text-align: left;
	color: #fff;
	font-weight: 600;
	font-size: 14px;
}
.b-infoTabs__subtitle{
	font-size: 20px;
	font-weight: 600;
	color: #fff;
	text-align: left;

}

@media screen and (max-width: 1300px) {
	.b-infoTabs{
		width: 400px;
		height: 346px;
	}
}

@media screen and (max-width: 992px) {
	.b-tabs{
		display: flex;
		justify-content: center;
	}
	.b-tabs__links{
		margin-right: 0;
		margin-bottom: 25px;
	}
	.b-tabs__right-content{
		display: flex;
		justify-content: center;
	}
	.b-infoTabs{
		position: relative;
		left: 0;
		height: auto;
		width: 100%;
	}
	.b-tabs__item--active{
		-o-transform: translateX(0px);
		-ms-transform: translateX(0px);
		-moz-transform: translateX(0px);
		-webkit-transform: translateX(0px);
		transform: translateX(0px);
	}
}
@media screen and (max-width: 768px) {
	.b-infoTabs__content h2{
		font-size: 18px;
	}
	.b-infoTabs__text{
		font-size: 13px;
	}
	.b-infoTabs__subtitle{
		font-size: 16px;
	}
}

.t-plan table{
	/*background-color: #fff;*/
	/*background-color: var(--main-color);*/
}

.t-plan tr{
	/*background-color: var(--main-color);*/
	/*color: #fff;*/

	background-color: #fff;
	color: var(--main-color);


	border: 5px solid var(--main-color);
}
.t-plan p{
	margin-bottom: 0;
}
.t-plan td{
	border: 2px solid var(--main-color);
}