

/* Start:/local/templates/.default/components/bitrix/system.pagenavigation/.default/style.css?17645918821353*/
.pagenavigation {
    position: relative;
    display: flex;
    align-items: center;
    flex-flow: row nowrap;
    height: 40px;
    max-width: max-content;
    margin-left: auto;
    margin-top: 30px;
    margin-bottom: 20px;
}

.pagenavigation a:after {
    content: none;
}

.pagenavigation_arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 100%;
    opacity: 1;
    background: var(--button-color);
    background-size: 100% 100%;
    pointer-events: none;
}

.pagenavigation_arrow:hover {
    font-weight: bold;
    color: #000;
    background: var(--button-hover-color);
}

.pagenavigation_arrow.page-prev {
    left: 0;
}

.pagenavigation_arrow.page-next {
    right: 0;
}

.pagenavigation_arrow.active {
    pointer-events: auto;
}

.pagenavigation_page {
    width: 40px;
    height: 40px;
    background: none;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    opacity: .6;
    font-size: 16px;
    font-weight: 400;
    color: var(--text-color);
}

.pagenavigation_page:hover {
    font-weight: bold;
}

.pagenavigation_page.active {
    opacity: 1;
    font-weight: bold;
}

.pagenavigation_page:before {
    content: none;
}

/*# sourceMappingURL=style.css.map */

/* End */


/* Start:/local/templates/main/components/bitrix/news.list/vacancies/style.css?17645918401084*/
.vacancies-wrap .list .block {
  border-bottom: 1px solid; }
  .vacancies-wrap .list .block.open .name:after {
    transform: translateY(-50%) rotate(90deg); }
  .vacancies-wrap .list .block .name {
    font-size: 18px;
    font-weight: bold;
    padding: 20px 25px 20px 70px;
    background: #eff0f6;
    cursor: pointer;
    position: relative; }
    .vacancies-wrap .list .block .name:after {
      content: "";
      position: absolute;
      background: url("/local/templates/main/components/bitrix/news.list/vacancies/images/arrow-vacancy.png") center no-repeat;
      height: 32px;
      width: 32px;
      top: 50%;
      transform: translateY(-50%);
      left: 25px;
      transition: all 0.2s linear 0s; }
  .vacancies-wrap .list .block .text-preview {
    padding: 20px 25px;
    display: none;
    background-color: white; }
    .vacancies-wrap .list .block .text-preview .vacancy-info .properties .prop {
      margin-top: 15px; }
      .vacancies-wrap .list .block .text-preview .vacancy-info .properties .prop span:first-child {
        font-weight: bold; }

/*# sourceMappingURL=style.css.map */

/* End */


/* Start:/local/templates/.default/components/uw/form.result.new/call/style.css?17645918822941*/
/*
.call {
  width : 100%;margin-bottom : 50px;

  & > div {
	text-align : center;

	span {
	  color : var(--main-color);
	}

	a {
	  font-size : 18px;
	  color     : var(--text-color);

	  &:after {
		content : none;
	  }
	}
  }

  .title {
	text-align  : center;
	font-size   : 44px;
	font-weight : 700;
	color       : var(--main-color);
  }

  form {
	width     : 100%;
	display   : flex;
	flex-flow : wrap row;
	gap       : 30px;

	label {
	  flex : 1 0 40%;

	  input {
		width            : 100%;
		height           : 100%;
		padding-left     : 25px;
		border           : 1px solid var(--text-light-color);
		border-radius    : 0;
		background-color : var(--white);
	  }

	  &.input {
		height : 45px;

		&:last-child {
		  margin-right : 0;
		}
	  }

	  &.file {
		display          : flex;
		align-items      : center;
		padding-left     : 25px;
		border           : 1px solid var(--text-light-color);
		background-color : var(--white);
		font-size: 16px;
		color: var(--input-placeholder-color);

		input {
		  opacity: 0;
		  appearance : none;
		  width      : 0%;
		  height     : 100%;
		  padding    : 0;
		  margin     : 0;
		}
	  }

	  &.textarea {
		flex : 100%;
	  }

	  &.checkbox {
		flex : 1 0 0%;
		display : flex;
		align-items: center;

		input {
		  opacity: 0;
		  appearance : none;
		  width      : 0%;
		  height     : 0%;
		  padding    : 0;
		  margin     : 0;
		}

		span {
		  position     : relative;
		  padding-left : 30px;
		  line-height  : 1.5;

		  &:before {
			content    : "";
			position   : absolute;
			display    : block;
			width      : 18px;
			height     : 18px;
			background : var(--input-back-color);
			left       : 0;
			top        : 2px;
		  }

		  &:after {
			content             : "";
			position            : absolute;
			display             : block;
			width               : 14px;
			height              : 10px;
			background-size     : 100% 100%;
			background-repeat   : no-repeat;
			background-position : center center;
			left                : 2px;
			top                 : 6px;
		  }
		}

		& input:checked + span:after {
		  background-image : url(/img/check.svg);
		}
	  }
	}

	textarea {
	  width   : 100%;
	  height  : 80px;
	  padding : 15px 25px;
	}
  }
}

@media (max-width : 969px) {
  .call {
	padding : 40px 40px 60px;

	.title {
	  font-size : 38px;
	}

	.subtitle {
	  font-size : 38px;
	}

	form {
	  justify-content : flex-end;

	  label {
		&:nth-child(n) {
		  flex : 1 0 100%;
		}
	  }
	}
  }
}

@media (max-width : 650px) {
  .call {
	padding : 40px 15px;

	.title {
	  font-size     : 34px;
	  margin-bottom : 20px;
	}

	.subtitle {
	  font-size : 34px;
	}

	form {
	  label {
	  }
	}
  }
}
*/
.modal > .modal_callback {
  width: 900px;
  max-width: 90%; }

.call form textarea {
    border: 1px solid var(--text-light-color);
}

@media screen and (max-width: 480px) {
	.call form label.input {
		flex: 1 0 100%;
	}
}

/*# sourceMappingURL=style.css.map */

/* End */
/* /local/templates/.default/components/bitrix/system.pagenavigation/.default/style.css?17645918821353 */
/* /local/templates/main/components/bitrix/news.list/vacancies/style.css?17645918401084 */
/* /local/templates/.default/components/uw/form.result.new/call/style.css?17645918822941 */
