/* plan-included */
.plan-included .toggle-list__header{
	color: var(--color-typo-black);
}
.plan-included .toggle-list__content{
	font-size: 16px;
}
/* /plan-included */

/* arch-switch */
.arch-switch{
	display: flex;
	align-items: center;
	justify-content: center;
}
.arch-switch__box{
	display: flex;
	flex-flow: row nowrap;
	gap: 10px;
	align-items: center;
	justify-content: center;
	cursor: pointer;
}
.arch-switch__text{
	color: var(--color-typo-gray);
	font-size: 13px;
	font-weight: 600;
	user-select: none;
}
.arch-switch__mark{
	color: var(--color-typo-black);
}
.arch-switch__switch{
	width: 74px;
	height: 38px;
	padding: 1.5px;
	margin: 0 10px;

	border-radius: 100px;
	background: #5a5a5a;
	box-shadow: 0 0.254px 3.937px 0 rgba(0, 0, 0, 0.33) inset, 0 0 0.99px 0 #000 inset, -11.175px -0.254px 18.54px 0 #000 inset;
}
.arch-switch__button{
	display: flex;
	align-items: center;
	justify-content: center;

	width: auto;
	height: 100%;
	aspect-ratio: 1/1;

	position: relative;
	border-radius: 50px;
	background: linear-gradient(117deg, #ff8642 40.51%, #c40101 146.53%);
	box-shadow: 0 0 4.165px 0 #ff601c inset, 0 0 4.775px 0 rgba(255, 15, 15, 0.95) inset, 1.016px 0.254px 1.295px 0 rgba(0, 0, 0, 0.21), 2.032px 0 4.521px 0 rgba(119, 119, 119, 0.48);
	cursor: pointer;
	color: #fff;
	font-size: 13px;
	user-select: none;
}
.arch-switch__button:before{
	content: 'М';
}

.arch-switch--arch .arch-switch__mark{
	color: var(--color-typo-gray);
}
.arch-switch--arch .arch-switch__arch{
	color: var(--color-typo-black);
}
.arch-switch--arch .arch-switch__button{
	margin-left: auto;
}
.arch-switch--arch .arch-switch__button:before{
	content: 'А';
}
.ext-arch-switch{
	display: flex;
	flex-flow: column;
	gap: 20px;
	padding-block: 20px;
}
.ext-arch-switch__center{
	display: flex;
	align-items: center;
	justify-content: center;
}
.ext-arch-switch__image{
	min-height: 200px;
	border-radius: var(--border-radius-primary);
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
}
.ext-arch-switch__text{
	padding: 20px;
	background-color: var(--color-background-light-grey-hover);
	border-radius: var(--border-radius-primary);
	color: var(--color-typo-gray);
}
.ext-arch-switch__image.ext-arch-switch__mark{
	background-image: url('/upload/tpl_images/vis_ext/swich-mark.webp');
}
.ext-arch-switch__image.ext-arch-switch__arch{
	background-image: url('/upload/tpl_images/vis_ext/swich-arch.webp');
}
@media (min-width: 768px){
	.ext-arch-switch{
		flex-flow: row nowrap;
		align-items: stretch;
	}
	.ext-arch-switch__left,
	.ext-arch-switch__right{
		flex: 1 1 50%;
	}
	.ext-arch-switch__text{
		display: flex;
		align-items: center;
		height: 100%;
	}
}
/* /arch-switch */

/* jambotron-2 */
.jambotron-2{
	display: flex;
	flex-flow: column nowrap;
	gap: 20px;
}
.jambotron-2__left{
	display: flex;
	min-height: 300px;
	aspect-ratio: 4/3;
	overflow: hidden;
	position: relative;
	border-radius: 20px;
}
.jambotron-2__right{
	display: flex;
	min-height: 200px;
	overflow: hidden;
	position: relative;
	border-radius: 20px;
}
@media (min-width: 768px) {
	.jambotron-2{
		flex-flow: row nowrap;
		align-items: stretch;
	}
	.jambotron-2__left{
		flex: 1 1 66%;
	}
	.jambotron-2__right{
		flex: 1 1 33%;
	}
}
/* /jambotron-2 */

/* branded-bar */
.branded-bar{
	display: flex;
	justify-content: space-between;
	align-items: center;

	min-height: 78px;
	padding: 17px 20px;

	font-size: 14px;
	line-height: 1.3;
	font-weight: 500;
	text-wrap: balance;

	color: var(--color-base-white);
	background: var(--color-branded);
	border-radius: 20px;
}
.branded-bar.__fliph{
	background: var(--color-branded-fliph);
}
/* /branded-bar */