

/* Start:/local/components/eltex-doma/kit-picker/templates/.default/style.css?17793334469942*/
.kits__picker {
	display: flex;
	border: 1px #C6CBD4 solid;
	border-radius: 20px;
}
.kits__picker-item {
	position: relative;
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 12px;
	padding: 50px 20px;
	cursor: pointer;
	border: 1px transparent solid;
	transition: all .2s ease;
}
.kits__picker-item:not(:first-of-type)::before {
	content: '';
	display: block;
	position: absolute;
	width: 1px;
	height: 100%;
	left: 0;
	top: 0;
	background: #C6CBD4;
}
.kits__picker-item.active:before {
	content: none;
}
.kits__picker-item.active + .kits__picker-item::before {
	content: none;
}

.kits__picker-item-name {
	font-size: 24px;
	font-weight: 600;
	line-height: 120%;
}

.kits__picker-item.active {
	background: #E9EFF9;
	border: 1px var(--accent) solid;
	border-radius: 20px;
	box-shadow: 0px 4px 12px -2px rgba(11, 17, 28, 0.14),inset 1px 0px 0px 0px rgba(0, 0, 0, 0.13),inset -1px 0px 0px 0px rgba(0, 0, 0, 0.13),inset 0px -1px 0px 0px rgba(0, 0, 0, 0.17),inset 0px 1px 0px 0px rgba(204, 204, 204, 0.5);
}
.kits__picker-item.active svg path {
	fill: var(--accent);
}
.kits__picker-item.active .kits__picker-item-name {
	color: var(--accent);
}



/* wrapper */
.kits__wrapper {
	display: flex;
	flex-direction: column;
	gap: 64px;

	margin-top: 0;
	height: 0;
	opacity: 0;
	transition: all .5s ease;
	pointer-events: none;
}
.kits__wrapper.active-kit {
	margin-top: 32px;
	height: fit-content;
	opacity: 1;
	transition-delay: .5s;
	pointer-events: all;
}

