

/* Start:/biometry/biometry.css?153060280815683*/
@media screen and (min-width: 768px) {
	.visible-xs {
		display: none !important;
	}
}

/*** Готовые типовые решения по биометрическим системам от ZK и Biosmart (ProSoft) ***/
/** Сводная таблица по готовым решениям от ZK и Biosmart (ProSoft) **/
.bst-table {
	display: flex;
	flex-wrap: wrap;
	/* width: 90vw; */
}

.bst-column.bst-brands {
	width: 27%;
}
.bst-column.bst-equipment {
	width: 33%;
}
.bst-column.bst-small,
.bst-column.bst-medium,
.bst-column.bst-large {
	width: 40%;
}
@media screen and (min-width: 768px) {
	.bst-column.bst-brands {
		width: 15%;
	}
	.bst-column.bst-equipment {
		width: 19%;
	}
	.bst-column.bst-small,
	.bst-column.bst-medium,
	.bst-column.bst-large {
		width: 22%;
	}
}

.bst-column-table {
	display: flex;
	flex-direction: column;
	justify-content: space-around;
	align-items: stretch;
	height: 100%;
}

.bst-header-mobile,
.bst-column-row {
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: 0 15px;
	height: 50px;
}
.bst-column-row.centered {
	text-align: center;
}

.bst-column-row.bst-row-brand {
	flex-grow: 2;
	height: auto;
	text-align: center;
	font-weight: bold;
	color: white;
}
.bst-column-row.bst-row-brand.bst-row-zk {
	background-color: rgb(120, 188, 39);
}
.bst-column-row.bst-row-brand.bst-row-biosmart {
	background-color: rgb(1, 85, 149);
}

.bst-column.bst-header-mobile,
.bst-column-row.bst-row-header {
	text-align: center;
	font-weight: bold;
}
.bst-column.bst-small.bst-header-mobile,
.bst-column.bst-small .bst-column-row.bst-row-header {
	background-color: rgb(250, 250, 250);
}
.bst-column.bst-medium.bst-header-mobile,
.bst-column.bst-medium .bst-column-row.bst-row-header {
	background-color: rgb(240, 240, 240);
}
.bst-column.bst-large.bst-header-mobile,
.bst-column.bst-large .bst-column-row.bst-row-header {
	background-color: rgb(230, 230, 230);
}
@media screen and (max-width: 767px) {
	.bst-column-row.bst-row-header {
		display: none;
	}
	.bst-column.bst-header-mobile {
		width: 100%;
		margin-top: 30px;
	}
}

.bst-column.bst-small .bst-column-row.bst-row-zk {
	background-color: rgb(237, 243, 233);
}
.bst-column.bst-medium .bst-column-row.bst-row-zk {
	background-color: rgb(228, 236, 218);
}
.bst-column.bst-large .bst-column-row.bst-row-zk {
	background-color: rgb(218, 232, 202);
}

.bst-column.bst-small .bst-column-row.bst-row-biosmart {
	background-color: rgb(231, 241, 249);
}
.bst-column.bst-medium .bst-column-row.bst-row-biosmart {
	background-color: rgb(216, 230, 241);
}
.bst-column.bst-large .bst-column-row.bst-row-biosmart {
	background-color: rgb(208, 223, 234);
}


/** Подробная таблица по готовым решениям от ZK и Biosmart (ProSoft) **/
/* Боковушка с навигацией */
#biometry_solutions_nav {
	position: relative;
	display: none;
}
#biometry_solutions_nav.fixed {
	position: fixed;
	top: 0;
	left: 0;
	height: 100%;
	z-index: 1;
}
@media screen and (min-width: 768px) {
	#biometry_solutions_nav {
		display: block;
	}
}

#biometry_solutions_nav .solutions-nav-list-wrapper {
	position: absolute;
	left: 0;
	top: 183px;
	width: 200px;
	box-sizing: border-box;
	padding: 0 20px 0 0;
	background: white;
	list-style: none;
	z-index: 100;
	box-shadow: rgba(0,0,0,0.9) 3px 4px 12px;
	will-change: transform;
	transform: translateX(-180px);
	transition: transform .2s ease-out;
}
#biometry_solutions_nav.toggled .solutions-nav-list-wrapper {
	transform: translateX(0);
}
#biometry_solutions_nav.fixed .solutions-nav-list-wrapper {
	top: 0;
	max-height: 100%;
	overflow-y: auto;
}
@media screen and (min-width: 1084px) {
	#biometry_solutions_nav .solutions-nav-list-wrapper {
		top: 140px;
	}
}

