/* holster.css
 * стили основных блоков сайта, его сетки
 *
 */

.l-page {


	position: relative;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-flow: column wrap;
	flex-flow: column wrap;
	-webkit-box-pack: start;
	-ms-flex-pack: start;
	justify-content: flex-start;
	width: 100%;
	min-width: 320px;
	min-height: 100vh;
	/*max-width: 1920px;*/
	margin: 0 auto;
	overflow: hidden;
}

.l-wrapper {
	width: 1170px;
	margin-right: auto;
	margin-left: auto;
	padding-left: 15px;
	padding-right: 15px;
}

.l-header {
	position: relative;
	z-index: 100;
	/*height: 80px;*/
}

.l-content {
	width: 100%;
	justify-self: flex-start;
	-webkit-box-flex: 1;
	-ms-flex-positive: 1;
	flex-grow: 1;
	min-height: 30vh;
	margin: 0 0 40px;
}

.l-footer {
	width: 100%;
	padding: 37px 0 20px;
}

@media (max-width: 1469px) {
	.l-footer {
		font-size: 14px;
	}
}


/*sites colors*/

.passage .l-page {
	background-color: #152B27;
	color: #fff;
}

.grinvich .l-page {
	background-color: #0f1e37;
	color: #fff;
}

.passage .l-header {
	background-color: #244640;
	color: #fff;
}

.grinvich .l-header {
	background-color: #2d3c55;
	color: #fff;
}

.passage .l-footer {
	background-color: #244640;
	color: #BDC7C6;
}

.grinvich .l-footer {
	background-color: #2d3c55;
	color: #BDC7C6;
}


/*fancybox hack*/

/*.compensate-for-scrollbar .l-page {
    margin-right: -17px;
    padding-right: 17px;
}
*/
.vkino-banner {
	background-color: rgba(43, 43, 43, 1);
	display: none;
}
.vkino-banner.closed{
	display: none;
}
.vkino-banner__wrapper {
	padding: 8px 16px;
}

.vkino-banner__content {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
}

.vkino-banner__text {
	color: rgba(255, 255, 255, 1);
}

.vkino_name {
	font-weight: 600;
	font-size: 18px;
	line-height: 23.4px;
}

.vkino_text {
	font-size: 14px;
	font-weight: 400;
	line-height: 15.4px;
	max-width: 189px;
	position: relative;
}
.vkino-banner__close{
	width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.vkino-banner__image{
	position: relative;
}
.vkino-banner__transition {
	position: relative;
	display: flex;
	gap: 16px;
	align-items:center;
	justify-content: center;
}

.vkino-banner__link::before {
	content: '';
	position: absolute;
	inset: 0;
}
@media(max-width:310px){
	.vkino-banner__content{
		gap: 0;
	}
	.vkino_name{
		font-size: 14px;
		line-height: 16px;
	}
	.vkino_text{
		font-size: 12px;
	}
}