.kit-room {
	padding: 32px;
	width: 100%;
	max-height: 625px;
	display: grid;
	grid-template-columns: 394px 2fr 1fr;
	align-items: center;
	gap: 32px;
	background: var(--white);
	border-radius: 20px;
	box-shadow: 0px 4px 12px -2px rgba(11, 17, 28, 0.14),inset 1px 0px 0px 0px rgba(0, 0, 0, 0.13),inset -1px 0px 0px 0px rgba(0, 0, 0, 0.13),inset 0px -1px 0px 0px rgba(0, 0, 0, 0.17),inset 0px 1px 0px 0px rgba(204, 204, 204, 0.5);
}
.kit-room__descr {
	height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.kit-room__descr-text p {
	margin-top: 24px;
	line-height: 120%;
}
.kit-room__descr-link.button {
	width: fit-content;
}
.kit-room__descr-link.button.-mobile {
	display: none;
}

.kit-room__image {
	max-width: 616px;
	max-height: 561px;
}
.kit-room__image img {
	width: 616px;
	max-height: 561px;
}

.kit-room__devices {
	padding-left: 24px;
}
.kit-room__devices-title {
	display: flex;
	align-items: center;
	gap: 8px;
}
.kit-room__devices-title .kit-contain {
	font-size: 20px;
	font-weight: 600;
	line-height: 130%;
}
.kit-room__devices-title .counter {
	width: 20px;
	height: 20px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 14px;
	font-weight: 600;
	line-height: 130%;
	color: var(--white);
	background: var(--accent);
	border-radius: 20px;
}
.kit-room__devices-list {
	width: auto;
	margin-top: 16px;
	display: flex;
	flex-direction: column;
	gap: 8px;

	padding-right: 8px;
	height: calc(625px - 136px);
    overflow: auto;
}
.kit-room__devices-list .item {
	height: auto;
	padding: 16px;
	display: flex;
	align-items: center;
	gap: 8px;

	border-radius: 8px;
	border: 1px #C6CBD4 solid;
}
.kit-room__devices-list .item img {
	height: 84px;
	width: 84px;
}
.kit-room__devices-list .item-descr {
	display: flex;
	flex-direction: column;
	gap: 8px;
}
.kit-room__devices-list .item-descr > div {
	font-size: 14px;
	font-weight: 400;
	line-height: 120%;
	width: 151px;
}
.kit-room__devices-list .item-descr > div.-bold {
	font-weight: 600;
}
.kit-room__devices .hub-note {
	margin-top: 16px;
	color: #737373;
	font-size: 12px;
	font-weight: 500;
	line-height: 120%;
}



/* use */
.kit-use {
	width: 100%;
}
.kit-use h3 {
	font-size: 40px;
	font-weight: 600;
	line-height: 120%;
}
.kit-use__list {
	margin-top: 32px;
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: 24px;
}
.kit-use__list .item {
	height: auto;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	background: var(--white);
	border-radius: 20px;
	box-shadow: 0px 4px 12px -2px rgba(11, 17, 28, 0.14),inset 1px 0px 0px 0px rgba(0, 0, 0, 0.13),inset -1px 0px 0px 0px rgba(0, 0, 0, 0.13),inset 0px -1px 0px 0px rgba(0, 0, 0, 0.17),inset 0px 1px 0px 0px rgba(204, 204, 204, 0.5);
	overflow: hidden;
}
.kit-use__list .item-text {
	padding: 16px;
}
.kit-use__list .item-text h4 {
	font-size: 20px;
	font-weight: 600;
	line-height: 130%;
}
.kit-use__list .item-text p {
	margin-top: 16px;
	font-size: 16px;
	font-weight: 400;
	line-height: 130%;
}
.kit-use__list .item img {
	width: 100%;
}

.kit-services {
	margin-top: 64px;
	padding: 16px;
	width: 100%;
	display: flex;
	justify-content: space-between;
	background: var(--white);
	border-radius: 20px;
	box-shadow: 0px 4px 12px -2px rgba(11, 17, 28, 0.14),inset 1px 0px 0px 0px rgba(0, 0, 0, 0.13),inset -1px 0px 0px 0px rgba(0, 0, 0, 0.13),inset 0px -1px 0px 0px rgba(0, 0, 0, 0.17),inset 0px 1px 0px 0px rgba(204, 204, 204, 0.5);
}
.kit-services__text {
	font-size: 16px;
	font-weight: 600;
	line-height: 130%;
}
.kit-services__text:first-of-type {
	padding-right: 16px;
	border-right: 1px #C6CBD4 solid;
}
.kit-services__text:last-of-type {
	padding-left: 16px;
	border-left: 1px #C6CBD4 solid;
}
.kit-services__links {
	display: flex;
	gap: 24px;
}
.kit-services__links-item {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 4px;

	font-size: 16px;
	font-weight: 500;
	line-height: 130%;
}
.kit-services__links-item > img {
	transition: transform .2s ease;
}

@media (hover: hover) {
	.kit-services__links-item:hover > img {
		transform: scale(1.1);
	}
}


@media (max-width: 1500px) {
	.kit-room {
		grid-template-columns: 310px 1fr 310px;
	}
	.kit-room__image img {
		width: 100%;
	}
	.kit-use__list {
		gap: 16px;
	}
	.kit-services__links {
		max-width: 40%;
		flex-wrap: wrap;
    	justify-content: center;
	}
	.kit-services__text {
		display: flex;
		align-items: center;
	}
}

@media (max-width: 1240px) {
	.kits__picker-item {
    	padding: 35px 20px;
	}
	.kit-room {
		max-height: initial;
		grid-template-columns: 1fr 1.5fr;
	}
	.kit-room__devices {
		padding: 0;
		width: 100%;
		grid-column-start: 1;
    	grid-column-end: 3;
	}
	.kit-room__devices-list {
		height: auto;
		flex-direction: row;
		gap: 0;
		overflow: visible;
	}
	.kit-room__devices-list .item {
		width: fit-content;
		height: auto;
		flex-direction: column;
	}
	.kit-use {
		overflow: visible;
	}
	.kit-use__list {
		display: flex;
		gap: 0;
	}
	.kit-use__list .item {
		width: 240px;
	}
	.kit-services {
    	flex-direction: column;
		gap: 24px;
	}
	.kit-services__links {
		max-width: 100%;
	}
	.kit-services__text:first-of-type {
		padding-right: 0;
		padding-bottom: 16px;
		border-right: none;
		border-bottom: 1px #C6CBD4 solid;
	}
	.kit-services__text:last-of-type {
		padding-left: 0;
		padding-top: 16px;
		border-left: none;
		border-top: 1px #C6CBD4 solid;
	}
	.kit-services__text {
		justify-content: center;
	}
	.kit-services__text br {
		display: none;
	}
}


@media (max-width: 992px) {
	.kits__picker-item .kits__picker-item-name {
		max-width: 0;
		overflow: hidden;
		transition: all .5s ease;
	}
	.kits__picker-item.active .kits__picker-item-name {
		max-width: 200px;
	}
	.kit-room__image {
		max-width: 100%;
        display: flex;
        justify-content: center;
	}
	.kit-room__image img {
		width: 80%;
		max-width: 616px;
	}
	.kit-room {
		grid-template-columns: 1fr;
	}
	.kit-room__devices {
		grid-column-start: initial;
    	grid-column-end: initial;
	}
	.kit-room__descr-link.button.-desctop {
		display: none;
	}
	.kit-room__descr-link.button.-mobile {
		margin-top: 32px;
		display: flex;
	}
}

@media (max-width: 768px) {
	.kit-services__links {
		flex-direction: column;
	}
}

@media (max-width: 480px) {
	.welcome .container .subtitle {
		padding: 0;
		font-size: 16px;
		font-weight: 400;
		line-height: 130%;
	}
	.kits__picker {
		border: none;
	}
	.kits__picker-item {
		padding: 12px;
		gap: 8px;
	}
	.kits__picker-item svg {
		width: 32px;
		height: 32px;
	}
	.kits__picker-item .kits__picker-item-name {
		font-size: 16px;
		font-weight: 600;
		line-height: 110%;
		transition: none;
	}
	.kits__picker-item:not(:first-of-type)::before {
		content: none;
	}

	.kits__wrapper.active-kit {
		margin-top: 24px;
	}
	.kit-room {
		width: 100vw;
		padding: 16px;
		margin-left: -20px;
	}
	.kit-room__descr-text h2 {
		font-size: 20px;
		font-weight: 500;
		line-height: 130%;
	}
	.kit-room__descr-text p {
		margin-top: 8px;
	} 
	.kit-room__image img {
		width: 100%;
	}
	.kit-room__devices {
		overflow: visible;
	}
	.kit-room__devices-title .kit-contain {
		font-size: 15px;
		font-weight: 600;
		line-height: 110%;
	}
	.kit-room__devices-title .counter {
		width: 16px;
		height: 16px;
		font-size: 10px;
	}
	.kit-room__devices-list {
		width: calc(100vw - 40px);
        padding-left: 16px;
        margin-left: -16px;
        overflow: visible;
	}
	.kit-room__devices-list .item {
		width: fit-content;
		min-width: 100px;
		max-width: 110px;
		padding: 8px;
	}
	.kit-room__devices-list .item-descr {
		gap: 4px;
		width: 100%;
	}	
	.kit-room__devices-list .item-descr > div {
		font-size: 12px;
		width: 100%;
	}
	.kit-room__devices .hub-note {
		margin-top: 8px;
	}
	.kit-room__descr-link.button {
		width: 100%;
		justify-content: center;
	}

	.kits__wrapper {
		gap: 48px;
	}
	.kit-use h3 {
		font-size: 20px;
		font-weight: 500;
		line-height: 120%;
	}
	.kit-use__list {
		margin-top: 24px;
	}
	.kit-use__list .item-text {
		font-size: 16px;
	}
	.kit-use__list .item-text h4 {
		font-size: 16px;
		font-weight: 600;
		line-height: 130%;
	}
	.kit-use__list .item-text p {
		font-size: 14px;
	}

	.kit-services {
		margin-top: 48px;
	}
	.kit-services__text:first-of-type {
		padding-bottom: 8px;
	}
	.kit-services__text:last-of-type {
		padding-top: 8px;
	}
	.kit-services__links {
		align-items: flex-start;
	}
	.kit-services__links-item {
		flex-direction: row;
	}
}



/* End */
/* /local/components/eltex-doma/kit-picker/templates/.default/style.css?17793334469942 */
