

/* Start:/local/templates/prisoners/styles/main.css?176648537729665*/
@charset "UTF-8";
/**
  Нормализация блочной модели
 */
*,
::before,
::after {
  box-sizing: border-box;
}

/**
  Убираем внутренние отступы слева тегам списков,
  у которых есть атрибут class
 */
:where(ul, ol):where([class]) {
  padding-left: 0;
}

/**
  Убираем внешние отступы body и двум другим тегам,
  у которых есть атрибут class
 */
body,
:where(blockquote, figure):where([class]) {
  margin: 0;
}

/**
  Убираем внешние отступы вертикали нужным тегам,
  у которых есть атрибут class
 */
:where(h1,
h2,
h3,
h4,
h5,
h6,
p,
ul,
ol,
dl):where([class]) {
  margin-block: 0;
}

:where(dd[class]) {
  margin-left: 0;
}

:where(fieldset[class]) {
  margin-left: 0;
  padding: 0;
  border: none;
}

/**
  Убираем стандартный маркер маркированному списку,
  у которого есть атрибут class
 */
:where(ul[class]) {
  list-style: none;
}

:where(address[class]) {
  font-style: normal;
}

/**
  Обнуляем вертикальные внешние отступы параграфа,
  объявляем локальную переменную для внешнего отступа вниз,
  чтобы избежать взаимодействие с более сложным селектором
 */
p {
  --paragraphMarginBottom: 24px;
  margin-block: 0;
}

/**
  Внешний отступ вниз для параграфа без атрибута class,
  который расположен не последним среди своих соседних элементов
 */
p:where(:not([class]):not(:last-child)) {
  margin-bottom: var(--paragraphMarginBottom);
}

/**
  Упрощаем работу с изображениями и видео
 */
img,
video {
  display: block;
  max-width: 100%;
  height: auto;
}

/**
  Наследуем свойства шрифт для полей ввода
 */
input,
textarea,
select,
button {
  font: inherit;
}

html {
  /**
    Пригодится в большинстве ситуаций
    (когда, например, нужно будет "прижать" футер к низу сайта)
   */
  height: 100%;
  /**
    Убираем скачок интерфейса по горизонтали
    при появлении / исчезновении скроллбара
   */
  scrollbar-gutter: stable;
}

/**
  Плавный скролл
 */
html,
:has(:target) {
  scroll-behavior: smooth;
}

body {
  /**
    Пригодится в большинстве ситуаций
    (когда, например, нужно будет "прижать" футер к низу сайта)
   */
  min-height: 100%;
  /**
    Унифицированный интерлиньяж
   */
  line-height: 1.5;
}

/**
  Нормализация высоты элемента ссылки при его инспектировании в DevTools
 */
a:where([class]) {
  display: inline-flex;
}

/**
  Курсор-рука при наведении на элемент
 */
button,
label {
  cursor: pointer;
}

/**
  Приводим к единому цвету svg-элементы
 */
.replaced-svg [fill] {
  fill: currentColor;
}

.replaced-svg [stroke] {
  stroke: currentColor;
}

/**
  Чиним баг задержки смены цвета при взаимодействии с svg-элементами
 */
svg * {
  transition-property: fill, stroke;
}

/**
  Удаляем все анимации и переходы для людей,
  которые предпочитают их не использовать
 */
