.b-actions-list {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.b-action-item {
  width: 100%;
  display: flex;
  align-items: stretch;
  position: relative;
  z-index: 2;
}
@media (min-width: 768px) {
  .b-action-item:nth-child(even) {
    flex-direction: row-reverse;
  }
}
@media (max-width: 768px) {
  .b-action-item {
    flex-direction: column;
    max-width: 400px;
    margin: 0 auto;
  }
}
.b-action-item__bg-blur {
  position: absolute;
  z-index: 0;
  inset: 0;
  pointer-events: none;
  background-image: var(--bg-url);
  background-size: 250%;
  background-position: left;
  -webkit-filter: blur(90px);
  filter: blur(90px);
}
@media (max-width: 768px) {
  .b-action-item__bg-blur {
    background-size: cover;
    -webkit-filter: blur(40px);
    filter: blur(40px);
    opacity: 0.85;
  }
}
.b-action-item__img {
  flex: 0 0 60%;
}
.b-action-item__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.b-action-item__content {
  overflow: hidden;
  position: relative;
  z-index: 1;
  isolation: isolate;
  background-color: #646057;
  flex: 0 0 40%;
  padding: 10% 30px 5% 30px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 16px;
}
@media (max-width: 970px) {
  .b-action-item__content {
    font-size: 14px;
  }
}
@media (max-width: 768px) {
  .b-action-item__content {
    font-size: 12px;
    padding: 20px 15px;
  }
}
.b-action-item__title, .b-action-item__slogan, .b-action-item__more {
  position: relative;
  z-index: 1;
  color: #fff;
}
.b-action-item__title {
  font-weight: 600;
  font-size: 2.2em;
  line-height: 1.1;
}
.b-action-item__slogan {
  font-size: 1.32em;
  line-height: 1.1;
}
.b-action-item__more {
  margin-top: auto;
}
.b-action-item__text {
  position: relative;
  width: 100%;
  max-width: 800px;
}
.b-action-item__text p {
  color: inherit;
  font-size: inherit;
  line-height: 1.2;
}
.b-action-item__text table {
  width: 100% !important;
}
.b-action-item__text table td {
  padding: 10px;
}
.b-action-item__text table td:first-child {
  width: 30%;
  font-weight: 600;
  background-color: #646057;
  color: #fff;
}
.b-action-item__text table td:nth-child(2) {
  font-size: 14px;
}

.action-page__slogan {
  width: 100%;
  text-align: center;
  line-height: 1.1;
}
@media (max-width: 768px) {
  .action-page__slogan {
    font-size: 20px;
  }
}
.action-page__banner {
  margin-bottom: 35px;
}
.action-page__banner-empty {
  text-align: center;
  --border: solid 1px grey;
  border-top: var(--border);
  border-bottom: var(--border);
  position: relative;
  left: -15px;
  right: -15px;
  width: calc(100% + 30px);
  margin-bottom: 35px;
  padding: 55px 0;
}
.action-page__banner-empty h2 {
  margin: 0;
  font-size: 1.4em;
}
.action-page__content-row {
  margin-bottom: 20px;
}
.action-page__content-row._links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
@media (max-width: 500px) {
  .action-page__content-row._links {
    flex-direction: column;
    gap: 8px;
    align-items: stretch;
    text-align: center;
  }
}
.action-page__content-row h4 {
  margin-bottom: 0px;
}
.action-page__content-item._restrictions {
  border: solid 1px #777777;
  padding: 10px 20px;
}

.action-popup {
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
  background: white;
  width: 100%;
  max-width: 1000px;
  max-height: calc(100vh - 40px);
  max-height: calc(100dvh - 40px);
  min-height: 0;
  flex-shrink: 1;
  margin: auto;
  border-radius: 5px;
  padding: 25px;
  position: relative;
  overflow: hidden;
}
@media (max-width: 768px) {
  .action-popup {
    padding: 10px;
  }
}
.action-popup.site-modal__panel--content {
  max-height: calc(100vh - 40px);
  max-height: calc(100dvh - 40px);
  overflow: hidden;
}
.action-popup__content-item {
  flex: 1 1 auto;
  min-height: 0;
  overflow-x: hidden;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
}
.action-popup h3 {
  font-size: 1.5em;
  line-height: 1.2;
}
@media (max-width: 768px) {
  .action-popup h3 {
    font-size: 1.2em;
  }
}

.page-title_action h1 {
  font-size: 25px;
}