.responsive {
  max-width: 100%;
  height: auto;
}

.popup202503 {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 100;
  display: none;
  align-items: center;
  justify-content: center;
}
.popup202503:before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  opacity: 0.6;
  color: #ffffff;
  background-color: #000000;
  z-index: 0;
}
.popup202503__wrapper {
  position: relative;
  width: 100%;
  max-width: 860px;
  max-height: 100vh;
  margin: 10px;
  overflow: auto;
  background: #fff;
  padding: 10px;
  border-radius: 5px !important;
}
.popup202503__close {
  position: absolute;
  width: 15px;
  top: 5px;
  right: 5px;
  z-index: 1;
  aspect-ratio: 1;
}
.popup202503__close svg {
  width: 100%;
  height: auto;
  fill: #047994;
  cursor: pointer;
}
.popup202503__body {
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}
.popup202503__body p {
    margin: 10px 0;
}
p.popup202503__body-header {
    font-weight: 700;
    margin: 20px 0;
    color: #559aaa;
}
.popup202503__body-content {
    @media (min-width: 992px) {
        display: flex;
        align-items: center;
    }
}
p.popup202503__body-text {}
p.popup202503__body-footer {
    margin: 20px 0;
}


.popup202503-inited {
  display: flex;
  opacity: 0;
  transition: all 1s 1s;
}
.popup202503-inited .popup202503__close {
  opacity: 0;
  transition: all 1s 3s;
}
.popup202503-showed {
  opacity: 1;
}
.popup202503-showed .popup202503__close {
  opacity: 1;
}