@font-face {
  font-family: "Gilroy";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("/local/templates/prisoners/styles/../fonts/Gilroy/Gilroy-Regular.woff2") format("woff2"), url("/fonts/Gilroy/Gilroy-Regular.woff") format("woff");
}
@font-face {
  font-family: "Gilroy";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("/local/templates/prisoners/styles/../fonts/Gilroy/Gilroy-Bold.woff2") format("woff2"), url("/local/templates/prisoners/styles/../fonts/Gilroy/Gilroy-Bold.woff") format("woff");
}
:root {
  --wrapper: min(1530px, 100% - 50px);
  --wrapper-fluid: min(1920px, 100% - 50px);
  --wrapper-full: 100%;
  --font-family: "Gilroy", serif;
  --clr-light: #f7f7f7;
  --clr-light-blue: #F0F2FB;
  --clr-blue: #293061;
  --clr-dark: #1f191a;
  --clr-red: #D61820;
  --clr-orange: #E45421;
  --gap: clamp(0.9375rem, 0.642641129rem + 1.2096774194vw, 1.875rem);
  --grd-red: linear-gradient(180deg, #D61820 0%, #991D1D 100%);
  --radius: 10px;
  --radius-hard: 300px 300px 0 300px;
  --box-shadow: 0 4px 21px 1px rgba(48, 123, 196, 0.1);
  --box-shadow-hard: 0 4px 21px 0 rgba(48, 123, 196, 0.3);
}
@media (max-width: 47.99875rem) {
  :root {
    --wrapper: min(1870px, 100% - 30px);
    --radius: 12px;
    --radius-hard: 100px 100px 0 100px;
  }
}

.wrapper {
  position: relative;
  width: var(--wrapper);
  margin-inline: auto;
}
.wrapper-fluid {
  width: var(--wrapper-fluid);
}
.wrapper-full {
  width: var(--wrapper-full);
}

.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  margin: -1px !important;
  border: 0 !important;
  padding: 0 !important;
  white-space: nowrap !important;
  clip-path: inset(100%) !important;
  clip: rect(0 0 0 0) !important;
  overflow: hidden !important;
}

@media (max-width: 47.99875rem) {
  .hidden-mobile {
    display: none !important;
  }
}

@media (min-width: 47.99875rem) {
  .visible-mobile {
    display: none !important;
  }
}

.w-100 {
  width: 100%;
}

.radius {
  border-radius: var(--radius);
  overflow: hidden;
}

.section {
  position: relative;
}

.text-center {
  text-align: center;
}

.box-shadow {
  box-shadow: var(--box-shadow);
}

.hidden {
  display: none !important;
}

[id^=bx_incl_area_] {
  display: contents !important;
}

html.is-lock {
  overflow: hidden;
}

