

/* Start:/local/templates/g3/css/list.css?16915803572555*/
.list {
  min-height: 200px;
  padding: 24px 0;
}

.list__detail {
  display: grid;
  gap: 20px;
}

.list__title {
  font-weight: 600;
  font-size: calc(20rem/var(--initial-font-multiplier));
}

.list__top-buttons {
  display: grid;
  gap: 10px 20px;
  grid-template-columns: repeat(auto-fit, minmax(0, max-content));
  justify-content: flex-end;
  margin: 0 0 20px 0;
}

.list__item {
  padding: 18px 0;
  display: grid;
  grid-template-columns: max-content 1fr;
  gap: 24px;
  align-items: center;
  border-bottom: 1px solid var(--border-color);
}

.list__item--main {
  padding: 0;
  grid-template-columns: minmax(min-content, max-content) 1fr;
  gap: 0;
  background: var(--light-gray-color);
  border-radius: var(--main-border);
  border-bottom: 0;
}

:where(.list__item--main) .list__photo {
  display: flex;
  height: 100%;
}

.list__item--main .list__photo-image {
  border-radius: 18px 0 0 18px !important;
  object-fit: cover;
}

.list__item--main .list__detail {
  display: grid;
  align-content: space-between;
  gap: 18px;
  height: 100%;
  padding: 28px;
}

.list__item--main .list__title {
  font-weight: bold;
  font-size: calc(30rem/var(--initial-font-multiplier));
}

.list__item--main .list__content {
  display: grid;
  gap: 12px;
  color: var(--text-color-light-gray);
  font-weight: 600;
}

.list__item--main .list__link {
  font-size: calc(16rem/var(--initial-font-multiplier));
}

.list__item--main .list__title-wrapper {
  display: grid;
  gap: 18px;
}

.list__item--main .list__link-icon {
  color: var(--primary-color);
  vertical-align: middle;
  margin-left: 6px;
}

.list__item--main .list__head {
  gap: 18px;
}

.list__item--no-photo {
  grid-template-columns: 100%;
}

.list__photo:hover {
  border: none;
}

.list__photo-image {
  border-radius: 12px;
  width: 100%;
}

