

/* Start:/local/components/mob.top/events.detail/templates/.default/style.css?17352811301349*/
.project__detail.opport__fon {
    padding: 50px 0;
}
.project__detail-wrap.opport__item {
    align-items: start;
}
.project__detail-item {
    margin-bottom: 2em;
}
.project__detail-item .item-descr a {
    color: var(--color-white);
    border-bottom: 1px solid var(--color-white);
}
.project__detail-item .item-descr a:hover {
    color: var(--color-dusty-rose);
    border-color: var(--color-dusty-rose);
}
.project__detail-more {
    font-size: 20px;
}
.project__detail-more a {
    border-bottom: 1px solid var(--color-black);
}
.project__detail-more a:hover {
    border-color: var(--color-dark-blue-gray);
}
.project__detail-item .list-item {
    display: flex;
    gap: 20px;
    margin-bottom: 10px;
}
.project__detail-item .list-item span:last-child {
    font-weight: bold;
}
.libraries__slider video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.opport__item-pic {
    position: relative;
}
.badge {
	position: absolute;
	left: 20px;
	bottom: -100px;
	padding: 5px 15px;
	background-color: var(--color-soft-pink);
	border-radius: 14px;
    font-size: 18px;
    color: var(--color-black);
    transition: 0.3s;
}
.badge__js-open {
    cursor: pointer;
}
.badge__js-open:hover {
    background-color: var(--color-dusty-rose);
}

@media (max-width: 992px) {
    .badge {
        bottom: auto;
        top: -60px;
    }
}
/* End */


/* Start:/local/templates/common/js/photoswipe/photoswipe.css?17346976767026*/
/*! PhotoSwipe main CSS by Dmytro Semenov | photoswipe.com */

.pswp {
  --pswp-bg: #000;
  --pswp-placeholder-bg: #222;
  

  --pswp-root-z-index: 100000;
  
  --pswp-preloader-color: rgba(79, 79, 79, 0.4);
  --pswp-preloader-color-secondary: rgba(255, 255, 255, 0.9);
  
  /* defined via js:
  --pswp-transition-duration: 333ms; */
  
  --pswp-icon-color: #fff;
  --pswp-icon-color-secondary: #4f4f4f;
  --pswp-icon-stroke-color: #4f4f4f;
  --pswp-icon-stroke-width: 2px;

  --pswp-error-text-color: var(--pswp-icon-color);
}


/*
	Styles for basic PhotoSwipe (pswp) functionality (sliding area, open/close transitions)
*/