html, body {
  color: var(--clr-black, #000);
}

body {
  background: #fff;
  display: flex;
  flex-direction: column;
  font-size: clamp(1rem, 0.9606854839rem + 0.1612903226vw, 1.125rem);
  font-family: var(--font-family);
  font-weight: 400;
  line-height: 1;
  overflow-x: clip;
}
body.active {
  overflow: hidden;
}
body.active .header__mobile-btn span {
  background: var(--clr-golden);
}

main {
  flex-grow: 1;
  padding-top: clamp(0.625rem, -0.4758064516rem + 4.5161290323vw, 4.125rem);
  padding-bottom: clamp(1.875rem, 0.4989919355rem + 5.6451612903vw, 6.25rem);
  line-height: 1.5;
}
.main main {
  padding-top: 0;
  padding-bottom: 0;
}

h1, .h1 {
  color: var(--clr-blue);
  font-size: clamp(1.375rem, 1.3356854839rem + 0.1612903226vw, 1.5rem);
  font-weight: 700;
  margin-bottom: 14px;
}

h2, .h2 {
  font-size: clamp(1.5rem, 1.3427419355rem + 0.6451612903vw, 2rem);
  color: var(--clr-golden);
}

h3, .h3 {
  font-size: clamp(1.375rem, 1.2570564516rem + 0.4838709677vw, 1.75rem);
  font-weight: 600;
}

h4, .h4 {
  font-size: clamp(1.125rem, 1.0856854839rem + 0.1612903226vw, 1.25rem);
  color: var(--clr-golden-light);
  font-weight: 600;
}

a, .link {
  display: inline-flex;
  color: inherit;
  text-decoration: none;
  transition: color 0.25s;
  cursor: pointer;
}
a:hover, .link:hover {
  color: var(--clr-golden);
}

img {
  max-width: 100%;
  height: auto;
}

video {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
}

input, textarea {
  -webkit-appearance: none;
  border: 0;
  border-radius: 5px;
  background: #fff;
  padding: 8px 12px;
  width: 100%;
  border: 1px solid #D9D9D9;
}
input.error, textarea.error {
  border-color: var(--clr-red);
  box-shadow: inset 0 0 0 1px rgb(255, 0, 0);
}

textarea {
  padding: 12px;
}

ul:not([class]) {
  list-style: none;
  margin-left: 10px;
  padding: 0;
}
ul:not([class]) li {
  display: flex;
}
ul:not([class]) li::before {
  content: "";
  display: inline-block;
  flex-shrink: 0;
  width: 4px;
  height: 4px;
  background: var(--clr-black, #000);
  border-radius: 50%;
  margin-top: 5px;
  margin-right: 10px;
}

ul.list {
  display: flex;
  flex-direction: column;
  gap: 15px;
  line-height: 1.2;
}
ul.list li::before {
  content: "•";
  margin-top: 7px;
  margin-right: 10px;
}

.btn, .button, button {
  position: relative;
  padding: clamp(0.375rem, 0.2963709677rem + 0.3225806452vw, 0.625rem) clamp(1.25rem, 0.8568548387rem + 1.6129032258vw, 2.5rem);
  background: transparent;
  color: var(--clr-orange);
  font-size: clamp(1.125rem, 1.0856854839rem + 0.1612903226vw, 1.25rem);
  font-weight: 700;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  transition: 0.25s;
  border: 1px solid;
  border-radius: 2px;
  letter-spacing: 1.8px;
  z-index: 1;
}
.btn:hover, .button:hover, button:hover {
  background: var(--clr-orange);
  color: #fff;
  border-color: var(--clr-orange);
  transform: translateY(-2px);
}
.btn:disabled, .button:disabled, button:disabled {
  background: #f1eded;
  cursor: not-allowed !important;
  border-color: #7c7c7c;
  color: #4a4a4a;
  opacity: 1;
}
.btn:disabled:hover, .button:disabled:hover, button:disabled:hover {
  color: #000;
}
.btn--big, .button--big, button--big {
  padding: clamp(0.875rem, 0.8356854839rem + 0.1612903226vw, 1rem) clamp(1.5rem, 1.0675403226rem + 1.7741935484vw, 2.875rem);
}
.btn--orange, .button--orange, button--orange {
  background: var(--clr-orange);
  color: #fff;
  border-color: var(--clr-orange);
}
.btn--orange:hover, .button--orange:hover, button--orange:hover {
  background: #e66d00;
  border-color: #e66d00;
}

.button-prev, .button-next {
  color: #fff;
  font-size: 12px;
  padding: 20px;
  background: linear-gradient(66deg, rgba(14, 67, 116, 0.8) 0%, rgba(29, 113, 184, 0.8) 100%);
  border-radius: var(--radius);
  cursor: pointer;
}
.button-prev::before, .button-next::before {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-45deg);
  content: "";
  width: 10px;
  height: 10px;
  border-right: 1px solid #fff;
  border-bottom: 1px solid #fff;
  background: transparent;
  opacity: 1;
}

.button-prev {
  scale: -1;
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  font-size: clamp(0.875rem, 0.8356854839rem + 0.1612903226vw, 1rem);
  color: var(--clr-blue);
  margin-bottom: clamp(0.9375rem, 0.642641129rem + 1.2096774194vw, 1.875rem);
}
.breadcrumbs__item:not(:last-child) {
  position: relative;
  display: flex;
  align-items: center;
}
.breadcrumbs__item:not(:last-child)::after {
  content: "";
  display: inline-block;
  background: var(--clr-blue);
  width: 4px;
  height: 4px;
  border-radius: 50%;
  margin: 3px 8px 0;
}
.breadcrumbs__link {
  color: inherit;
}
@media (max-width: 47.99875rem) {
  .breadcrumbs {
    display: flex;
    overflow-x: auto;
    white-space: nowrap;
    flex-wrap: nowrap;
    scrollbar-width: none;
  }
  .breadcrumbs::-webkit-scrollbar {
    display: none;
  }
}

.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  opacity: 0;
  z-index: 50;
  transition: 0.6s;
}
.overlay:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #000;
  opacity: 0.2;
  z-index: -1;
}
.overlay.is-active {
  pointer-events: inherit;
  opacity: 1;
}