.list__head {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

:root.root--special .list__item {
  border-color: var(--special-text-color);
}

@media (hover: hover) {
  .list__title > a:hover {
    text-decoration: underline;
    text-decoration-color: var(--primary-color-25);
  }
}

@media screen and (max-width: 735px) {
  .list__item {
    grid-template-columns: 100%;
  }

  .list__item--main .list__title {
    font-weight: bold;
    font-size: calc(20rem/var(--initial-font-multiplier));
  }

  .list__item--main .list__photo-image {
    border-radius: 18px 18px 0 0 !important;
  }

  .list__item--main .list__content {
    font-size: calc(16rem/var(--initial-font-multiplier));
  }

  .list__photo-image {
    width: 100%;
  }
}

/* End */


/* Start:/local/templates/g3/css/table.css?16915803571967*/
.table {
  --cell-spacing: 20px;
  --border: 2px solid var(--border-color);

  border-collapse: collapse;
  font-size: calc(16rem / var(--initial-font-multiplier));
  font-weight: 600;
  width: 100%;
}

.table__row {
  border-bottom: var(--border);
}

.table__row:empty {
  border-bottom: none;
}

.table__cell {
  padding: var(--cell-spacing);
  position: relative;
  vertical-align: top;
  text-align: left;
}

.table__cell + .table__cell::before {
  content: '';
  position: absolute;
  top: var(--cell-spacing);
  bottom: var(--cell-spacing);
  left: 0;
  border-left: var(--border);
}

/* Table head overwrite */
.table__head {
  --cell-bg-1: var(--light-gray-color);
  /** Little darker than --light-gray-color*/
  --cell-bg-2: hsl(240deg, 28%, 95%);
  --border: none;

  font-size: calc(18rem / var(--initial-font-multiplier));
  font-weight: bold;
}

.table__head .table__cell {
  vertical-align: middle;
  text-align: left;
  padding: var(--cell-spacing);
  font-size: calc(20rem / var(--initial-font-multiplier));
}

.table__head .table__cell:nth-child(2n+1) {
  background: var(--cell-bg-1);
}

.table__head .table__cell:nth-child(2n) {
  background: var(--cell-bg-2);
}

.table__head .table__cell:first-child {
  border-radius: var(--main-border) 0 0 0;
}

.table__head .table__cell:last-child {
  border-radius: 0 var(--main-border) 0 0;
}

:root.root--special .table {
  --border: 2px solid var(--special-text-color);
  border: var(--border);
}

:root.root--special .table__cell {
  background: var(--special-background-color);
}

@media screen and (max-width: 896px) {
  .table__head {
    display: none;
  }

  .table__row {
    display: flex;
    flex-direction: column;
  }

  .table__row:first-of-type:not(:empty) {
    border-top: var(--border);
  }


  .table__cell + .table__cell::before {
    left: var(--cell-spacing);
    right: var(--cell-spacing);
    top: 0;
    bottom: unset;
    border-left: unset;
    border-top: var(--border);
  }
}

/* End */


/* Start:/local/templates/g3/components/openregion/news/constituencies/openregion/news.detail/.default/style.css?1671530599378*/
.detail {
  display: grid;
  gap: calc(var(--grid-gap) / 2) var(--grid-gap);
  margin: var(--grid-gap) 0;
}

.detail__title-wrapper {
  grid-column: 1 / -1;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

@media (hover: hover) {
  .detail__text a:hover {
    text-decoration: underline;
    text-decoration-color: var(--primary-color-25);
  }
}

/* End */


/* Start:/local/templates/g3/components/openregion/component/constituency-map/style.css?167153059491*/
.js-constituency-map {
  width: 100%;
  height: 500px;
  margin-bottom: var(--grid-gap);
}

/* End */


/* Start:/local/templates/g3/components/openregion/news/constituencies/openregion/component/share/style.css?1671530599617*/
.detail__footer {
  padding: 15px 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  font-size: calc(14rem/var(--initial-font-multiplier));
  color: var(--text-color-light-gray);
  border-top: 1px solid var(--border-color);
}

.detail__footer-item {
  margin: 5px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.detail__footer-item > div {
  display: flex;
  align-items: center;
}

.detail__footer-label {
  margin: 5px 20px 5px 0;
}

:root.root--special .detail__footer {
  color: var(--special-text-color);
  border-color: var(--special-text-color);
}
/* End */


/* Start:/local/templates/g3/components/openregion/news.list/deputies/style.css?17437594371963*/
.list h2 {
  margin-bottom: 20px;
}

.deputy {
  --content-spacing: 10px;
}

.table--deputy {
  font-weight: normal;
}

.deputy__people {
  --image-offset: 10px;
  padding: var(--content-spacing) 0;
  display: grid;
  gap: 10px 20px;
  grid-template-columns: max-content 1fr;
  grid-template-rows: max-content 1fr;
  flex-wrap: nowrap;
}

.deputy__people-photo {
  margin-top: calc(0px - var(--image-offset));
  width: 91px;
  grid-row: 1 / -1;
  display: block;
}

.deputy__people-photo-image {
  width: 100%;
  border-radius: 4px;
}

.deputy__people-name {
  font-weight: normal;
  grid-column: -2;
}

.deputy__people-post {
  color: var(--text-color-light-gray);
  grid-column: -2;
  font-size: 14px;
}

.deputy .admin-area {
  margin-top: var(--content-spacing);
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
  justify-content: flex-end;
}

.deputy .admin-area__badges {
  margin-left: 10px;
}

.deputy .admin-area__buttons {
  margin-left: 0;
}

.deputy__contacts {
  line-height: 1.7;
}

.list {
  overflow-x: auto;
  overflow-y: visible;
}

.meta.deputy__meta {
  display: grid;
  gap: 5px;
}

.meta-item__value {
  color: var(--primary-color);
}

:root.root--special .deputy__people-post {
  color: var(--special-text-color);
}

@media (hover: hover) {
  .deputy__people-name a:hover {
    text-decoration: underline;
    text-decoration-color: var(--primary-color-25);
  }

  :root.root--special .deputy__people:hover .deputy__people-name {
    color: var(--special-text-color);
  }
}
.body.iframe #panel,
.body.iframe .top-panel,
.body.iframe .js-special-panel,
.body.iframe .js-digital-gov-warning,
.body.iframe .js-top-warning,
.body.iframe .main-header,
.body.iframe .top-menu,
.body.iframe .section-menu-wrapper,
.body.iframe .breadcrumb,
.body.iframe .main-footer,
.body.iframe .js-cookie-warning,
.body.iframe .js-yandex-metric-warning
{
  display: none !important;
}

.body.iframe .title-wrapper {
  padding-top: 30px;
}

/* End */
/* /local/templates/g3/css/list.css?16915803572555 */
/* /local/templates/g3/css/table.css?16915803571967 */
/* /local/templates/g3/components/openregion/news/constituencies/openregion/news.detail/.default/style.css?1671530599378 */
/* /local/templates/g3/components/openregion/component/constituency-map/style.css?167153059491 */
/* /local/templates/g3/components/openregion/news/constituencies/openregion/component/share/style.css?1671530599617 */
/* /local/templates/g3/components/openregion/news.list/deputies/style.css?17437594371963 */