.pswp {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: var(--pswp-root-z-index);
	display: none;
	touch-action: none;
	outline: 0;
	opacity: 0.003;
	contain: layout style size;
	-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

/* Prevents focus outline on the root element,
  (it may be focused initially) */
.pswp:focus {
  outline: 0;
}

.pswp * {
  box-sizing: border-box;
}

.pswp img {
  max-width: none;
  object-fit: contain;
}

.pswp--open {
	display: block;
}

.pswp,
.pswp__bg {
	transform: translateZ(0);
	will-change: opacity;
}

.pswp__bg {
  opacity: 0.005;
	background: var(--pswp-bg);
}

.pswp,
.pswp__scroll-wrap {
	overflow: hidden;
}

.pswp__scroll-wrap,
.pswp__bg,
.pswp__container,
.pswp__item,
.pswp__content,
.pswp__img,
.pswp__zoom-wrap {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

.pswp__img,
.pswp__zoom-wrap {
	width: auto;
	height: auto;
}

.pswp--click-to-zoom.pswp--zoom-allowed .pswp__img {
	cursor: -webkit-zoom-in;
	cursor: -moz-zoom-in;
	cursor: zoom-in;
}

.pswp--click-to-zoom.pswp--zoomed-in .pswp__img {
	cursor: move;
	cursor: -webkit-grab;
	cursor: -moz-grab;
	cursor: grab;
}

.pswp--click-to-zoom.pswp--zoomed-in .pswp__img:active {
  cursor: -webkit-grabbing;
  cursor: -moz-grabbing;
  cursor: grabbing;
}

/* :active to override grabbing cursor */
.pswp--no-mouse-drag.pswp--zoomed-in .pswp__img,
.pswp--no-mouse-drag.pswp--zoomed-in .pswp__img:active,
.pswp__img {
	cursor: -webkit-zoom-out;
	cursor: -moz-zoom-out;
	cursor: zoom-out;
}


/* Prevent selection and tap highlights */
.pswp__container,
.pswp__img,
.pswp__button,
.pswp__counter {
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

.pswp__item {
	/* z-index for fade transition */
	z-index: 1;
	overflow: hidden;
}

.pswp__hidden {
	display: none !important;
}

/* Allow to click through pswp__content element, but not its children */
.pswp__content {
  pointer-events: none;
}
.pswp__content > * {
  pointer-events: auto;
}


/*

  PhotoSwipe UI

*/

/*
	Error message appears when image is not loaded
	(JS option errorMsg controls markup)
*/
.pswp__error-msg-container {
  display: grid;
}
.pswp__error-msg {
	margin: auto;
	font-size: 1em;
	line-height: 1;
	color: var(--pswp-error-text-color);
}

/*
class pswp__hide-on-close is applied to elements that
should hide (for example fade out) when PhotoSwipe is closed
and show (for example fade in) when PhotoSwipe is opened
 */
.pswp .pswp__hide-on-close {
	opacity: 0.005;
	will-change: opacity;
	transition: opacity var(--pswp-transition-duration) cubic-bezier(0.4, 0, 0.22, 1);
	z-index: 10; /* always overlap slide content */
	pointer-events: none; /* hidden elements should not be clickable */
}

/* class pswp--ui-visible is added when opening or closing transition starts */
.pswp--ui-visible .pswp__hide-on-close {
	opacity: 1;
	pointer-events: auto;
}

/* <button> styles, including css reset */
.pswp__button {
	position: relative;
	display: block;
	width: 50px;
	height: 60px;
	padding: 0;
	margin: 0;
	overflow: hidden;
	cursor: pointer;
	background: none;
	border: 0;
	box-shadow: none;
	opacity: 0.85;
	-webkit-appearance: none;
	-webkit-touch-callout: none;
}

.pswp__button:hover,
.pswp__button:active,
.pswp__button:focus {
  transition: none;
  padding: 0;
  background: none;
  border: 0;
  box-shadow: none;
  opacity: 1;
}

.pswp__button:disabled {
  opacity: 0.3;
  cursor: auto;
}

.pswp__icn {
  fill: var(--pswp-icon-color);
  color: var(--pswp-icon-color-secondary);
}

.pswp__icn {
  position: absolute;
  top: 14px;
  left: 9px;
  width: 32px;
  height: 32px;
  overflow: hidden;
  pointer-events: none;
}

.pswp__icn-shadow {
  stroke: var(--pswp-icon-stroke-color);
  stroke-width: var(--pswp-icon-stroke-width);
  fill: none;
}

.pswp__icn:focus {
	outline: 0;
}

/*
	div element that matches size of large image,
	large image loads on top of it,
	used when msrc is not provided
*/
div.pswp__img--placeholder,
.pswp__img--with-bg {
	background: var(--pswp-placeholder-bg);
}

.pswp__top-bar {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 60px;
	display: flex;
  flex-direction: row;
  justify-content: flex-end;
	z-index: 10;

	/* allow events to pass through top bar itself */
	pointer-events: none !important;
}
.pswp__top-bar > * {
  pointer-events: auto;
  /* this makes transition significantly more smooth,
     even though inner elements are not animated */
  will-change: opacity;
}


/*

  Close button

*/
.pswp__button--close {
  margin-right: 6px;
}


/*

  Arrow buttons

*/
.pswp__button--arrow {
  position: absolute;
  top: 0;
  width: 75px;
  height: 100px;
  top: 50%;
  margin-top: -50px;
}

.pswp__button--arrow:disabled {
  display: none;
  cursor: default;
}

.pswp__button--arrow .pswp__icn {
  top: 50%;
  margin-top: -30px;
  width: 60px;
  height: 60px;
  background: none;
  border-radius: 0;
}

.pswp--one-slide .pswp__button--arrow {
  display: none;
}

/* hide arrows on touch screens */
.pswp--touch .pswp__button--arrow {
  visibility: hidden;
}

/* show arrows only after mouse was used */
.pswp--has_mouse .pswp__button--arrow {
  visibility: visible;
}

.pswp__button--arrow--prev {
  right: auto;
  left: 0px;
}

.pswp__button--arrow--next {
  right: 0px;
}
.pswp__button--arrow--next .pswp__icn {
  left: auto;
  right: 14px;
  /* flip horizontally */
  transform: scale(-1, 1);
}

/*

  Zoom button

*/
.pswp__button--zoom {
  display: none;
}

.pswp--zoom-allowed .pswp__button--zoom {
  display: block;
}

/* "+" => "-" */
.pswp--zoomed-in .pswp__zoom-icn-bar-v {
  display: none;
}


/*

  Loading indicator

*/
.pswp__preloader {
  position: relative;
  overflow: hidden;
  width: 50px;
  height: 60px;
  margin-right: auto;
}

.pswp__preloader .pswp__icn {
  opacity: 0;
  transition: opacity 0.2s linear;
  animation: pswp-clockwise 600ms linear infinite;
}

.pswp__preloader--active .pswp__icn {
  opacity: 0.85;
}

@keyframes pswp-clockwise {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}


/*

  "1 of 10" counter

*/
.pswp__counter {
  height: 30px;
  margin-top: 15px;
  margin-inline-start: 20px;
  font-size: 14px;
  line-height: 30px;
  color: var(--pswp-icon-color);
  text-shadow: 1px 1px 3px var(--pswp-icon-color-secondary);
  opacity: 0.85;
}

.pswp--one-slide .pswp__counter {
  display: none;
}

/* End */


/* Start:/local/templates/common/css/contacts.css?176671265616633*/
.contacts__address,
.afisha,
.contacts__sort {
	border-radius: 40px;
	display: flex;
	flex-direction: column;
	padding: 40px;
}

.contacts__address {
	background: #E4ECEE;
}

.contacts__address-item,
.contacts__sort-item {
	margin-bottom: 32px;
}

.contacts__library .contacts__sort-item {
	margin-bottom: 0;
}

.contacts__sort-item:last-child {
	margin-bottom: 0;
}

.afisha__item {
	padding: 32px 0;
	border-top: 1px solid #B4BABC;
}

.contacts__address-title,
.afisha__item-title {
	font-weight: 400;
	font-size: 24px;
	line-height: 28px;
	color: var(--color-black);
	margin: 0;
}

.contacts__address-title a {
	display: flex;
	text-decoration: none;
	color: var(--color-black);
	transition: 0.3s;
}

.contacts__address-title a:hover {
	color: var(--color-dark-blue-gray);
}

.contacts__address-title img {
	min-width: 24px;
	width: 24px;
	object-fit: contain;
	margin-right: 20px;
}

.contacts__address-text,
.contacts__address-phone,
.afisha__item-date {
	font-weight: 400;
	font-size: 20px;
	line-height: 24px;
	color: #5B5E5F;
}

.contacts__address-text,
.afisha__item-text,
.afisha__item-date {
	margin: 20px 0 0 0;
}

.contacts__address-phone {
	margin: 8px 0 0 0;
}

.contacts__address-item:first-child,
.afisha__item:first-child {
	padding-top: 0;
	border-top: 0;
}

.contacts__address-item:last-child,
.afisha__item:last-child {
	padding-bottom: 0;
}

.afisha {
	background: var(--color-soft-pink);
}

.afisha__item-text {
	font-size: 16px;
	line-height: 20px;
	color: #322F2D;
}

.afisha__item-date {
	color: #645D5A;
}

.lib-capab__fon {
	padding: 100px 0;
	background: #E4ECEE;
}

.lib-capab__video,
.lib-capab__video iframe {
	border-radius: 40px;
}

.lib-capab__video {
	display: flex;
	position: relative;
	width: 100%;
	padding-bottom: 56.25%;
	height: 0;
	overflow: hidden;
}

.lib-capab__video iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

/* new */
.contacts__tabs {
	justify-content: space-between;
}

.contacts__sort {
	background: var(--color-soft-pink);
}

.contacts__sort-item {
	border-radius: 40px;
	background: var(--color-white);
}

.contacts__sort-item:first-child {
	padding-top: 0;
	border: none;
}

.contacts__sort-line {
	display: flex;
	align-items: flex-start;
	flex-wrap: wrap;
	gap: 20px;
	padding: 28px 20px 20px;
	/*background: var(--color-white);*/
	font-family: var(--second-family);
}

.contacts__sort-line:first-child {
	justify-content: space-between;
}

.contacts__line-block {
	width: 24%;
}

.biblio-list .contacts__sort-line:last-child .contacts__line-block {
	width: 38%;
}

.contacts__line-block.addr-section,
.biblio-list .contacts__sort-line:nth-child(3) .contacts__line-block:first-child {
	width: 30%;
}

.contacts__line-block.work-hours,
.biblio-list .contacts__sort-line:nth-child(3) .contacts__line-block:nth-child(2) {
	width: 36%;
}

.contacts__line-head {
	display: flex;
	align-items: center;
}

.contacts__line-head h4 {
	margin-right: 10px;
}

/*.contacts__sort-line .contacts__line-block {
	margin-bottom: 2em;
}*/
.contacts__line-block-title {
	position: relative;
	display: flex;
	align-items: center;
	margin-bottom: 10px;
	font-size: 20px;
	font-weight: 500;
}

.biblio-list .contacts__line-block-title {
	font-family: var(--second-family);
	font-size: 18px;
}

.contacts__line-block.work-hours .contacts__line-block-title {
	margin-bottom: 1px;
}

h4.contacts__line-block-title {
	margin-top: 0;
	font-size: 30px;
	font-weight: 500;
	line-height: normal;
	color: var(--color-dark-blue-gray);
}

.contacts__line-block a {
	text-decoration: none;
	color: var(--color-black);
	transition: 0.3s;
}

.contacts__line-block p {
	margin-top: 0;
	font-size: 18px;
	line-height: 26px;
}

.contacts__addr,
.contacts__hours {
	white-space: nowrap;
}

.contacts__line-block-email {
	padding-bottom: 3px;
	border-bottom: 1px solid var(--color-black);
	transition: 0.3s;
}

.contacts__help-icon {
	/* position: absolute;
	top: -6px;
	right: 20%; */
	display: flex;
	justify-content: center;
	align-items: center;
	width: 34px;
	height: 34px;
	margin-left: 1em;
	background: #EFEFEF;
	border-radius: 50%;
	cursor: pointer;
}

.contacts__help-descr {
	display: none;
	position: absolute;
	top: 50px;
	padding: 10px;
	background: #EFEFEF;
	font-size: 18px !important;
}

.contacts__help-icon:hover+.contacts__help-descr {
	display: block;
}

.contacts__sort-line:last-child .contacts__line-block-title {
	/* min-height: 70px; */
	font-size: 18px;
	/*text-transform: uppercase;*/
}

.contacts__sort-line:last-child .contacts__line-block {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	align-self: stretch;
}

.contacts__sort-line.contacts__people .contacts__line-block-name {
	/* margin: 0 0 -6px; */
	font-size: 18px;
	font-weight: bold;
	line-height: normal;
	margin-bottom: 10px;
}

.contacts__sort-line.contacts__people .contacts__line-block-phone {
	margin-bottom: 0px;
}

.contacts__library-bot .contacts__sort-line {
	justify-content: start;
}

.contacts__library .contacts__library-bot {
	margin-top: 1em;
}

.contacts__library .contacts__sort-line:first-child .contacts__line-block {
	display: inline-flex;
	flex-direction: column;
	align-items: center;
	justify-content: start;
	width: 30%;
}

.contacts__library .contacts__library-bot .contacts__line-block {
	align-items: start !important;
}

.contacts__library .contacts__sort-line:first-child .contacts__line-block:nth-child(2) {
	width: 36%;
}

.contacts__library .contacts__library-bot {
	border: none;
}

.contacts__library .contacts__library-bot .contacts__line-block {
	width: 35% !important;
}

.contacts__library .contacts__library-bot .contacts__line-block-title+div {
	display: flex;
	flex-direction: column;
	align-self: self-start;
}

.contacts__library .contacts__sort-line .contacts__line-block {
	margin-bottom: 0;
}

.contacts__library .contacts__sort-item {
	padding-bottom: 0;
}

.contacts__special {
	margin: 1em 0 0;
	border-radius: 40px;
	background: var(--color-dark-blue-gray);
	color: #fff;
}

.contacts__special .contacts__sort-line {
	flex-direction: column;
	justify-content: start;
	align-items: center;
}

.contacts__library .contacts__line-block-title {
	font-size: 20px !important;
}

.contacts__special .contacts__line-block-text {
	font-size: 18px !important;
}

.contacts__line-block-email:hover,
.contacts__line-block-phone a:hover {
	color: var(--color-dark-blue-gray);
}

.contacts__sort-adm .contacts__line-block {
	width: 23%;
}

.prof-list .contacts__sort-adm .contacts__line-block {
	width: 32%;
}

.contacts__sort-adm .contacts__sort-line:first-child {
	padding-bottom: 0;
}

.contacts__sort-adm .contacts__sort-line:first-child .contacts__line-block {
	width: 100%;
	margin-bottom: 0;
}

.contacts__sort-adm .contacts__sort-line:first-child .contacts__line-block-title {
	margin-bottom: 0;
}

.contacts__sort-adm .contacts__line-block-name {
	font-size: 18px;
	font-weight: bold;
}

.contacts__sort-adm .contacts__line-block-phone {
	font-size: 18px;
}

.contacts__sort-adm .contacts__line-block a {
	padding-bottom: 2px;
	border-bottom: 1px solid var(--color-black);
}

.contacts__sort-adm .contacts__line-block a:hover {
	border-color: var(--color-dark-blue-gray);
}

.contacts__line-block span {
	display: flex;
}

.contacts__form {
	position: relative;
	display: flex;
	height: 430px;
	padding: 0 100px;
	border: 1px solid var(--color-soft-pink);
	border-radius: 40px;
	background: var(--color-white);
	font-family: var(--second-family);
}

.contacts__form-inner {
	display: flex;
	flex-direction: column;
	justify-content: center;
	width: 45%;
}

.contacts__form-descr {
	margin: 30px 0;
	font-size: 20px;
	line-height: 32px;
}

.contacts__form-buttons a {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 80%;
	min-width: 302px;
	height: 55px;
	border: 1px solid var(--color-black);
	border-radius: 999px;
	background: var(--color-white);
	font-size: 16px;
	color: var(--color-black);
	text-transform: uppercase;
	text-decoration: none;
	transition: background-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease, border-color 0.25s ease;
}

.contacts__form-buttons a:hover {
	background: var(--color-soft-pink);
	box-shadow: 0 14px 30px rgba(0, 0, 0, 0.10);
	transform: translateY(-1px);
}

.contacts__form-buttons a:active {
	transform: translateY(0);
	box-shadow: none;
}

.contacts__form-buttons a:focus-visible {
	outline: 3px solid var(--color-soft-pink);
	outline-offset: 3px;
}

.contacts__form-buttons a:first-child {
	margin-bottom: 20px;
}

.contacts__form-phone {
	position: absolute;
	top: 0;
	right: 200px;
	width: 200px;
	height: 100%;
}

.contacts__form-phone img {
	position: absolute;
}

.contacts__form-phone img:first-child {
	top: 45px; 
}

.contacts__form-phone img:last-child {
	width: 340px;
	right: 40px;
	bottom: 22px;
}

.feedback__form {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 999;
	align-items: center;
	justify-content: center;
	width: 100vw;
	height: 100vh;
	padding: 0 20px;
	background-color: rgba(0, 0, 0, 0.5);
	transition: 0.3s;
}

.feedback__form {

	align-items: baseline !important;
	justify-content: center;
	width: 100vw;
	height: 100vh;
	padding: 0 20px;
	background-color: rgba(0, 0, 0, 0.5);
	transition: 0.3s;
	position: fixed;
	z-index: 100;

	overflow: scroll;
	font-family: Arial, sans-serif;
}

.feedback__form.active {
	display: flex;
}

.feedback__form-inner {
	position: relative;
	padding: 4em;
	background: var(--color-soft-pink);
	border-radius: 40px;
	font-family: var(--second-family);
	margin-top: 40px;
}

.feedback__form-inner .form-group:last-child {
	margin-bottom: 0 !important;
}

.feedback__form-inner .form-group label {
	font-size: 18px;
}

.feedback__form-inner .form-group.agree label {
	font-size: 16px;
}

.feedback__form-inner .form-group.agree label::before {
	margin-top: 2px !important;
	-webkit-box-shadow: 0 0 0 1px var(--color-dark-blue-gray) !important;
	box-shadow: 0 0 0 1px var(--color-dark-blue-gray) !important;
}

.feedback__form-inner .form-group .c-checkbox input[type="checkbox"]:checked+label:after {
	top: 6px !important;
	background: var(--color-dark-blue-gray) !important;
}

.feedback__form-inner .form-group input[type="text"],
.feedback__form-inner .form-group textarea {
	padding: 0 0.5em;
	border-color: var(--color-dark-blue-gray) !important;
	border-radius: 8px !important;
}

.feedback__form-inner .form-group textarea {
	resize: none;
	padding: 0.5em;
}

.feedback__close {
	position: absolute;
	top: 2em;
	right: 2em;
	color: var(--color-black);
	cursor: pointer;
	transition: 0.3s;
}

.feedback__close:hover {
	color: var(--color-dark-blue-gray);
	transform: scale(1.2);
}

.feedback__form .js-interlabs-feedbackform__dialog__send-button {
	display: block;
	margin: 0 auto;
	border: 1px solid var(--color-dark-blue-gray) !important;
	background: var(--color-dark-blue-gray) !important;
	color: var(--color-white) !important;
	padding: 6px 14px !important;
	border-radius: 13px !important;
}

.feedback__form .js-interlabs-feedbackform__dialog__send-button:hover {
	background: var(--color-white) !important;
	color: var(--color-dark-blue-gray) !important;
}

.interlabs-feedbackform__container .interlabs-feedbackform__container-succsess {
	font-size: 20px;
	text-align: center;
}

.contacts__special .contacts__line-block-title {
	margin-bottom: -5px;
}

.biblio-list .contacts__special {
	border-top-left-radius: 0;
	border-top-right-radius: 0;
}

@media(max-width: 1600px) {
	.map__container {
		height: 480px;
	}

	.contacts__address,
	.afisha {
		padding: 40px 35px;
	}
}

@media(max-width: 1500px) {
	.map__container {
		height: 400px;
	}

	.contacts__address,
	.afisha {
		padding: 40px 30px;
	}

	.contacts__address-item,
	.afisha__item {
		padding: 25px 0;
	}

	.lib-capab__fon {
		padding: 80px 0;
	}

	.contacts__address-title,
	.afisha__item-title {
		font-size: 22px;
		line-height: 26px;
	}

	.contacts__address-title img {
		margin-right: 15px;
	}

	.contacts__address-text,
	.contacts__address-phone,
	.afisha__item-date {
		font-size: 18px;
		line-height: 22px;
	}
}

@media(max-width: 1239px) {
	.container.contacts__form {
		max-width: fit-content;
		margin: 0 2em;
	}

	.contacts__form-inner {
		width: 70%;
	}

	.contacts__form-buttons a {
		width: 50%;
	}

	.contacts__form-phone {
		right: 40px;
	}

	.contacts__sort-adm .contacts__line-block {
		width: 30%;
	}

	.biblio-list .contacts__sort-line:nth-child(3) .contacts__line-block,
	.contacts__line-block.work-hours {
		width: 40%;
	}
}

@media(max-width: 1199px) {
	.contacts__library .contacts__sort-line:first-child .contacts__line-block:nth-child(2) {
		width: 390px;
	}
}

@media(max-width: 1023px) {
	.contacts__form-phone img:last-child {
		width: 220px;
	}

	.contacts__sort-line { 
		flex-wrap: wrap;
		padding: 16px 20px 10px;
	}

	.contacts__sort-line .contacts__line-block,
	.biblio-list .contacts__sort-line:nth-child(3) .contacts__line-block,
	.contacts__line-block.work-hours,
	.prof-list .contacts__sort-adm .contacts__line-block,
	.biblio-list .contacts__sort-line:nth-child(3) .contacts__line-block:first-child,
	.biblio-list .contacts__sort-line:nth-child(3) .contacts__line-block:nth-child(2) {
		width: 48%;
	}

	.contacts__sort-line:first-child .contacts__line-block:first-child {
		width: 100%;
	}

	.contacts__form {
		height: auto;
		padding-top: 2em;
		padding-bottom: 2em;
	}

	.contacts__form-inner {
		width: 55%;
	}

	.contacts__library .contacts__sort-line .contacts__line-block {
		width: 100% !important;
		margin-bottom: 1em !important;
	}

	.contacts__library .contacts__line-block p {
		text-align: center;
	}
}

@media(max-width: 767px) {

	.contacts__address,
	.afisha {
		padding: 20px 20px;
	}

	.contacts__address-title,
	.afisha__item-title {
		font-size: 20px;
		line-height: 24px;
	}

	.contacts__address-title img {
		margin-right: 10px;
	}

	.contacts__address-text,
	.contacts__address-phone,
	.afisha__item-date {
		font-size: 17px;
		line-height: 21px;
	}

	/*
	.contacts__sort-line .contacts__line-block {
		width: 49%;
		margin-bottom: 2em;
	}*/
	.contacts__sort-line .contacts__line-block,
	.biblio-list .contacts__sort-line:nth-child(3) .contacts__line-block,
	.contacts__line-block.work-hours,
	.prof-list .contacts__sort-adm .contacts__line-block,
	.biblio-list .contacts__sort-line:nth-child(3) .contacts__line-block:first-child,
	.biblio-list .contacts__sort-line:nth-child(3) .contacts__line-block:nth-child(2),
	.contacts__sort-line:first-child .contacts__line-block:first-child {
		width: 100%;
	}

	.contacts__form-phone {
		width: 150px;
	}

	.contacts__form-phone img:first-child {
		height: 240px;
	}

	.contacts__form-phone img:last-child {
		top: 280px;
		bottom: auto;
	}
}

@media(max-width: 640px) {
	.feedback__form-inner {
		width: 90%;
		padding: 1em 1.5em;
	}
}

@media(max-width: 599px) {
	.contacts__sort-line .contacts__line-block {
		width: 100%;
		margin-bottom: 0;
	}

	.contacts__sort-line:first-child .contacts__line-block:first-child {
		margin-bottom: 1em;
	}

	.contacts__sort {
		padding: 20px;
	}

	.container.contacts__form {
		max-width: 98%;
		margin: auto;
	}

	.contacts__line-head {
		flex-direction: column;
		align-items: start;
	}

	h4.contacts__line-block-title {
		font-size: 26px;
	}
}

@media(max-width: 575px) {
	.map__container {
		height: 386px;
	}

	.contacts__form-inner,
	.contacts__form-buttons {
		width: 100%;
	}

	.contacts__form-buttons a {
		width: 100%;
		height: 48px;
	}

	.contacts__form-descr {
		padding-right: 35%;
	}

	.contacts__form-descr {
		font-size: 16px;
		line-height: 26px;
	}

	.contacts__form-phone {
		width: 95px;
	}

	.contacts__form-phone img:first-child {
		height: 165px;
	}

	.contacts__form-phone img:last-child {
		width: 100px;
		right: 25px;
		top: 204px;
	}

	.contacts__special .contacts__line-block-title,
	.contacts__special .contacts__line-block-text,
	.contacts__library .contacts__line-block-title {
		text-align: center;
	}

	.contacts__special .contacts__line-block-text {
		margin-top: 0;
	}

	.contacts__library .contacts__line-block p span {
		display: inline;
	}

	.contacts__library .contacts__library-bot .contacts__line-block {
		align-items: center !important;
	}

	.contacts__library .contacts__library-bot .contacts__line-block-title+div {
		align-self: center;
	}

	.contacts__addr {
		white-space: normal;
	}
}

@media(max-width: 469px) {
	.contacts__form-phone {
		right: 20px;
		width: 50px;
	}

	.contacts__form-phone img:first-child {
		top: 90px;
		height: 110px;
		transform: none;
	}

	.contacts__form-phone img:last-child {
		display: none;
	}

	.contacts__hours {
		font-size: 14px !important;
	}
}
/* End */


/* Start:/bitrix/components/interlabs/feedbackform/templates/event_register/style.css?173451282912396*/
.interlabs-feedbackform__container {
	font-style: normal;
	font-weight: normal;
	line-height: 25px;
	font-size: 14px;
	color: #333333;
}
.interlabs-feedbackform__container .hidden {
	display: none;	
}
.interlabs-feedbackform__container .interlabs-feedbackform__container__dialog {
	padding-top: 28px;
}
.interlabs-feedbackform__container .interlabs-feedbackform__container__dialog .header {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
		-ms-flex-direction: row;
			flex-direction: row;
	-webkit-box-pack: justify;
		-ms-flex-pack: justify;
			justify-content: space-between;
}
.interlabs-feedbackform__container .interlabs-feedbackform__container__dialog .header label {
	font-style: normal;
	font-weight: 500;
	line-height: 34px;
	font-size: 24px;
	color: #000000;
	margin-right: 12px;
}
.interlabs-feedbackform__container .interlabs-feedbackform__container__dialog .header .js-interlabs-feedbackform__dialog__close {
	cursor: pointer;
	display: none;
}
.interlabs-feedbackform__container .interlabs-feedbackform__container__dialog .body .form-group {
	margin-bottom: 17px;
}
.interlabs-feedbackform__container .interlabs-feedbackform__container__dialog .body .form-group .field-required {
	color: #EB5757;
}
.interlabs-feedbackform__container .interlabs-feedbackform__container__dialog .body .form-group label:nth-child(1) {
	width: 100%;
	font-style: normal;
	font-weight: normal;
	line-height: 25px;
	font-size: 14px;
	color: #333333;
	margin-bottom: 0;
}
.interlabs-feedbackform__container .interlabs-feedbackform__container__dialog .body .form-group input[type="text"] {
	margin-bottom: 0;
	height: 36px;
	background: #F8FAFC;
	border: 1px solid #D5DADC;
	-webkit-box-sizing: border-box;
			box-sizing: border-box;
	border-radius: 2px;
	width: 100%;
}
.interlabs-feedbackform__container .interlabs-feedbackform__container__dialog .body .form-group input[type="text"].date {
	width: 75px;
}
.interlabs-feedbackform__container .interlabs-feedbackform__container__dialog .body .form-group select {
	width: 30%;
	color: #828282;
	border: 1px solid #D5DADC;
	-webkit-box-sizing: border-box;
			box-sizing: border-box;
	border-radius: 2px;
	padding-left: 13px;
	height: 36px;
	-moz-appearance: none;
	/* Firefox */
	-webkit-appearance: none;
	/* Safari and Chrome */
	appearance: none;
	background: url("/bitrix/components/interlabs/feedbackform/templates/event_register/image/select-arrow.png") no-repeat 97% 55%;
	background-color: #F8FAFC;
	text-align: left;
	text-align-last: left;
	padding-right: 18px;
}
.interlabs-feedbackform__container .interlabs-feedbackform__container__dialog .body .form-group .file {
	margin-top: 6px;
}
.interlabs-feedbackform__container .interlabs-feedbackform__container__dialog .body .form-group .file input[type="file"] {
	display: none;
}
.interlabs-feedbackform__container .interlabs-feedbackform__container__dialog .body .form-group .file a {
	padding: 10px 30px;
	border: 1px solid #159EBB;
	-webkit-box-sizing: border-box;
			box-sizing: border-box;
	border-radius: 2px;
	font-style: normal;
	font-weight: normal;
	line-height: 25px;
	font-size: 14px;
	text-align: center;
	color: #159EBB;
}
.interlabs-feedbackform__container .interlabs-feedbackform__container__dialog .body .form-group .file label {
	color: #828282;
	margin-left: 12px;
	font-weight: normal;
}
.interlabs-feedbackform__container .interlabs-feedbackform__container__dialog .body .form-group .file label.selected {
	color: #333333;
}
.interlabs-feedbackform__container .interlabs-feedbackform__container__dialog .body .form-group textarea {
	width: 100%;
	height: 180px;
	background: #F8FAFC;
	border: 1px solid #D5DADC;
	-webkit-box-sizing: border-box;
			box-sizing: border-box;
	border-radius: 2px;
}
.interlabs-feedbackform__container .interlabs-feedbackform__container__dialog .body .form-group .captcha {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
		-ms-flex-direction: row;
			flex-direction: row;
	-webkit-box-pack: justify;
		-ms-flex-pack: justify;
			justify-content: space-between;
}
.interlabs-feedbackform__container .interlabs-feedbackform__container__dialog .body .form-group .captcha input[type="text"] {
	width: 75%;
}
.interlabs-feedbackform__container .interlabs-feedbackform__container__dialog .body .form-group .captcha img {
	width: 180px;
	height: 40px;
}
.interlabs-feedbackform__container .interlabs-feedbackform__container__dialog .body .form-group .c-checkbox input[type="checkbox"] {
	position: absolute;
	opacity: 0;
	z-index: 99;
	margin-top: 5px;
}
.interlabs-feedbackform__container .interlabs-feedbackform__container__dialog .body .form-group .c-checkbox input[type="checkbox"] + label {
	position: relative;
	cursor: pointer;
	padding: 0;
	font-weight: normal;
}
.interlabs-feedbackform__container .interlabs-feedbackform__container__dialog .body .form-group .c-checkbox input[type="checkbox"] + label:before {
	content: '';
	margin-right: 10px;
	display: inline-block;
	vertical-align: text-top;
	width: 16px;
	height: 16px;
	background: white;
	-webkit-box-shadow: 0 0 0 1px #D5DADC;
			box-shadow: 0 0 0 1px #D5DADC;
	border-radius: 2px;
	margin-top: -1px;
	background: #F8FAFC;
}
.interlabs-feedbackform__container .interlabs-feedbackform__container__dialog .body .form-group .c-checkbox input[type="checkbox"]:focus + label:before {
	-webkit-box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.12);
			box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.12);
}
.interlabs-feedbackform__container .interlabs-feedbackform__container__dialog .body .form-group .c-checkbox input[type="checkbox"]:disabled + label {
	color: #b8b8b8;
	cursor: auto;
}
.interlabs-feedbackform__container .interlabs-feedbackform__container__dialog .body .form-group .c-checkbox input[type="checkbox"]:disabled + label:before {
	-webkit-box-shadow: none;
			box-shadow: none;
	background: #ddd;
}
.interlabs-feedbackform__container .interlabs-feedbackform__container__dialog .body .form-group .c-checkbox input[type="checkbox"]:checked + label:after {
	content: '';
	position: absolute;
	left: 4px;
	top: 8px;
	background: #159EBB;
	border-radius: 1px;
	width: 8px;
	height: 8px;
	display: block;
}
.interlabs-feedbackform__container .interlabs-feedbackform__container__dialog .body .form-group .c-radio input[type="radio"] {
	position: absolute;
	opacity: 0;
	z-index: 99;
	margin-top: 5px;
}
.interlabs-feedbackform__container .interlabs-feedbackform__container__dialog .body .form-group .c-radio input[type="radio"] + label {
	position: relative;
	cursor: pointer;
	padding: 0;
	font-weight: normal;
}
.interlabs-feedbackform__container .interlabs-feedbackform__container__dialog .body .form-group .c-radio input[type="radio"] + label:before {
	content: '';
	margin-right: 10px;
	display: inline-block;
	vertical-align: text-top;
	width: 16px;
	height: 16px;
	background: white;
	-webkit-box-shadow: 0 0 0 1px #D5DADC;
			box-shadow: 0 0 0 1px #D5DADC;
	border-radius: 8px;
	margin-top: -1px;
	background: #F8FAFC;
}
.interlabs-feedbackform__container .interlabs-feedbackform__container__dialog .body .form-group .c-radio input[type="radio"]:focus + label:before {
	-webkit-box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.12);
			box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.12);
}
.interlabs-feedbackform__container .interlabs-feedbackform__container__dialog .body .form-group .c-radio input[type="radio"]:disabled + label {
	color: #b8b8b8;
	cursor: auto;
}
.interlabs-feedbackform__container .interlabs-feedbackform__container__dialog .body .form-group .c-radio input[type="radio"]:disabled + label:before {
  -webkit-box-shadow: none;
          box-shadow: none;
  background: #ddd;
}
.interlabs-feedbackform__container .interlabs-feedbackform__container__dialog .body .form-group .c-radio input[type="radio"]:checked + label:after {
	content: '';
	position: absolute;
	left: 4px;
	top: 8px;
	background: #70BB18;
	border-radius: 4px;
	width: 8px;
	height: 8px;
	display: block;
}
.interlabs-feedbackform__container .interlabs-feedbackform__container__dialog .body .form-group.agree a {
	color: #159EBB;
}
.interlabs-feedbackform__container .interlabs-feedbackform__container__dialog .body .form-group.agree .c-checkbox {
	display: inline-block;
}
.interlabs-feedbackform__container .interlabs-feedbackform__container__dialog .body input[type="submit"],
.interlabs-feedbackform__container .interlabs-feedbackform__container__dialog .body .js-interlabs-feedbackform__dialog__send-button,
.interlabs-feedbackform__container .interlabs-feedbackform__container__dialog .body .interlabs-feedbackform__container-succsess__close {
	width: 144px;
	height: 36px;
	background: var(--color-white);
	border-radius: 2px;
	border: 1px solid var(--color-black);
	color: #000;
	font-style: normal;
	font-weight: normal;
	line-height: 25px;
	font-size: 14px;
	text-align: center;
	text-transform: uppercase;
	cursor: pointer;
	transition: 0.3s;
}
.interlabs-feedbackform__container .interlabs-feedbackform__container__dialog .body .js-interlabs-feedbackform__dialog__send-button:hover {
	background-color: var(--color-black);
	color: #fff;
}
.interlabs-feedbackform__container .interlabs-feedbackform__container__dialog .error {
	color: #EB5757;
	margin-left: 12px;
}
.interlabs-feedbackform__container .interlabs-feedbackform__container__dialog .interlabs-feedbackform__container__errors .interlabs-feedbackform__container__errors__item {
	font-style: normal;
	font-weight: normal;
	line-height: 33px;
	font-size: 14px;
	color: #EB5757;
	margin-bottom: 18px;
}
.interlabs-feedbackform__container .interlabs-feedbackform__container-succsess {
	color: #70BB18;
	margin: 0 0 20px;
}
.interlabs-feedbackform__container .interlabs__info-dialog {
	background: #FFFFFF;
	-webkit-box-shadow: 0px 0px 16px rgba(0, 0, 0, 0.1);
			box-shadow: 0px 0px 16px rgba(0, 0, 0, 0.1);
	padding-left: 28px;
	padding-top: 28px;
	padding-right: 32px;
	padding-bottom: 39px;
	max-height: 480px;
	max-width: 540px;
	position: fixed;
	z-index: 9998;
	top: 30%;
	left: 30%;
}
.interlabs-feedbackform__container .interlabs__info-dialog.hidden {
	display: none;
}
.interlabs-feedbackform__container .interlabs__info-dialog .scroll-area {
	height: 300px;
	overflow-y: auto;
}
.interlabs-feedbackform__container .interlabs__info-dialog .header {
	border-bottom: 1px solid #70BB18;
	min-height: 48px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
		-ms-flex-pack: justify;
			justify-content: space-between;
	-webkit-box-align: center;
		-ms-flex-align: center;
			align-items: center;
}
.interlabs-feedbackform__container .interlabs__info-dialog .header label {
	font-style: normal;
	font-weight: 500;
	line-height: 34px;
	font-size: 24px;
	color: #000000;
	margin-right: 12px;
}
.interlabs-feedbackform__container .interlabs__info-dialog .header .close-dialog {
  	cursor: pointer;
}
.interlabs-feedbackform__container .interlabs__info-dialog .body .form-group {
  	margin-bottom: 28px;
}
.interlabs-feedbackform__container .interlabs__info-dialog .body .form-group .btn.btn-close {
	width: 144px;
	height: 36px;
	background: #70BB18;
	border-radius: 2px;
	border: none;
	color: #F2F2F2;
	font-style: normal;
	font-weight: normal;
	line-height: 25px;
	font-size: 14px;
	text-align: center;
	text-transform: uppercase;
}
@media screen and (min-width: 0px) and (max-width: 800px) {
	.interlabs-feedbackform__container .interlabs-feedbackform__container__dialog .body .form-group textarea {
		height: 120px;
	}
	.interlabs-feedbackform__container .interlabs-feedbackform__container__dialog .body .form-group .captcha {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-orient: vertical;
		-webkit-box-direction: reverse;
			-ms-flex-direction: column-reverse;
				flex-direction: column-reverse;
		-webkit-box-pack: justify;
			-ms-flex-pack: justify;
				justify-content: space-between;
	}
	.interlabs-feedbackform__container .interlabs-feedbackform__container__dialog .body .form-group .captcha input[type="text"] {
		width: 100%;
		margin-top: 12px;
	}
	.interlabs-feedbackform__container .interlabs-feedbackform__container__dialog .body .form-group .captcha img {
		width: 180px;
		height: 40px;
	}
	.interlabs-feedbackform__container .interlabs__info-dialog {
		top: 50px;
		left: 0;
	}
	.interlabs-feedbackform__container .interlabs__info-dialog .scroll-area {
		height: 150px;
	}
}

/* End */
/* /local/components/mob.top/events.detail/templates/.default/style.css?17352811301349 */
/* /local/templates/common/js/photoswipe/photoswipe.css?17346976767026 */
/* /local/templates/common/css/contacts.css?176671265616633 */
/* /bitrix/components/interlabs/feedbackform/templates/event_register/style.css?173451282912396 */