.line-icon {
  --_w: 70px;
  --_h: 60px;
  --_h-line: 8px;
  width: var(--_w);
  height: var(--_h);
  background: linear-gradient(#000 0 0) 0 0/var(--_w) var(--_h-line) no-repeat, linear-gradient(#000 0 0) 0 16px/var(--_w) var(--_h-line) no-repeat, linear-gradient(#000 0 0) 0 32px/var(--_w) var(--_h-line) no-repeat, linear-gradient(#000 0 0) 0 48px/calc(var(--_w) / 2) var(--_h-line) no-repeat;
  background-repeat: no-repeat;
  pointer-events: none;
}

form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
form .row {
  display: flex;
  flex-wrap: wrap;
  gap: 5px 20px;
}
form .row .col {
  display: flex;
  flex-direction: column;
  gap: 5px 20px;
  width: calc(50% - 10px);
}

.custom-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
  user-select: none;
}
.custom-checkbox input[type=checkbox] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}
.custom-checkbox input[type=checkbox]:checked + .custom-checkbox__checkmark {
  background: var(--clr-orange);
  border-color: var(--clr-orange);
}
.custom-checkbox input[type=checkbox]:checked + .custom-checkbox__checkmark::after {
  opacity: 1;
  transform: rotate(45deg) scale(1);
}
.custom-checkbox__checkmark {
  position: relative;
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  margin-top: 2px;
  border: 2px solid #D9D9D9;
  border-radius: 4px;
  background: #fff;
  transition: all 0.25s ease;
}
.custom-checkbox__checkmark::after {
  content: "";
  position: absolute;
  left: 6px;
  top: 2px;
  width: 5px;
  height: 10px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  opacity: 0;
  transform: rotate(45deg) scale(0);
  transition: all 0.25s ease;
}
.custom-checkbox__text {
  line-height: 1.4;
  font-size: clamp(0.875rem, 0.8356854839rem + 0.1612903226vw, 1rem);
}
.custom-checkbox__text a {
  text-decoration: underline;
}
.custom-checkbox__text a:hover {
  color: var(--clr-orange);
}
.custom-checkbox:hover .custom-checkbox__checkmark {
  border-color: var(--clr-orange);
}

.checkbox-row {
  margin-top: 10px;
}

.form-name {
  align-items: center;
  margin-bottom: 15px;
}
.form-name .h1 {
  margin-bottom: 0;
}

.prisoners-main .wrapper-fluid {
  width: 100%;
}

.hero-prisoners {
  position: relative;
  overflow: hidden;
}
@media (max-width: 90.06125rem) {
  .hero-prisoners {
    height: 400px;
  }
}
.hero-prisoners img {
  object-fit: cover;
  width: 100%;
  height: 100%;
  animation: kenBurns 20s ease-in-out infinite alternate;
}

.hero-line {
  display: flex;
  height: 160px;
  padding-top: 20px;
  margin-top: -4px;
  background: var(--clr-blue);
  clip-path: polygon(0 0, 100% 0, 100% 80px, 0 90%);
  color: #fff;
}
@media (max-width: 47.99875rem) {
  .hero-line {
    height: 100px;
    clip-path: polygon(0 0, 100% 0, 100% 140px, 0 100%);
    margin-bottom: 30px;
  }
}

.prisoners-logo {
  display: inline-flex;
  align-items: center;
  gap: clamp(0.625rem, 0.2318548387rem + 1.6129032258vw, 1.875rem);
  line-height: 1.4;
  font-weight: 700;
  font-size: clamp(1.125rem, 1.0070564516rem + 0.4838709677vw, 1.5rem);
}
@media (max-width: 47.99875rem) {
  .prisoners-logo img {
    height: 50px;
  }
  .prisoners-logo p {
    display: block;
    font-size: 16px;
  }
}

@keyframes kenBurns {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.05);
  }
}
.section-intro {
  --margin-left: clamp(2.5rem, 1.3205645161rem + 4.8387096774vw, 6.25rem);
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding-bottom: clamp(2.5rem, 1.7137096774rem + 3.2258064516vw, 5rem);
}
@media (max-width: 63.99875rem) {
  .section-intro {
    --margin-left: 0;
  }
}

.intro-text-orange {
  font-size: clamp(1.25rem, 1.1713709677rem + 0.3225806452vw, 1.5rem);
  font-weight: 700;
  color: var(--clr-orange);
  text-wrap: balance;
}

.intro-search {
  margin-left: var(--margin-left);
}
.intro-search__form {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: clamp(0.9375rem, 0.0529233871rem + 3.6290322581vw, 3.75rem);
  background: var(--clr-light-blue);
  border: 1px solid var(--clr-blue);
  border-radius: 5px;
  padding: 10px 15px;
}
.intro-search__icon {
  flex-shrink: 0;
}
@media (max-width: 47.99875rem) {
  .intro-search__icon {
    width: 30px;
    height: 30px;
  }
}
.intro-search input {
  border: 0;
  border-bottom: 1px solid var(--clr-orange);
  border-radius: 0;
  background: transparent;
}
.intro-search input:focus {
  outline: none;
}
.intro-search button:hover {
  transform: none;
}