#biometry_solutions_nav button.solutions-nav-list-toggler,
#biometry_solutions_nav button.solutions-nav-list-toggler:hover,
#biometry_solutions_nav button.solutions-nav-list-toggler:active,
#biometry_solutions_nav button.solutions-nav-list-toggler:focus {
	display: flex;
	align-items: center;
	justify-content: center;
	position: absolute;
	width: 20px;
	height: 100%;
	right: 0;
	box-sizing: border-box;
	border: none;
	padding: 0;
	background-color: rgb(255, 223, 8);
	text-align: center;
	font-weight: bold;
	font-size: 1.5em;
	cursor: pointer;
    overflow: visible;
	box-shadow: none;
}

#biometry_solutions_nav .solutions-nav-list-toggler::before {
	content: "»";
	display: block;
    position: static;
	will-change: transform;
	transform: rotate(0deg);
	transform-origin: center;
	transition: transform .2s ease-out;
	width: 20px;
    height: 20px;
    position: static;
    overflow: visible;
	background: transparent;
	color: rgb(51, 51, 51);
	border: none;
	line-height: 15px;
}
#biometry_solutions_nav.toggled .solutions-nav-list-toggler::before {
	transform: rotate(180deg);
}
#biometry_solutions_nav .solutions-nav-list-toggler:hover::before,
#biometry_solutions_nav.toggled .solutions-nav-list-toggler:hover::before {
	color: white;
	text-shadow: 0 0 15px white;
}

#biometry_solutions_nav .solutions-nav-list-toggler::after {
	display: none;
}

#biometry_solutions_nav .solutions-nav-list-wrapper > ul {
	padding: 0;
	margin: 0;
	list-style: none;
}

.biometry-nav-type {
	padding: 10px 0;
}
.biometry-nav-type.biometry-nav-type-small {
	background-color: rgb(250, 250, 250);
}
.biometry-nav-type.biometry-nav-type-medium {
	background-color: rgb(240, 240, 240);
}
.biometry-nav-type.biometry-nav-type-large {
	background-color: rgb(230, 230, 230);
}

.biometry-nav-type > a:first-child {
	display: block;
	padding: 10px 20px;
}

.biometry-nav-vendor {
	display: block;
	padding: 5px 10px;
	box-sizing: border-box;
}

.biometry-nav-vendor .vendor-nav-logo {
	max-width: 100%;
	height: 40px;
	box-sizing: border-box;
	background-color: white;
	background-position: center;
	background-size: auto 80%;
	background-repeat: no-repeat;
}
.biometry-nav-vendor.vendor-zk .vendor-nav-logo {
	border: rgb(120, 188, 39) 1px solid;
}
.biometry-nav-vendor.vendor-zk:hover .vendor-nav-logo,
.biometry-nav-vendor.vendor-zk:active .vendor-nav-logo,
.biometry-nav-vendor.vendor-zk:focus .vendor-nav-logo {
	box-shadow: 0 0 10px rgba(120, 188, 39, .5);
}
.biometry-nav-vendor.vendor-ps .vendor-nav-logo {
	border: rgb(1, 85, 149) 1px solid;
}
.biometry-nav-vendor.vendor-ps:hover .vendor-nav-logo,
.biometry-nav-vendor.vendor-ps:active .vendor-nav-logo,
.biometry-nav-vendor.vendor-ps:focus .vendor-nav-logo {
	box-shadow: 0 0 10px rgba(1, 85, 149, .5);
}

/* Основной контент */
/* #biometry_solutions, */
/* #wrapper > section.biometry-content { */
	/* position: relative; */
	/* padding-left: 200px; */
/* } */
/* @media screen and (min-width: 1410px) { */
	/* #biometry_solutions, */
	/* #wrapper > section.biometry-content { */
		/* padding-left: 100px; */
	/* } */
/* } */
/* @media screen and (min-width: 1610px) { */
	/* #biometry_solutions, */
	/* #wrapper > section.biometry-content { */
		/* padding-left: 0; */
	/* } */
/* } */

.biometry-solution-type {
	margin: 30px 0 80px;
}

.biometry-solution-type h2,
.biometry-solution-type .h2 {
	padding: 5px 10px 10px;
}
.biometry-solution-type-small h2,
.biometry-solution-type-small .h2 {
	background-color: rgb(250, 250, 250);
}
.biometry-solution-type-medium h2,
.biometry-solution-type-medium .h2 {
	background-color: rgb(240, 240, 240);
}
.biometry-solution-type-large h2,
.biometry-solution-type-large .h2 {
	background-color: rgb(230, 230, 230);
}

.biometry-solution {
	margin: 80px 0;
}
.biometry-solution:first-of-type {
	margin-top: 0;
}