.intro-text-bottom {
  margin-left: calc(var(--margin-left) * 2);
  text-wrap: balance;
}

.section-prisoners-about {
  --_line-height: clamp(2.5rem, 1.5171370968rem + 4.0322580645vw, 5.625rem);
  background: var(--clr-light-blue);
  margin-block: var(--_line-height);
}
.section-prisoners-about::before, .section-prisoners-about::after {
  position: absolute;
  display: block;
  content: "";
  left: 0;
  width: 100%;
  height: var(--_line-height);
  background: inherit;
}
.section-prisoners-about::before {
  top: calc(-1 * var(--_line-height));
  clip-path: polygon(0 0, 100% 100%, 0 100%);
}
.section-prisoners-about::after {
  bottom: calc(-1 * var(--_line-height));
  clip-path: polygon(0 0, 100% 0, 0 100%);
}
.section-prisoners-about .wrapper {
  display: flex;
  flex-direction: column;
  gap: clamp(1.875rem, 1.4818548387rem + 1.6129032258vw, 3.125rem);
}
.section-prisoners-about .row {
  display: flex;
  gap: 30px;
}
@media (max-width: 63.99875rem) {
  .section-prisoners-about .row {
    flex-direction: column;
  }
}
.section-prisoners-about .row .text {
  flex: 1;
}
.section-prisoners-about .row .photo {
  position: relative;
  align-self: center;
}
.section-prisoners-about .row:nth-child(odd) .line-icon {
  position: absolute;
  right: 0;
  bottom: 0;
  transform: translate(-42%, -15px);
  scale: -1 1;
  rotate: 90deg;
}
.section-prisoners-about .row:nth-child(even) {
  flex-direction: row-reverse;
  width: calc(100% - 20vw);
  margin-left: auto;
}
@media (max-width: 74.99875rem) {
  .section-prisoners-about .row:nth-child(even) {
    width: 100%;
  }
}
@media (max-width: 63.99875rem) {
  .section-prisoners-about .row:nth-child(even) {
    flex-direction: column;
  }
}
.section-prisoners-about .row:nth-child(even) .line-icon {
  position: absolute;
  top: 0;
  left: 0;
  transform: translate(-50%, -15px);
}

.section-contacts {
  margin-top: clamp(2.5rem, 1.7137096774rem + 3.2258064516vw, 5rem);
  background: var(--clr-light-blue);
  padding-top: clamp(1.875rem, 0.8921370968rem + 4.0322580645vw, 5rem);
}
.section-contacts .wrapper {
  --_gap: clamp(0.625rem, -0.1612903226rem + 3.2258064516vw, 3.125rem);
  display: flex;
  flex-wrap: wrap;
  gap: var(--_gap);
}
.section-contacts .h1 {
  width: 100%;
}
.section-contacts .left {
  display: flex;
  flex-direction: column;
  gap: clamp(0.9375rem, 0.642641129rem + 1.2096774194vw, 1.875rem);
  width: calc(50% - var(--_gap));
  padding: clamp(1.875rem, 1.4818548387rem + 1.6129032258vw, 3.125rem) clamp(1.875rem, 0.4989919355rem + 5.6451612903vw, 6.25rem);
}
@media (max-width: 47.99875rem) {
  .section-contacts .left {
    width: 100%;
    padding-inline: 0;
  }
}
.section-contacts .right {
  background: #fff;
  padding: clamp(1.875rem, 1.4818548387rem + 1.6129032258vw, 3.125rem) clamp(1.875rem, 1.0887096774rem + 3.2258064516vw, 4.375rem);
  width: calc(50% - var(--_gap));
  z-index: 2;
}
@media (max-width: 47.99875rem) {
  .section-contacts .right {
    width: 100%;
  }
}
.section-contacts .right form {
  display: flex;
  flex-direction: column;
  gap: clamp(0.9375rem, 0.8392137097rem + 0.4032258065vw, 1.25rem);
}
.section-contacts .map {
  --map-offset-x: 200;
  --map-offset-y: 0;
  position: relative;
  margin-top: -150px;
  width: 100%;
  height: 300px;
}
@media (max-width: 47.99875rem) {
  .section-contacts .map {
    --map-offset-x: 0;
    --map-offset-y: 0;
    margin-top: 0;
  }
}
.section-contacts .map .ymaps-2-1-79-map {
  filter: hue-rotate(180deg);
}
.section-contacts .map::before {
  --_line-height: clamp(2.5rem, 1.5171370968rem + 4.0322580645vw, 5.625rem);
  position: absolute;
  display: block;
  content: "";
  left: 0;
  width: 100%;
  height: var(--_line-height);
  background: var(--clr-light-blue);
  top: 0;
  clip-path: polygon(0 0, 100% 0, 0 100%);
  pointer-events: none;
  z-index: 1;
}

.contact-row {
  display: flex;
  gap: 15px;
}
.contact-row .icon {
  flex-shrink: 0;
}
.contact-row .title {
  font-size: 18px;
  font-weight: 700;
  color: var(--clr-blue);
}

.prisoners-container {
  --_rows: 4;
  --_gap: 15px;
  display: flex;
  flex-wrap: wrap;
  gap: var(--_gap);
}
@media (max-width: 90.06125rem) {
  .prisoners-container {
    --_rows: 3;
  }
}
@media (max-width: 47.99875rem) {
  .prisoners-container {
    --_gap: 10px;
  }
}
@media (max-width: 63.99875rem) {
  .prisoners-container {
    --_rows: 2;
  }
}

.prisoner {
  display: flex;
  gap: clamp(0.625rem, 0.5267137097rem + 0.4032258065vw, 0.9375rem);
  background: #EEE;
  width: calc((100% - var(--_gap) * (var(--_rows) - 1)) / var(--_rows));
  padding: 25px 10px;
}
@media (max-width: 47.99875rem) {
  .prisoner {
    flex-direction: column;
    padding: 10px;
  }
}
.prisoner__img {
  max-width: 140px;
}
.prisoner__name {
  margin-bottom: 18px;
}
.prisoner__name span {
  font-weight: 700;
}
.prisoner__years {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.prisoner__years-icon {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 16px;
}
.main .prisoner:last-child {
  display: none;
}
@media (max-width: 90.06125rem) {
  .main .prisoner:last-child {
    display: flex;
  }
}

#search {
  width: 100%;
  max-width: 450px;
  padding: 12px 16px;
  font-size: 16px;
  border: 1px solid #ccc;
  margin-bottom: 20px;
  transition: border-color 0.3s ease;
}

#search:focus {
  outline: none;
  border-color: #000;
  box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.1);
}

.loading {
  text-align: center;
  padding: 40px 20px;
  font-size: 18px;
  color: #666;
  background: #f8f9fa;
  border-radius: 8px;
  border: 1px solid #e9ecef;
}