#biometry_solutions .vendor-logo {
	display: block;
	margin: 20px auto;
	max-width: 230px;
	height: auto;	
}

#biometry_solutions .solution-description {
	display: flex;
	justify-content: space-between;
}

#biometry_solutions table.biometry-solution-table {
	width: 100%;
	margin-top: 20px;
}

#biometry_solutions table.biometry-solution-table th,
#biometry_solutions table.biometry-solution-table tfoot td {
	color: white;
	font-weight: bold;
}
#biometry_solutions table.biometry-solution-table.vendor-zk th,
#biometry_solutions table.biometry-solution-table.vendor-zk tfoot td {
	background-color: rgb(120, 188, 39);
}
#biometry_solutions table.biometry-solution-table.vendor-ps th,
#biometry_solutions table.biometry-solution-table.vendor-ps tfoot td {
	background-color: rgb(1, 85, 149);
}
#biometry_solutions table.biometry-solution-table th:nth-child(1) {
	width: 10%;
}
#biometry_solutions table.biometry-solution-table th:nth-child(2) {
	width: 20%;
}
#biometry_solutions table.biometry-solution-table th:nth-child(3) {
	width: 40%;
}
#biometry_solutions table.biometry-solution-table th:nth-child(4) {
	width: 10%;
}
#biometry_solutions table.biometry-solution-table th:nth-child(5) {
	width: 10%;
}
#biometry_solutions table.biometry-solution-table th:nth-child(6) {
	width: 10%;
}

#biometry_solutions table.biometry-solution-table th,
#biometry_solutions table.biometry-solution-table td {
	padding: 10px 20px;
	text-align: center;
}

#biometry_solutions table.biometry-solution-table.vendor-zk .solution-group-item:not(.solution-group-item-last) {
	border-bottom: rgb(114, 167, 97) 1px dotted;
}
#biometry_solutions table.biometry-solution-table.vendor-ps .solution-group-item:not(.solution-group-item-last) {
	border-bottom: rgb(97, 131, 167) 1px dotted
}

#biometry_solutions .solution-group-title {
	font-weight: bold;
}
#biometry_solutions table.biometry-solution-table.vendor-zk .solution-group-title {
	background-color: rgb(218, 232, 202);
}
#biometry_solutions table.biometry-solution-table.vendor-ps .solution-group-title {
	background-color: rgb(208, 223, 234);
}

#biometry_solutions table.biometry-solution-table tbody td:nth-child(3) {
	text-align: left;
}

#biometry_solutions table.biometry-solution-table tfoot td:first-child {
	text-align: right;
	font-weight: bold;
	text-transform: uppercase;
}

#biometry_solutions .solution-item-devices {
	display: flex;
	justify-content: center;
	align-items: center;
}

#biometry_solutions .solution-item-device {
	position: relative;
}

#biometry_solutions .solution-item-device:not(:first-child)::before {
	content: "или";
	display: block;
	position: absolute;
	top: 45%;
	left: -15%;
	color: rgb(110, 110, 110);
}

#biometry_solutions .solution-device-image {
	width: 100px;
	height: 100px;
	margin: 10px auto;
	background-repeat: no-repeat;
	background-position: center;
	background-size: auto 100%;
}


/*** Решения по аутентификации от Indeed ***/
.indeed-pdoduct-title-prefix {
	display: block;
	font-size: 0.75em;
	font-weight: normal;
	line-height: normal;
}
.indeed-pdoduct-title-name {
	position: relative;
	text-transform: uppercase;
}
.indeed-pdoduct-title-name::before {
	content: "«";
	display: inline;
	margin-left: -0.5em;
}
.indeed-pdoduct-title-name::after {
	content: "»";
	display: inline;
	margin-right: -0.5em;
}

/** Сводная таблица **/
.bat-table {
	display: flex;
	flex-wrap: wrap;
	/* width: 90vw; */
}

.bat-column.bat-label {
	width: 40%;
}
.bat-column.bat-sso,
.bat-column.bat-ea,
.bat-column.bat-wa {
	width: 60%;
}
@media screen and (min-width: 768px) {
	.bat-column.bat-label {
		width: 22%;
	}
	.bat-column.bat-sso,
	.bat-column.bat-ea,
	.bat-column.bat-wa {
		width: 26%;
	}
}

.bat-column-table {
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: stretch;
	height: 100%;
}
.bat-column.bat-label .bat-column-table {
	/* justify-content: center; */
}


.bat-header-mobile,
.bat-column-row {
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	padding: 0 15px;
}
.bat-column-row.centered {
	text-align: center;
}
.bat-column.bat-label .bat-column-row {
	justify-content: center;
}