.loading:before {
  content: "";
  display: inline-block;
  width: 20px;
  height: 20px;
  border: 3px solid #f3f3f3;
  border-top: 3px solid #000;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin-right: 10px;
  vertical-align: middle;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.error {
  text-align: center;
  padding: 20px;
  font-size: 16px;
  color: #dc3545;
  background: #f8d7da;
  border: 1px solid #f5c6cb;
  margin: 20px 0;
}

.no-results {
  text-align: center;
  padding: 40px 20px;
  font-size: 18px;
  color: #000;
  background: #f8f9fa;
  border: 1px solid #e9ecef;
  margin: 20px 0;
}

.filter-wrapper {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
@media (max-width: 63.99875rem) {
  .filter-wrapper {
    flex-direction: column;
  }
}
.filter-wrapper .prisoners {
  flex: 1;
}
.filter-wrapper .filter {
  flex: 1;
  max-width: 360px;
}
@media (max-width: 63.99875rem) {
  .filter-wrapper .filter {
    display: none;
  }
  .filter-wrapper .filter.open {
    display: block;
  }
}
.filter-wrapper .prisoners-container {
  --_rows: 3;
}
@media (max-width: 90.06125rem) {
  .filter-wrapper .prisoners-container {
    --_rows: 2;
  }
}

.filter-section {
  background: #E0E2E8;
  padding: clamp(0.9375rem, 0.8392137097rem + 0.4032258065vw, 1.25rem);
}
.filter-section .h3 {
  font-size: 20px;
  margin-bottom: 10px;
}

.form-group {
  margin-top: 10px;
}
.form-group--inline {
  display: flex;
  gap: 10px;
  width: 100%;
}
.form-group .form-label {
  font-size: 18px;
}

.form-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-top: 15px;
}

.filter-reset {
  cursor: pointer;
}

.date-inputs {
  display: flex;
  gap: 10px;
}

.filter-open-params {
  display: none;
  margin-bottom: 20px;
  text-align: center;
  font-size: 16px;
  background: #E0E2E8;
  padding: 10px;
}
@media (max-width: 63.99875rem) {
  .filter-open-params {
    display: flex;
    align-items: center;
    gap: 10px;
  }
}
.filter-open-params .filter-icon {
  width: 20px;
  height: 20px;
}

.page-prisoners-view {
  background: #F0F2FB;
}

.prisoner-view {
  display: flex;
  gap: clamp(1.875rem, -0.4838709677rem + 9.6774193548vw, 9.375rem);
  margin-block: clamp(1.25rem, 0.6602822581rem + 2.4193548387vw, 3.125rem) clamp(3.125rem, 2.1421370968rem + 4.0322580645vw, 6.25rem);
}
@media (max-width: 90.06125rem) {
  .prisoner-view {
    gap: clamp(1.875rem, 1.2852822581rem + 2.4193548387vw, 3.75rem);
  }
}
@media (max-width: 47.99875rem) {
  .prisoner-view {
    flex-direction: column;
  }
}
.prisoner-view__picture {
  position: relative;
  max-width: 40vw;
  max-width: 500px;
}
@media (max-width: 47.99875rem) {
  .prisoner-view__picture {
    max-width: 100%;
  }
}
.prisoner-view__picture .line-icon {
  position: absolute;
  top: -20px;
  left: 0;
  transform: translateX(-50%);
}
.prisoner-view__container {
  flex: 1;
  display: flex;
  flex-direction: column;
}
.prisoner-view__row {
  display: flex;
  gap: 30px;
  border-bottom: 1px solid #C8CCDC;
  padding: 18px 30px;
}
@media (max-width: 63.99875rem) {
  .prisoner-view__row {
    flex-direction: column;
    gap: 10px;
    padding-inline: 0;
  }
}
.prisoner-view__row .col:first-child {
  flex: 1;
}
.prisoner-view__row .col:last-child {
  flex: 2;
  font-weight: 700;
}
.prisoner-view .gallery_text {
  color: var(--clr-blue);
  border-bottom: 1px solid #C8CCDC;
}
.prisoner-view .gallery {
  --_rows: 4;
  --_gap: 20px;
  display: flex;
  gap: var(--_gap);
  flex-wrap: wrap;
  margin-top: 10px;
}
@media (max-width: 47.99875rem) {
  .prisoner-view .gallery {
    --_rows: 3;
    --_gap: 10px;
  }
}
.prisoner-view .gallery a {
  width: calc((100% - var(--_gap) * (var(--_rows) - 1)) / var(--_rows));
}

.footer {
  background: var(--clr-blue);
  color: #fff;
  padding-block: clamp(1.25rem, 0.6602822581rem + 2.4193548387vw, 3.125rem) 15px;
}
@media (max-width: 90.06125rem) {
  .footer__logo p {
    display: none;
  }
}
@media (max-width: 47.99875rem) {
  .footer__logo img {
    height: 40px;
  }
  .footer__logo p {
    display: block;
    font-size: 14px;
  }
}
.footer__navi {
  display: flex;
  flex-direction: column;
  list-style: none;
  gap: clamp(0.625rem, 0.5267137097rem + 0.4032258065vw, 0.9375rem);
}
.footer__navi li {
  display: flex;
  align-items: center;
  gap: clamp(0.375rem, 0.2570564516rem + 0.4838709677vw, 0.75rem);
}
.footer__navi li::before {
  display: block;
  content: "";
  width: 6px;
  height: 6px;
  background: #fff;
  border-radius: 50%;
}
.footer__contacts {
  display: flex;
  flex-direction: column;
  list-style: none;
  gap: clamp(0.625rem, 0.5267137097rem + 0.4032258065vw, 0.9375rem);
}
.footer__buttons {
  display: flex;
  flex-direction: column;
  gap: clamp(0.625rem, 0.5267137097rem + 0.4032258065vw, 0.9375rem);
}
@media (max-width: 47.99875rem) {
  .footer__buttons {
    align-items: center;
    width: 100%;
  }
}
.footer__buttons .btn {
  border-color: var(--clr-orange);
}
.footer a {
  color: inherit;
}
.footer .wrapper {
  display: flex;
  flex-direction: column;
  gap: clamp(0.9375rem, 0.642641129rem + 1.2096774194vw, 1.875rem);
}
.footer .row {
  display: flex;
  flex-wrap: wrap;
  align-items: start;
  justify-content: space-between;
  gap: clamp(0.9375rem, 0.642641129rem + 1.2096774194vw, 1.875rem);
}
@media (max-width: 47.99875rem) {
  .footer .row {
    flex-direction: column;
    gap: 30px;
  }
}
@media (max-width: 47.99875rem) {
  .footer .col:has(.footer__navi) {
    display: none;
  }
}
@media (max-width: 47.99875rem) {
  .footer .copyright {
    text-align: center;
    margin-top: 15px;
  }
}

.modal {
  position: fixed;
  top: 60%;
  left: 50%;
  width: 100%;
  max-width: min(720px, 100% - 64px);
  background: var(--clr-light);
  color: var(--clr-brown-dark);
  transform: translate(-50%, -50%);
  pointer-events: none;
  opacity: 0;
  z-index: 1000;
  transition: 0.25s;
}
.modal.is-active {
  top: 50%;
  pointer-events: inherit;
  opacity: 1;
}
.modal .form-name {
  margin-bottom: 30px;
}
.modal .close {
  position: absolute;
  top: 25px;
  right: 25px;
  width: 38px;
  height: 38px;
  cursor: pointer;
}
.modal .close:after, .modal .close:before {
  position: absolute;
  top: 50%;
  left: -6px;
  content: "";
  width: calc(100% - 10px);
  height: 2px;
  background: #938A7A;
  transition: 0.25s;
}
.modal .close:before {
  transform: rotate(45deg);
}
.modal .close:after {
  transform: rotate(-45deg);
}
.modal .close:hover:before, .modal .close:hover:after {
  background: var(--clr-black);
}
.modal-content {
  padding: 30px 40px 40px;
  height: 100%;
  overflow: auto;
}
.modal-text {
  font-size: 24px;
  line-height: 1.4;
  font-weight: 400;
  margin-top: 30px;
  text-align: center;
}
.modal .row-input {
  --_gap-g: 16px;
  display: flex;
  gap: 24px var(--_gap-g);
}
.modal .row-input select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  outline: none;
  width: 100%;
  cursor: pointer;
}
.modal .row-input select::-ms-expand {
  display: none;
}
.modal .loader {
  position: absolute;
  left: 50%;
  translate: -50%;
}
.modal .form-bottom {
  font-size: 14px;
  color: #938A7A;
  text-wrap: balance;
  margin-top: 15px;
}
.modal .form-bottom a {
  text-decoration: underline;
}
@media (max-width: 991px) {
  .modal-content {
    padding: 20px;
  }
}
@media (max-width: 768px) {
  .modal {
    overflow: auto;
  }
  .modal-content {
    padding: 36px 20px 20px;
  }
  .modal-text {
    font-size: 16px;
  }
  .modal .close {
    top: 5px;
    right: 0;
  }
  .modal .btn {
    min-width: 100%;
    padding: 14px 10px;
  }
  .modal .row-input {
    gap: 10px var(--_gap-g);
    flex-direction: column;
  }
  .modal .row-input input {
    width: 100%;
  }
}

.row.required {
  font-size: 12px;
  color: #938A7A;
  margin-top: 18px;
}

.before-send.is-hidden {
  opacity: 0;
  pointer-events: none;
}

.after-send {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  font-size: 24px;
  opacity: 0;
  transition: 0.25s;
  pointer-events: none;
}
.after-send.is-active {
  opacity: 1;
  pointer-events: all;
}

.botton-pagination {
  display: flex;
  flex: 1 0 100%;
}

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

/* End */
/* /local/templates/prisoners/styles/main.css?176648537729665 */