.bat-column.bat-header-mobile,
.bat-column-row.bat-row-header {
	height: 125px;
	padding: 15px;
	background-color: rgb(240, 240, 240);
	/* text-align: center; */
	font-weight: bold;
}
.bat-column.bat-label .bat-row-header {
	text-align: center;
}
@media screen and (max-width: 767px) {
	.bat-column-row.bat-row-header {
		display: none;
	}
	.bat-column.bat-header-mobile {
		width: 100%;
		margin-top: 30px;
	}
}
@media screen and (min-width: 1060px) {
	.bat-column.bat-header-mobile,
	.bat-column-row.bat-row-header {
		height: 108px;
	}
}
@media screen and (min-width: 1140px) {
	.bat-column.bat-header-mobile,
	.bat-column-row.bat-row-header {
		height: 90px;
	}
}

.bat-column-row.bat-row-label {
	flex-grow: 2;
	text-align: center;
}

.bat-column-table > a {
	text-decoration: none;
}

.bat-card {
	position: relative;
	width: 100%;
	max-width: 274px;
	height: 163px;
	margin: 20px auto 6px;
	box-sizing: border-box;
	background-size: 100%;
	background-repeat: no-repeat;
	color: white;
}
@media screen and (min-width: 768px) {
	.bat-card {
		height: 0;
		padding-top: 60%;
	}
}

.bat-card-title {
	position: absolute;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	font-size: 1.05em;
	font-weight: bold;
	box-sizing: border-box;
	padding: 8px 40% 20px 20px;
}

.bat-item-description {
	margin: 10px;
	font-weight: bold;
}

ul.bat-item-list > li {
	margin: 10px 0;
}

/** Страница описания решения от Indeed **/
.indeed-product-top {
	position: relative;
	margin: 35px auto 0;
	background: url("/images/content/biometry/indeed-bg-splash.png") center no-repeat,
				url("/images/content/biometry/indeed-bg-fill.png") center repeat-x;
	background-color: rgb(255, 63, 39);
}

.indeed-product-top-container {
	position: relative;
	min-height: 343px;
	max-width: 744px;
	margin: 0 auto;
	padding: 16px 0;
	box-sizing: border-box;
}

.indeed-product-top-text-box {
	position: relative;
	width: 42%;
	padding-top: 35px;
	z-index: 1;
	color: rgb(255, 255, 255);
}

.indeed-product-top-title {
	font-weight: 600;
}

.indeed-product-top-description {
	
}

.indeed-product-top-producer a,
.indeed-product-top-producer a:visited,
.indeed-product-top-producer a:active,
.indeed-product-top-producer a:focus,
.indeed-product-top-producer a:active:focus {
	color: rgb(255, 223, 8);
}

.indeed-product-top-image {
	position: absolute;
	bottom: 0;
	right: 0;
}

.indeed-product-top-image > img {
	display: block;
}


.indeed-features-list {
	padding: 30px 0;
}

.indeed-feature {
	padding: 30px;
	box-sizing: border-box;
}
.indeed-feature:not(:first-child) {
	border-top: rgb(240, 240, 240) 1px solid;
}

.indeed-feature-title {
	font-weight: bold;
}
@media screen and (min-width: 768px) {
	.indeed-feature-title {
		float: left;
		width: 40%;
	}
	.indeed-feature-text {
		width: 60%;
		margin-left: 40%;
	}
}
@media screen and (min-width: 1160px) {
	.indeed-feature-title {
		width: 33%;
	}
	.indeed-feature-text {
		width: 60%;
		margin-left: 33%;
	}
}


#other_products_indeed {
	margin-top: 30px;
}

#other_products_indeed h3 {
	font-weight: bold;
}

#other_products_indeed .product {
	min-height: 170px;
	padding: 20px 0;
}

#other_products_indeed .product-image {
	position: relative;
	max-width: 275px;
	margin: auto;
}
@media screen and (min-width: 768px) {
	#other_products_indeed .product-image {
		margin: 0;
	}
}

#other_products_indeed .product-image a {
	text-decoration: none;
}

#other_products_indeed .product-image img {
	position: relative;
	width: 100%;
	height: auto;
	left: 0;
	top: 0;
}
@media screen and (min-width: 768px) {
	#other_products_indeed .product-image img {
		position: absolute;
	}
}

#other_products_indeed .product-title {
	position: absolute;
	top: 10px;
	left: 20px;
	color: white;
	font-size: 1.2em;
}

#other_products_indeed .product-text {
	margin: 10px 0 0;
}
@media screen and (min-width: 768px) {
	#other_products_indeed .product-text {
		margin: -4px 0 0 300px;
	}
}
/* End */
/* /biometry/biometry.css?153060280815683 */
