.b3ea{font-family:"Source Sans Pro",sans-serif;font-style:normal;font-weight:600;font-size:18px;line-height:24px;color:#04172e}._4acb{font-family:"Source Sans Pro",sans-serif;font-style:normal;font-weight:400;font-size:13px;line-height:18px;color:#878c94}.a163{font-style:normal;font-weight:600;font-size:15px;line-height:20px;color:#04172e}
:root {
  --toastify-color-light: #fff;
  --toastify-color-dark: #121212;
  --toastify-color-info: #3498db;
  --toastify-color-success: #07bc0c;
  --toastify-color-warning: #f1c40f;
  --toastify-color-error: #e74c3c;
  --toastify-color-transparent: rgba(255, 255, 255, 0.7);
  --toastify-icon-color-info: var(--toastify-color-info);
  --toastify-icon-color-success: var(--toastify-color-success);
  --toastify-icon-color-warning: var(--toastify-color-warning);
  --toastify-icon-color-error: var(--toastify-color-error);
  --toastify-toast-width: 320px;
  --toastify-toast-background: #fff;
  --toastify-toast-min-height: 64px;
  --toastify-toast-max-height: 800px;
  --toastify-font-family: sans-serif;
  --toastify-z-index: 9999;
  --toastify-text-color-light: #757575;
  --toastify-text-color-dark: #fff;
  --toastify-text-color-info: #fff;
  --toastify-text-color-success: #fff;
  --toastify-text-color-warning: #fff;
  --toastify-text-color-error: #fff;
  --toastify-spinner-color: #616161;
  --toastify-spinner-color-empty-area: #e0e0e0;
  --toastify-color-progress-light: linear-gradient(
    to right,
    #4cd964,
    #5ac8fa,
    #007aff,
    #34aadc,
    #5856d6,
    #ff2d55
  );
  --toastify-color-progress-dark: #bb86fc;
  --toastify-color-progress-info: var(--toastify-color-info);
  --toastify-color-progress-success: var(--toastify-color-success);
  --toastify-color-progress-warning: var(--toastify-color-warning);
  --toastify-color-progress-error: var(--toastify-color-error);
}

.Toastify__toast-container {
  z-index: var(--toastify-z-index);
  -webkit-transform: translate3d(0, 0, var(--toastify-z-index));
  position: fixed;
  padding: 4px;
  width: var(--toastify-toast-width);
  box-sizing: border-box;
  color: #fff;
}
.Toastify__toast-container--top-left {
  top: 1em;
  left: 1em;
}
.Toastify__toast-container--top-center {
  top: 1em;
  left: 50%;
  transform: translateX(-50%);
}
.Toastify__toast-container--top-right {
  top: 1em;
  right: 1em;
}
.Toastify__toast-container--bottom-left {
  bottom: 1em;
  left: 1em;
}
.Toastify__toast-container--bottom-center {
  bottom: 1em;
  left: 50%;
  transform: translateX(-50%);
}
.Toastify__toast-container--bottom-right {
  bottom: 1em;
  right: 1em;
}

@media only screen and (max-width : 480px) {
  .Toastify__toast-container {
    width: 100vw;
    padding: 0;
    left: 0;
    margin: 0;
  }
  .Toastify__toast-container--top-left, .Toastify__toast-container--top-center, .Toastify__toast-container--top-right {
    top: 0;
    transform: translateX(0);
  }
  .Toastify__toast-container--bottom-left, .Toastify__toast-container--bottom-center, .Toastify__toast-container--bottom-right {
    bottom: 0;
    transform: translateX(0);
  }
  .Toastify__toast-container--rtl {
    right: 0;
    left: initial;
  }
}
.Toastify__toast {
  position: relative;
  min-height: var(--toastify-toast-min-height);
  box-sizing: border-box;
  margin-bottom: 1rem;
  padding: 8px;
  border-radius: 4px;
  box-shadow: 0 1px 10px 0 rgba(0, 0, 0, 0.1), 0 2px 15px 0 rgba(0, 0, 0, 0.05);
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
      justify-content: space-between;
  max-height: var(--toastify-toast-max-height);
  overflow: hidden;
  font-family: var(--toastify-font-family);
  cursor: default;
  direction: ltr;
  /* webkit only issue #791 */
  z-index: 0;
}
.Toastify__toast--rtl {
  direction: rtl;
}
.Toastify__toast--close-on-click {
  cursor: pointer;
}
.Toastify__toast-body {
  margin: auto 0;
  -ms-flex: 1 1 auto;
      flex: 1 1 auto;
  padding: 6px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
}
.Toastify__toast-body > div:last-child {
  word-break: break-word;
  -ms-flex: 1;
      flex: 1;
}
.Toastify__toast-icon {
  -webkit-margin-end: 10px;
          margin-inline-end: 10px;
  width: 20px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  display: -ms-flexbox;
  display: flex;
}

.Toastify--animate {
  animation-fill-mode: both;
  animation-duration: 0.7s;
}

.Toastify--animate-icon {
  animation-fill-mode: both;
  animation-duration: 0.3s;
}

@media only screen and (max-width : 480px) {
  .Toastify__toast {
    margin-bottom: 0;
    border-radius: 0;
  }
}
.Toastify__toast-theme--dark {
  background: var(--toastify-color-dark);
  color: var(--toastify-text-color-dark);
}
.Toastify__toast-theme--light {
  background: var(--toastify-color-light);
  color: var(--toastify-text-color-light);
}
.Toastify__toast-theme--colored.Toastify__toast--default {
  background: var(--toastify-color-light);
  color: var(--toastify-text-color-light);
}
.Toastify__toast-theme--colored.Toastify__toast--info {
  color: var(--toastify-text-color-info);
  background: var(--toastify-color-info);
}
.Toastify__toast-theme--colored.Toastify__toast--success {
  color: var(--toastify-text-color-success);
  background: var(--toastify-color-success);
}
.Toastify__toast-theme--colored.Toastify__toast--warning {
  color: var(--toastify-text-color-warning);
  background: var(--toastify-color-warning);
}
.Toastify__toast-theme--colored.Toastify__toast--error {
  color: var(--toastify-text-color-error);
  background: var(--toastify-color-error);
}

.Toastify__progress-bar-theme--light {
  background: var(--toastify-color-progress-light);
}
.Toastify__progress-bar-theme--dark {
  background: var(--toastify-color-progress-dark);
}
.Toastify__progress-bar--info {
  background: var(--toastify-color-progress-info);
}
.Toastify__progress-bar--success {
  background: var(--toastify-color-progress-success);
}
.Toastify__progress-bar--warning {
  background: var(--toastify-color-progress-warning);
}
.Toastify__progress-bar--error {
  background: var(--toastify-color-progress-error);
}
.Toastify__progress-bar-theme--colored.Toastify__progress-bar--info, .Toastify__progress-bar-theme--colored.Toastify__progress-bar--success, .Toastify__progress-bar-theme--colored.Toastify__progress-bar--warning, .Toastify__progress-bar-theme--colored.Toastify__progress-bar--error {
  background: var(--toastify-color-transparent);
}

.Toastify__close-button {
  color: #fff;
  background: transparent;
  outline: none;
  border: none;
  padding: 0;
  cursor: pointer;
  opacity: 0.7;
  transition: 0.3s ease;
  -ms-flex-item-align: start;
      align-self: flex-start;
}
.Toastify__close-button--light {
  color: #000;
  opacity: 0.3;
}
.Toastify__close-button > svg {
  fill: currentColor;
  height: 16px;
  width: 14px;
}
.Toastify__close-button:hover, .Toastify__close-button:focus {
  opacity: 1;
}

@keyframes Toastify__trackProgress {
  0% {
    transform: scaleX(1);
  }
  100% {
    transform: scaleX(0);
  }
}
.Toastify__progress-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 5px;
  z-index: var(--toastify-z-index);
  opacity: 0.7;
  transform-origin: left;
}
.Toastify__progress-bar--animated {
  animation: Toastify__trackProgress linear 1 forwards;
}
.Toastify__progress-bar--controlled {
  transition: transform 0.2s;
}
.Toastify__progress-bar--rtl {
  right: 0;
  left: initial;
  transform-origin: right;
}

.Toastify__spinner {
  width: 20px;
  height: 20px;
  box-sizing: border-box;
  border: 2px solid;
  border-radius: 100%;
  border-color: var(--toastify-spinner-color-empty-area);
  border-right-color: var(--toastify-spinner-color);
  animation: Toastify__spin 0.65s linear infinite;
}

@keyframes Toastify__bounceInRight {
  from, 60%, 75%, 90%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  from {
    opacity: 0;
    transform: translate3d(3000px, 0, 0);
  }
  60% {
    opacity: 1;
    transform: translate3d(-25px, 0, 0);
  }
  75% {
    transform: translate3d(10px, 0, 0);
  }
  90% {
    transform: translate3d(-5px, 0, 0);
  }
  to {
    transform: none;
  }
}
@keyframes Toastify__bounceOutRight {
  20% {
    opacity: 1;
    transform: translate3d(-20px, 0, 0);
  }
  to {
    opacity: 0;
    transform: translate3d(2000px, 0, 0);
  }
}
@keyframes Toastify__bounceInLeft {
  from, 60%, 75%, 90%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    transform: translate3d(-3000px, 0, 0);
  }
  60% {
    opacity: 1;
    transform: translate3d(25px, 0, 0);
  }
  75% {
    transform: translate3d(-10px, 0, 0);
  }
  90% {
    transform: translate3d(5px, 0, 0);
  }
  to {
    transform: none;
  }
}
@keyframes Toastify__bounceOutLeft {
  20% {
    opacity: 1;
    transform: translate3d(20px, 0, 0);
  }
  to {
    opacity: 0;
    transform: translate3d(-2000px, 0, 0);
  }
}
@keyframes Toastify__bounceInUp {
  from, 60%, 75%, 90%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  from {
    opacity: 0;
    transform: translate3d(0, 3000px, 0);
  }
  60% {
    opacity: 1;
    transform: translate3d(0, -20px, 0);
  }
  75% {
    transform: translate3d(0, 10px, 0);
  }
  90% {
    transform: translate3d(0, -5px, 0);
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
@keyframes Toastify__bounceOutUp {
  20% {
    transform: translate3d(0, -10px, 0);
  }
  40%, 45% {
    opacity: 1;
    transform: translate3d(0, 20px, 0);
  }
  to {
    opacity: 0;
    transform: translate3d(0, -2000px, 0);
  }
}
@keyframes Toastify__bounceInDown {
  from, 60%, 75%, 90%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    transform: translate3d(0, -3000px, 0);
  }
  60% {
    opacity: 1;
    transform: translate3d(0, 25px, 0);
  }
  75% {
    transform: translate3d(0, -10px, 0);
  }
  90% {
    transform: translate3d(0, 5px, 0);
  }
  to {
    transform: none;
  }
}
@keyframes Toastify__bounceOutDown {
  20% {
    transform: translate3d(0, 10px, 0);
  }
  40%, 45% {
    opacity: 1;
    transform: translate3d(0, -20px, 0);
  }
  to {
    opacity: 0;
    transform: translate3d(0, 2000px, 0);
  }
}
.Toastify__bounce-enter--top-left, .Toastify__bounce-enter--bottom-left {
  animation-name: Toastify__bounceInLeft;
}
.Toastify__bounce-enter--top-right, .Toastify__bounce-enter--bottom-right {
  animation-name: Toastify__bounceInRight;
}
.Toastify__bounce-enter--top-center {
  animation-name: Toastify__bounceInDown;
}
.Toastify__bounce-enter--bottom-center {
  animation-name: Toastify__bounceInUp;
}

.Toastify__bounce-exit--top-left, .Toastify__bounce-exit--bottom-left {
  animation-name: Toastify__bounceOutLeft;
}
.Toastify__bounce-exit--top-right, .Toastify__bounce-exit--bottom-right {
  animation-name: Toastify__bounceOutRight;
}
.Toastify__bounce-exit--top-center {
  animation-name: Toastify__bounceOutUp;
}
.Toastify__bounce-exit--bottom-center {
  animation-name: Toastify__bounceOutDown;
}

@keyframes Toastify__zoomIn {
  from {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
  50% {
    opacity: 1;
  }
}
@keyframes Toastify__zoomOut {
  from {
    opacity: 1;
  }
  50% {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
  to {
    opacity: 0;
  }
}
.Toastify__zoom-enter {
  animation-name: Toastify__zoomIn;
}

.Toastify__zoom-exit {
  animation-name: Toastify__zoomOut;
}

@keyframes Toastify__flipIn {
  from {
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    animation-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    animation-timing-function: ease-in;
  }
  60% {
    transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    opacity: 1;
  }
  80% {
    transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
  }
  to {
    transform: perspective(400px);
  }
}
@keyframes Toastify__flipOut {
  from {
    transform: perspective(400px);
  }
  30% {
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    opacity: 1;
  }
  to {
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    opacity: 0;
  }
}
.Toastify__flip-enter {
  animation-name: Toastify__flipIn;
}

.Toastify__flip-exit {
  animation-name: Toastify__flipOut;
}

@keyframes Toastify__slideInRight {
  from {
    transform: translate3d(110%, 0, 0);
    visibility: visible;
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
@keyframes Toastify__slideInLeft {
  from {
    transform: translate3d(-110%, 0, 0);
    visibility: visible;
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
@keyframes Toastify__slideInUp {
  from {
    transform: translate3d(0, 110%, 0);
    visibility: visible;
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
@keyframes Toastify__slideInDown {
  from {
    transform: translate3d(0, -110%, 0);
    visibility: visible;
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
@keyframes Toastify__slideOutRight {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    transform: translate3d(110%, 0, 0);
  }
}
@keyframes Toastify__slideOutLeft {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    transform: translate3d(-110%, 0, 0);
  }
}
@keyframes Toastify__slideOutDown {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    transform: translate3d(0, 500px, 0);
  }
}
@keyframes Toastify__slideOutUp {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    transform: translate3d(0, -500px, 0);
  }
}
.Toastify__slide-enter--top-left, .Toastify__slide-enter--bottom-left {
  animation-name: Toastify__slideInLeft;
}
.Toastify__slide-enter--top-right, .Toastify__slide-enter--bottom-right {
  animation-name: Toastify__slideInRight;
}
.Toastify__slide-enter--top-center {
  animation-name: Toastify__slideInDown;
}
.Toastify__slide-enter--bottom-center {
  animation-name: Toastify__slideInUp;
}

.Toastify__slide-exit--top-left, .Toastify__slide-exit--bottom-left {
  animation-name: Toastify__slideOutLeft;
}
.Toastify__slide-exit--top-right, .Toastify__slide-exit--bottom-right {
  animation-name: Toastify__slideOutRight;
}
.Toastify__slide-exit--top-center {
  animation-name: Toastify__slideOutUp;
}
.Toastify__slide-exit--bottom-center {
  animation-name: Toastify__slideOutDown;
}

@keyframes Toastify__spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
.toast-notificator .Toastify__toast-container--top-right{top:150px}.toast-notificator .Toastify__toast-container{width:400px}
.certificate-manage .info-block{padding:32px}.certificate-manage .info-block .title{font-weight:600;font-size:12px;line-height:16px;color:#37465a}.certificate-manage .info-block .owner__fio{margin-top:16px;font-weight:700;font-size:28px;line-height:32px}.certificate-manage .info-block .owner__position{font-weight:400;font-size:18px;line-height:24px}.certificate-manage .info-block .info{margin-top:26px;column-gap:32px}.certificate-manage .info-block .info .title{font-weight:400;font-size:15px;line-height:20px;color:#878c94}.certificate-manage .info-block .info .value{font-weight:600;font-size:18px;line-height:24px}.certificate-manage .info-block .info{flex-wrap:wrap}.certificate-manage .info-block .org__name{font-weight:700;font-size:20px;line-height:24px}.certificate-manage .info-block .org__division{font-size:18px;line-height:24px}.certificate-manage .info-block .cert-center__title{font-weight:400;font-size:15px;line-height:20px;color:#878c94}.certificate-manage .info-block .cert-center__name{font-weight:600;font-size:18px;line-height:24px}.certificate-manage .info-block .action-link{align-self:center;cursor:pointer;font-size:15px;font-weight:600;line-height:20px;color:var(--light-blue);margin-right:10px}.certificate-manage .info-block .right-block{display:flex;margin-left:auto}.cert-status__initial{color:#fff;background:#3484f8}.cert-status__created{color:#fff;background:#878c94}.cert-status__active{color:#0ca967;background:#e5fcea}.cert-status__revoked{color:#fff;background:#878c94}.cert-status__expired{color:#fff;background:#878c94}
@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.spinner__wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: auto;
    margin-bottom: auto;
}

.spinner {
    animation: rotate 1s linear infinite;
    background: #003271;
    border-radius: 50%;
    height: 50px;
    width: 50px;
    position: relative;
}

.spinner::before,
.spinner::after {
    content: "";
    position: absolute;
}

.spinner::before {
    border-radius: 50%;
    background: linear-gradient(0deg, hsla(228, 56%, 98%, 1) 50%, hsla(228, 56%, 98%, 0.9) 100%) 0% 0%,
        linear-gradient(90deg, hsla(228, 56%, 98%, 0.9) 0%, hsla(228, 56%, 98%, 0.6) 100%) 100% 0%,
        linear-gradient(180deg, hsla(228, 56%, 98%, 0.6) 0%, hsla(228, 56%, 98%, 0.3) 100%) 100% 100%,
        linear-gradient(360deg, hsla(228, 56%, 98%, 0.3) 0%, hsla(228, 56%, 98%, 0) 100%) 0% 100%;
    background-repeat: no-repeat;
    background-size: 50% 50%;
    top: -1px;
    bottom: -1px;
    left: -1px;
    right: -1px;
}

.spinner::after {
    background: #f8f9fd;
    border-radius: 50%;
    top: 3%;
    bottom: 3%;
    left: 3%;
    right: 3%;
}

.footer{display:flex;flex-wrap:wrap;background-color:#37465a;padding:64px 15%;position:relative;gap:30px;justify-content:start;margin-top:auto}.footer__logo-block{flex:1;margin-right:auto}.footer__logo-link{display:grid;grid-template-columns:56px auto;grid-column-gap:18px;align-items:center}.footer__logo-link-text-container{display:grid;grid-template-rows:repeat(2, min-content)}.footer__logo-link-title{color:#fff;font-size:25px;font-weight:700;line-height:24px;text-transform:uppercase}.footer__logo-link-text{color:#a4a4a4;font-size:16.844px;font-weight:400;line-height:23.78px;letter-spacing:.6px;text-transform:uppercase}.footer__link-text{margin-left:5px;color:#f8f9fd;font-size:15px}.footer__info-message{margin-left:5px;color:#f8f9fd;border-bottom:2px dashed #f8f9fd;font-size:15px;cursor:pointer}@media screen and (max-width: 1445px){.footer__logo-link-title{font-size:15px}.footer__logo-link-text{font-size:9.75px}.footer__logo-link{grid-column-gap:10px}.footer__link-text{font-size:12px}.footer__info-message{font-size:12px}}.footer__logo{display:flex;width:303px;height:62px;background:url(/images/footer-logo-60c87d9f1cc878459b295edcafb5f746.png) no-repeat;background-size:cover}.footer__resolution{max-width:90%}.footer__resolution p{color:#bac1cc;font-size:13px;text-align:left;margin-bottom:0px !important}.footer__info-block div:nth-child(2){margin-top:30px}.footer__digit-sign-icon{display:flex;width:20px;height:20px;background:url(/images/digit-sign-footer-icon-b1dbb6dae93f93c4adda5f15b1a65907.png) no-repeat;background-size:cover}.footer__question-sign-icon{display:flex;width:20px;height:20px;background:url(/images/question-sign-footer-icon-323931de766e92eb63a0f87e645d991f.png) no-repeat;background-size:cover}.footer__instruction-icon{display:flex;align-self:center}.footer__instruction-text-block{margin-top:-5px}.footer__phone-icon{display:flex;width:20px;height:20px;background:url(/images/phone-9932ab1c8c04757ff163a14f7c9d0f7a.png) no-repeat;background-size:contain;align-self:flex-start}.footer__email-icon{display:flex;width:20px;height:20px;background:url(/images/email-8a4f0057be80d4eed4baa6aabbd9cf2f.png) no-repeat;background-size:contain}.footer__contact-string{margin-left:5px;color:#f8f9fd;font-size:20px}.footer__contact-string p{margin-top:0px;font-size:13px}.footer__app-version{color:#a4a4a4;opacity:.3;position:absolute;right:10px;bottom:10px}.footer__link-block{display:flex;flex-direction:column;flex:1;justify-content:center;gap:10px;max-width:450px;margin-right:auto}
.notifications-list-item {
    align-items: center;
    cursor: pointer;
    min-width: 100%;
    display: flex;
}

.notifications-header-list-item {
    padding: 16px 16px 16px 16px;
    align-items: center;
    min-width: 100%;
    display: flex;
}

.notifications-header-list-item:hover {
    background-color: #eff5fe;
}

.notifications-header-list-item > .column:nth-child(1) {
    display: flex;
    flex-direction: column;
    flex: 0.1;
}

.notifications-header-list-item__row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.notifications-header-list-item__selected {
    background-color: #eff5fe;
}

.notifications-list__panel {
    display: flex;
    max-width: 100%;
    justify-content: start;
}

.notifications-list__panel :nth-child(2) {
    margin-left: auto;
}

.notifications-list-item div:nth-child(1) {
    margin-right: 5px;
}

.notifications-list-item div:nth-child(2) {
}

.notifications-list-item div:nth-child(3) {
    margin-left: auto;
}

.notification-list-item__state {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    margin-right: 20px;
}

.notification-list-item__state__new {
    background-color: #3484f8;
}

.notification-list-item__text {
    vertical-align: top;
    font-weight: 600;
    font-size: 15px;
    line-height: 20px;
    cursor: pointer;
}

.notification-list-item__modal-text {
    font-weight: bold;
    font-size: 20px;
    line-height: 24px;
    margin-bottom: 16px;
}

.notification-list-item__modal-info {
    font-size: 15px;
    line-height: 20px;
}

.notification-list-item__date {
    white-space: nowrap;
    font-size: 13px;
    line-height: 18px;
    color: #878c94;
}

.notifications-list-item__title {
    font-size: 18px;
    line-height: 24px;
}

.notification-list-item__modal-content {
    padding: 8px;
}

.notifications-menu-wrapper {
    position: fixed;
    top: 0;
    right: 0;
    min-width: 100%;
    min-height: 100%;
}

.notifications-menu {
    background-color: white;
    position: absolute;
    top: 91px;
    right: 80px;
    box-shadow: 0px 5px 15px 0px #04172e0a;
    width: fit-content;
    min-width: 15%;
}

.notifications-menu__header {
    padding: 8px 16px 8px 16px;
    display: flex;
    justify-content: space-between;
}

.notifications-menu__header h4 {
    margin-right: 40px;
}

.notifications-menu__footer {
    padding: 24px 16px 24px 16px;
    text-align: center;
}

.notifications-menu__delete {
    margin: 0;
    border: none;
    color: #d92f58;
    background: none;
}

.notifications-menu__mark-as-read {
    margin: 0;
    border: none;
    color: #003271;
    background: none;
}

.notifications-menu__select-all {
    margin: 0;
    border: none;
    color: #003271;
    background: none;
}

.notifications-menu__view-all {
    font-weight: 600;
    font-size: 15px;
    line-height: 20px;
    text-align: center;
    color: #3484f8;
}

.notifications-header-list-item__delimeter:not(:last-child) {
    border: 1px solid #f3f5f9;
}

.notifications__delimiter {
    border: 1px solid #e1e6ed;
    opacity: 50%;
}

.notification-list-item__description {
    font-weight: 600;
    font-size: 18px;
    line-height: 24px;
    color: #04172e;
}

.block.notification-item {
    padding: 16px;
}

.notification-list-item__checkbox {
    height: auto;
}

.header__container{display:grid;grid-template-rows:repeat(2, auto);position:sticky;top:0;left:0;z-index:100}.header{position:sticky;display:flex;justify-content:space-between;flex-direction:row;background:#fff;height:90px;min-height:90px;width:100%;min-width:fit-content;align-items:center;top:0;left:0;z-index:100;box-shadow:0 2px 2px -2px gray;column-gap:10px}.header__logo-block{margin-left:20px;display:flex}.header__logo-link{display:grid;grid-template-columns:56px auto;grid-column-gap:18px;align-items:center}.header__logo-link-text-container{display:grid;grid-template-rows:repeat(2, min-content)}.header__logo-link-title{color:#04172e;font-size:25px;font-weight:700;line-height:24px;text-transform:uppercase}.header__logo-link-text{color:#37465a;font-size:16.844px;font-weight:400;line-height:23.78px;letter-spacing:.6px;text-transform:uppercase}@media screen and (max-width: 1445px){.header__logo-link-title{font-size:15px}.header__logo-link-text{font-size:9.75px}.header__logo-link{grid-column-gap:10px}}.header__info-block{display:flex;justify-content:space-between;margin-left:50px}.header__info-item{display:flex;justify-content:space-between;align-items:center;margin-left:20px}.header__digit-sign-icon{display:flex;width:20px;height:20px;background:url(/images/digit-sign-icon-47072a4cc07320d3e8007e9872944926.png) no-repeat;background-size:cover}.header__question-sign-icon{display:flex;width:20px;height:20px;background:url(/images/question-sign-icon-058a5a2ce8f862173a475ae64be4bfbe.png) no-repeat;background-size:cover}.header__info-message{margin-left:5px;border-bottom:2px dashed #003271;font-size:15px;cursor:pointer}.header__search-block{display:flex;justify-content:start;flex:1;margin-left:40px;margin-right:40px;align-items:center;border:1px solid #e1e6ed;border-radius:8px;padding:2px 5px 2px 5px;width:387px}.header__search-icon{width:17px;height:17px;background:url(/images/search-icon-fc61718b962331e5109eea49833fbded.png) no-repeat;background-size:cover}.header__search-field{height:100%;margin-left:5px;border:none;font-size:15px;width:90%;padding-right:5px}.header__search-field:focus{outline:none}.header__search-button{height:80%;background-color:#f3f5f9;border:none;border-radius:4px;font-size:13px;cursor:pointer;margin-left:40px}.header__login-button{margin-right:20px;display:flex;height:48px;padding:10px 24px;justify-content:center;align-items:center;border-radius:8px;border:1px solid #e1e6ed;color:#003271}.header__menu-block{height:100%;min-width:fit-content;display:flex;column-gap:28px}@media screen and (max-width: 1512px){.header__menu-block{column-gap:15px}}.header__menu{align-items:center;height:100%;min-width:fit-content;display:block}.header__menu:hover{box-shadow:-12px -100px 1px -98px #003271 inset}.header__menu .header__menu-item-routes:hover{display:block}.header__menu.current-route{box-shadow:-12px -100px 1px -98px #003271 inset}.header-menu__expand-icon{margin-left:5px}.header__link{display:flex;align-items:center}.unclickable{cursor:default !important}.unclickable>*{cursor:default !important}.header__menu:hover>.header__menu-item .header__link>.header-menu__expand-icon>img{transform:rotate(90deg)}.header__menu-item{display:flex;align-items:center;cursor:pointer;height:100%}.header__menu-item div{color:#003271;font-style:normal;font-weight:600;font-size:.75rem;line-height:20px}.header__menu-item img{width:.312vw;height:.416vw}.header__menu-item:hover{box-shadow:-12px -100px 1px -98px #003271 inset}.header__menu-item:hover~.header__menu-item-routes{display:block}.header__menu-item-routes{display:none;background-color:#fff;box-shadow:0px 0px 2px gray;position:absolute}.header__menu-item-route{padding:10px;cursor:pointer;font-size:.937rem;line-height:1.25rem;color:#000}.header__menu-item-route.current-route{background-color:#f3f5f9}.header__menu-item-route:hover{text-shadow:0px 0px .25px gray}.header__menu:has(.current-route){box-shadow:-12px -100px 1px -98px #003271 inset}.header__user-block{height:100%;display:flex;align-items:center;justify-content:space-between;right:0}.header__user-info{margin-right:20px}.header__fio{font-weight:600;font-size:.74rem;line-height:1.25rem;text-align:right;color:#012657;white-space:nowrap}.header__org{font-size:.81rem;line-height:1.25rem;text-align:right;color:#012657;white-space:nowrap;color:#37465a}.header__user-icon{background:#f2f5f8;border-radius:50%;display:flex;align-items:center;justify-content:center;width:2.75rem;height:2.75rem}.header__user-icon img{height:1rem;width:.75rem}.header__user-data-expand{margin-left:.625rem}.header__user-menu{top:90px;display:none;z-index:100;position:absolute;margin-right:1px;right:0;background-color:#fff;width:16.25rem;padding:4px;box-shadow:0px 0px 1px 0px #223c50;transition-delay:5s}.header__user-menu-item{background:none;padding:10px;width:100%;text-align:left;margin:0px}.header__user-menu-item:hover{font-weight:500;background-color:#f8f9fd}.header__user-menu-item-text{color:#000;font-size:14px}.header__user-img-area{height:100%;width:100%;display:flex;align-items:center;cursor:pointer;padding-right:20px}.header__user-img-area:hover>div:first-child{box-shadow:0px 0px 7px 1px rgba(0,50,113,.6)}.header__user-img-area:hover .header__user-data-expand{transform:rotate(90deg)}.header__user-img-area:hover .header__user-menu{display:block}img.header__user-data-expand{width:.312vw;height:.416vw}.header__user-menu:hover{display:block}.header__notifications-block{position:relative;margin-right:20px}.header__notifications-block svg{width:1.04vw;height:1.09vw}@media screen and (max-width: 1280px){.header__notifications-block svg{width:1.04vw;height:1.09vw}}.header__notifications-icon{display:table;text-align:center;font-weight:700;position:absolute;border-radius:50%;background-color:red;color:#fff;font-size:.5vw;top:-0.45vw;right:-0.45vw;width:.83vw;height:.83vw}@media screen and (max-width: 1280px){.header__notifications-icon{top:-0.25vw;right:-0.25vw}}.header__notifications-icon div{display:table-cell;vertical-align:middle}.header__pinned-block{border-top:1px solid #e8e8e8;width:100%;height:70px;display:grid;background:#fff;align-items:center;padding:20px 25px}.header__system-published-news{position:sticky;display:flex;justify-content:flex-start;flex-direction:row;background:#fff;min-height:84px;width:100%;min-width:fit-content;align-items:center;z-index:90;box-shadow:0px 8px 20px 0px rgba(106,119,139,.1019607843);column-gap:10px}.header__system-published-news-close-button{margin-left:auto}.header__system-published-news-close-icon{margin-right:30px}.header__system-published-news-icon{margin-right:10px;margin-left:20px}
.certs-popup__wrapper {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    padding-top: 20px;
    padding-bottom: 20px;
    z-index: 300;
    overflow: hidden;
    height: 100%;
}

.certs-popup {
    width: 70%;
    height: 100%;
    border-radius: 5px;
    background: #fff;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
}

.certs-popup__top {
    display: flex;
    justify-content: space-between;
    padding: 32px;
    /*border-bottom: 2px solid #E1E6ED;*/
    box-shadow: 0px 4px 4px -4px rgba(60, 60, 60, 0.8);
    flex-shrink: 0;
}

.certs-popup__title {
    font-size: 24px;
    font-weight: bold;
}

.certs-popup__exit {
    background: url(/images/exit-icon-92190c24ed50fe68ac9231734d5ec1da.png) no-repeat;
    background-size: cover;
    height: 21px;
    width: 21px;
    margin-right: 20px;
    cursor: pointer;
}

.certs-popup__content {
    flex-grow: 1;
    overflow: auto;
    min-height: 2em;
    margin: 10px 20px 10px 20px;
}

.certs-popup__content::-webkit-scrollbar {
    /*display: none;*/
}

.certs-popup__headers {
    display: flex;
    flex-direction: row;
    height: 50px;
    background: #ffffff;
    border-radius: 2px;
    align-items: center;
    padding: 20px;
    margin: 5px 0;
    /*box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.05);*/
    justify-content: start;
    color: #878c94;
    font-size: 12px;
}

.certs-popup__header-1 {
    width: 20%;
}

.certs-popup__header-2 {
    width: 50%;
    margin-left: 20px;
}

.certs-popup__header-3 {
    width: 30%;
    margin-left: 30px;
}

.certs-popup__list-item {
    display: flex;
    width: 100%;
    background: #ffffff;
    border-radius: 2px;
    padding: 20px;
    margin: 5px 0;
    /*box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.05);*/
    justify-content: start;
    border-bottom: 1px solid #e1e6ed;
    font-size: 15px;
    font-weight: 600;
    color: black;
}

.certs-popup__list-item:hover {
    background: #edf0fc;
    cursor: pointer;
}

.certs-popup__column-fio {
    width: 20%;
}

.certs-popup__column-authority {
    width: 50%;
    margin-left: 20px;
}

.certs-popup__column-validity {
    width: 30%;
    margin-left: 30px;
}

.certs-popup__bottom {
    padding-top: 20px;
    padding-bottom: 20px;
    /*border-top: solid;*/
    box-shadow: 0px -4px 4px -4px rgba(60, 60, 60, 0.8);
    flex-shrink: 0;
}

.certs-popup__buttons-wrapper {
    display: flex;
    justify-content: end;
}

.certs-popup__button {
    display: flex;
    width: 150px;
    height: 40px;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 400;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    margin-right: 20px;
}

.certs-popup__cancel-button {
    background: #ffffff;
    color: #003271;
    border: solid #003271;
}

.certs-popup__accept-button {
    background: #003271;
    color: #ffffff;
}

.certs-popup__selected {
    background-color: #edf0fc;
}

.acquintance-form__header {
    padding: 32px 32px 16px 32px;
}

.acquintance-form__header div:nth-child(1) {
    display: flex;
    justify-content: space-between;
}

.acquintance-form__header div:nth-child(2) {
    margin-top: 8px;
    font-size: 15px;
    line-height: 20px;
    color: #37465a;
}

.header__title {
    font-weight: 600;
    font-size: 18px;
    line-height: 24px;
}

.acquintance-form__delimiter {
    border: 1px solid #e1e6ed;
}

.acquintance-form__footer {
    text-align: left;
}

.acquintance-form__actions {
    display: flex;
}

.cert-issued-notification {
    margin-left: 5px;
    margin-top: 18px;
    background: #fff4ea;
    color: #764211;
    padding: 18px;
    width: fit-content;
    display: flex;
}

.cert-issued-notification img {
    margin-right: 10px;
}

.acquintance-form__manifest {
    margin-top: 18px;
    font-style: normal;
    font-weight: normal;
    font-size: 15px;
    line-height: 20px;
    color: #04172e;
}

.acquintance-form__accept {
    font-size: 15px;
    line-height: 20px;
}

.acquintance-form__accept label {
    margin: 0;
}

.acquintance-form__actions button {
    display: flex;
}

.acquintance-form__actions button img {
    margin-right: 10px;
}

.acquintance-form__lock-icon {
    width: 19px;
    height: 22px;
}

.auth-form__background{display:flex;flex:1;flex-direction:column;justify-content:center;align-items:center;padding:2% 0px 2% 0px}.auth-form{width:455px;background:#fff;align-items:center;flex-direction:column;padding:60px 25px 60px 25px;border-radius:2px;box-shadow:0px 8px 16px rgba(0,0,0,.16),0px 0px 6px rgba(0,0,0,.08)}.auth-form button{margin-left:0px;margin-right:0px}.auth-form__title{text-align:left;margin-left:20px;font-size:24px;color:#000;font-weight:bold;margin-bottom:10px;margin-top:20px}.auth-form__left-block{padding-left:20px;padding-right:20px}.auth-form__input-title{display:flex;font-size:13px;color:#04172e;font-weight:bold;margin-bottom:3px}.auth-form__column{display:flex;flex-direction:column;text-align:center;width:100%;margin-bottom:20px}.auth-form__description{font-size:15px;font-weight:400;line-height:20px;text-align:left;color:#37465a;letter-spacing:-0.5px}.auth-form__close{margin-left:auto;margin-top:-40px;background:url(/images/exit-icon-92190c24ed50fe68ac9231734d5ec1da.png) no-repeat;background-size:cover;height:21px;width:21px}.auth-form__input{display:flex;width:100%;height:45px;font-size:15px;background:#fff;outline:none;padding:6px 8px;border:0;border-radius:8px;box-shadow:inset 0px -1px 0px #f0f0f0,inset 1px 0px 0px #f0f0f0,inset 0px 1px 0px #f0f0f0,inset -1px 0px 0px #f0f0f0}.auth-form__forgot-password{color:#0c4995;font-weight:500;font-size:14px;margin-top:14px}.auth-form__button{display:flex;height:50px;background:#00114f;border-radius:8px;color:#fff;font-size:15px;font-weight:400;align-items:center;justify-content:center;opacity:.8;cursor:pointer}.auth-form__sec-button{background:#f3f5f9;color:#00114f;width:100%;font-weight:bold}.auth-form__error{display:flex;font-size:14px;font-weight:400;color:#ff521d;align-self:flex-start;margin:10px 5px}.auth-form__error-link{display:flex;font-size:10px;font-weight:400;color:#0555e1;text-decoration:underline;cursor:pointer}
.ccc0{width:100%}.bfad{font-size:36px;font-weight:bold;margin-bottom:32px}.d239{display:grid;grid-template-rows:repeat(2, auto);grid-row-gap:24px;justify-content:center}._6501{height:100%;position:relative;overflow:hidden}.f26a{position:absolute;top:0;left:0}._448b{display:grid;grid-template-columns:36px auto 36px;grid-column-gap:16px}._8844,.a044{width:36px;height:36px}.eb7d{display:grid;align-content:center;justify-content:center;grid-template-columns:repeat(5, min-content);grid-column-gap:8px}._2aeb{width:44px;height:4px;border-radius:2px;background:#bac1cc}._92cd{background:#3484f8}
._2d57{border-radius:24px;background:#134a8f}.a616{width:48px;height:48px}._5fb5{width:20px;height:32px}.d797{width:274px;height:96px}.f4de{display:flex;flex-direction:column;flex:0}._7c1e{color:var(--light);font-size:33px;font-weight:700;line-height:44px;max-width:882px;min-width:650px}._078f{color:var(--light-yellow)}.fe4b{border-radius:4px;background:rgba(9,83,175,.71);width:86px;height:86px;object-fit:contain;display:flex;justify-content:center;align-items:center}.bf87{display:grid;grid-template-columns:repeat(3, auto);grid-template-rows:repeat(2, auto);grid-gap:14px}.bf87 .df74{width:100%;height:100%;max-width:50px;max-height:55px}
.a98d{width:100%;height:284px;padding:32px;display:grid;grid-template-columns:400px auto;grid-column-gap:16px;background:#fff;box-shadow:0px 8px 16px 0px rgba(7,14,39,.04);border-radius:24px}._3848{display:grid;grid-template-rows:min-content min-content auto}._227f{font-size:20px;font-weight:700;line-height:24px}.e205{margin-top:16px;font-size:15px;font-weight:400;line-height:20px}.f018{display:grid;padding:12px 24px;justify-content:center;align-items:center;border-radius:6px;background:#003271;font-size:15px;font-style:normal;font-weight:600;color:#fff;width:fit-content;line-height:0;height:44px;align-self:end}.fdab{display:flex;align-items:end}.f371{width:168px}
._043c{color:var(--dark-blue);font-size:18px;font-weight:700;line-height:24px}.ef90{color:var(--black)}
._6303{grid-area:3/1/4/2}._1920{grid-area:5/1/6/2}.c4f8{grid-area:7/1/8/2}._6ff6{grid-area:9/1/10/2}.a1de{display:flex;grid-template-columns:repeat(auto-fill, minmax(424px, 1fr));gap:24px;flex-wrap:wrap;max-width:1320px;min-width:872px}
.main__wrapper{width:100%;max-width:1360px;margin:48px auto;display:grid;grid-template-rows:auto 64px auto 80px auto 80px auto 80px auto;padding:0 20px}.main__wrapper .main__form{display:flex;flex-direction:column}.main__wrapper .main__form *{text-align:center}.main__wrapper .main__title{margin-top:90px;color:#000;font-weight:bold;font-size:36px;line-height:44px}.main__wrapper .main__header{font-size:48px !important;line-height:56px !important;color:#000;font-weight:bold;margin-bottom:0}.main__wrapper .main-top-block{padding:64px;border-radius:24px;background:#192e71}.main__wrapper .main-top-block__notification-block{display:flex;background:#fff;box-shadow:0px 8px 20px rgba(106,119,139,.1);border-radius:8px;padding:25px;align-items:center}.main__wrapper .main-top-block__information-block{column-gap:30px;display:flex;justify-content:space-between;align-items:center;color:#fff}.main__wrapper .main-top-block__information-block__background{position:relative}.main__wrapper .main-top-block__information-block__dots__icon{position:absolute;top:55px;right:15px}.main__wrapper .main-top-block__information-block__title{margin:0 0 32px;font-weight:700;font-size:53px;line-height:56px}.main__wrapper .main-top-block__information-block__title,.main__wrapper .main-top-block__department-city-block{text-align:left}.main__wrapper .main-top-block__information-block__subtitle{font-style:normal;font-weight:400;font-size:17px;line-height:24px;text-align:left}.main__wrapper .main-top-block__color__text{color:#ff0}.main__wrapper .certificates__and__powers__of__attorney__block{margin-top:64px;display:flex;justify-content:space-between;column-gap:24px}.main__wrapper .number__of__units__item{position:relative;width:100%;display:flex;align-items:center;justify-content:space-around;min-height:272px;background:#fff;border-radius:24px}.main__wrapper .number__of__units__item p{width:100%;max-width:246px;display:flex;flex-direction:column;font-weight:400;font-size:24px;line-height:32px}.main__wrapper .number__of__units__item p strong{margin-bottom:24px;font-weight:700;font-size:48px;line-height:56px}.main__wrapper .number__of__units__item p:first-child strong{color:#003271}.main__wrapper .number__of__units__item p:last-child strong{color:#3484f8}.main__wrapper .number__of__units__item__line{width:0;height:154px;position:absolute;left:50%;border:1px solid #e1e6ed;transform:translateX(-50%);overflow:hidden}.main__wrapper .main__sys-features{margin:0px 50px;display:flex;justify-content:space-between;column-gap:23px}.main__wrapper .sys-features__block:hover{background:#fff}.main__wrapper .sys-features__block{width:100%;border:1px solid #bac1cc;box-sizing:border-box;border-radius:16px;padding:48px 40px 24px 40px}.main__wrapper .block__logo{text-align:left;margin-bottom:24px}.main__wrapper .block__logo img{width:60px;height:60px}.main__wrapper .block__title{text-align:left;font-weight:700;font-size:20px;line-height:24px;min-height:50px}.main__wrapper .block__features{margin-top:34px;display:grid;row-gap:24px}.main__wrapper .features__row{display:flex;justify-content:space-between;column-gap:32px}.main__wrapper .row__bullet{height:25px;width:25px;min-width:25px;background:#003271;border-radius:50%;display:inline-block}.main__wrapper .row__text{font-weight:400;font-size:16px;line-height:24px;text-align:left}.main__wrapper .certificates__block,.main__wrapper .powers__of__attorney__block{display:flex;flex-direction:column;align-items:center}.main__wrapper .certificates__item{display:flex;flex-direction:column;align-items:center}.main__wrapper .certificates__block__items{display:flex}.main__wrapper .certificates__block__button{margin-top:60px !important;padding:12px 24px;background:#003271;color:#fff;border-radius:6px}.main__wrapper .certificates__item{width:100%;max-width:312px}.main__wrapper .certificates__item img{width:312px;height:210px;margin-bottom:47px}.main__wrapper .certificates__item strong{min-height:48px;margin-bottom:16px;font-weight:700;font-size:20px;line-height:24px;color:#04172e}.main__wrapper .certificates__item p{max-width:265px;font-weight:400;font-size:15px;line-height:20px;color:#37465a}.main__wrapper .main__msg{font-size:20px;line-height:28px;color:#37465a;padding:0 20% 3% 20%}.main__wrapper .main__btns-panel button:first-child{margin-right:10px}.main__wrapper .main__btns-panel button:last-child{margin-left:10px}.main__wrapper .main__img-container{margin-top:50px;margin-bottom:100px;background:#192e71;border-radius:24px}.main__wrapper .main__for-whom__container{display:flex;justify-content:center}.main__wrapper .main__for-whom__block{border-radius:16px;padding:50px 40px 50px 40px;border:1px solid #bac1cc}.main__wrapper .main__active-block{background-color:#fff;border:none}.main__wrapper .main__for-whom__block p{font-weight:bold;font-size:24px;line-height:32px;text-align:left}.main__wrapper .main__img-wrapper{width:60px;height:60px;background-color:#0555e1;border-radius:50%;display:flex;align-items:center;justify-content:center}.main__wrapper .main__for-whom__block:first-child{margin-right:15px;flex:1}.main__wrapper .main__for-whom__block:last-child{margin-left:15px;flex:1}.main__wrapper .main__for-whom__block:first-child img{width:26px;height:26px}.main__wrapper .main__for-whom__block:last-child img{width:24px;height:26px}.main__wrapper .main__form li{text-align:left;vertical-align:top;list-style-type:none;padding-bottom:30px;position:relative;padding-left:13px}.main__wrapper .main__form li:not(:last-child):before{margin-top:35px;background-color:#e1e6ed;width:2px;content:"";position:absolute;top:0px;bottom:0px;left:5px;margin-left:-27px}.main__wrapper .main__bullet{width:35px;height:35px;background-color:#003271;border-radius:50%;margin-left:-52.2px;padding:5px;text-align:center;vertical-align:middle;color:#fff;font-weight:600;font-size:15px;line-height:28px;position:absolute}.main__wrapper .main__description{padding-top:10px;text-align:left;font-size:13px;line-height:18px;color:#37465a}.main__wrapper .main__reglaments-docs-wrapper{display:flex;flex-direction:column;row-gap:64px;margin-top:100px;background-color:#fff;padding:96px 0;margin-left:-1000px;margin-right:-1000px}.main__wrapper .main__reglaments-docs-wrapper .main__title{margin:0}.main__wrapper .main__reglaments-docs-container{margin-left:30%;margin-right:30%;display:flex;padding-top:50px;justify-content:space-between}.main__wrapper .main__reglaments-docs-container__arrow{border:solid #bac1cc;border-width:0 3px 3px 0;display:inline-block;padding:3px}.main__wrapper .main__reglaments-docs-container__arrow__wrapper{width:32px;height:32px;display:flex;align-items:center;justify-content:center;border-radius:16px;cursor:pointer}.main__wrapper .main__reglaments-docs-container__arrow__wrapper:hover{background:#f3f5f9}.main__wrapper .main__reglaments-docs-container__arrow__wrapper:hover .main__reglaments-docs-container__arrow{border-color:#003271}.main__wrapper .main__reglaments-docs-container__prev{transform:rotate(135deg);margin-left:3px}.main__wrapper .main__reglaments-docs-container__next{transform:rotate(-45deg);margin-right:3px}.main__wrapper .main__reglaments-docs-item{display:flex;width:100%;max-width:286px}.main__wrapper .main__reglaments-docs-item div{margin-left:10px;display:flex;flex-direction:column;justify-content:flex-start}.main__wrapper .main__reglaments-docs-container p,.main__wrapper .main__reglaments-docs-container a{margin-top:0;margin-bottom:5px;text-align:left}.main__wrapper .main__reglaments-docs-container a{font-weight:600;font-size:15px;line-height:20px;color:#003271}.main__wrapper .main__reglaments-docs-container p{font-size:15px;line-height:20px;color:#878c94}.main__wrapper .main__reglaments-docs-container img{height:24px;width:22px}.main__wrapper .main__news-feed{display:flex;justify-content:flex-start;padding-bottom:50px}.main__wrapper .main__news-item{padding:32px;border:1px solid #e1e6ed;box-sizing:border-box;border-radius:16px;width:33%}.main__wrapper .main__news-item:hover{background:#fff;cursor:pointer}.main__wrapper .main__news-item:nth-child(2){margin-left:20px;margin-right:20px}.main__wrapper .main__news-item p{text-align:left}.main__wrapper .main__news-item p:nth-child(1){font-weight:600;font-size:13px;line-height:18px;color:#3484f8}.main__wrapper .main__news-item p:nth-child(2){font-weight:bold;font-size:20px;line-height:24px}.main__wrapper .main__news-item p:nth-child(3){font-size:15px;line-height:20px;color:#37465a}.main__wrapper .main__title-block{display:block}.main__wrapper .main__title.main__title-block{margin-bottom:36px}
._0d0b{flex-direction:column;flex:0 0 424px}._0908{display:flex;flex-direction:column;flex-grow:0;flex-basis:259px;padding:25px 32px;border-radius:24px;background:var(--white);box-shadow:0 8px 16px 0 var(--shadow)}._8353{color:var(--dunkel-blau)}._4bfd{width:44px;height:43px}._9f88{color:var(--light-blue);font-size:34px;font-weight:700;line-height:44px}._22bd{color:var(--blue);font-size:34px;font-weight:700;line-height:44px}.e879{color:var(--grey-5);font-size:13px;line-height:18px}.b9fc{margin:17px 0;width:100%;height:1px;background:var(--grey-2)}
._713d{display:flex;flex-direction:column;flex:0 0 872px}._40d0{display:grid;grid-template-columns:auto auto;cursor:pointer}._2ff6{justify-self:end;display:grid;grid-template-columns:repeat(2, auto);grid-column-gap:16px}.afb0,._7e17{width:36px;height:36px}.e722{color:var(--dunkel-blau)}._30c1{color:var(--light-blue)}._18c8{color:var(--dark-blue);overflow:hidden;display:-webkit-box;-webkit-box-orient:vertical;-webkit-line-clamp:4;white-space:pre-wrap}.df21{color:var(--grey-5);overflow:hidden;display:block;max-height:40px;-webkit-box-orient:vertical;-webkit-line-clamp:2;white-space:pre-wrap}._4d5f{flex-basis:259px;flex-grow:0;overflow:hidden;display:grid;width:424px;height:259px;padding:32px;background:#fff;border-radius:16px;box-shadow:0px 8px 16px 0px rgba(7,14,39,.04);grid-template-rows:repeat(3, auto);grid-row-gap:16px;cursor:pointer}
.orgs-add__street-house{width:40%}.orgs-add__governing-org{border:1px solid #e1e6ed;border-radius:6px;display:flex;min-width:30vw}.orgs-add__governing-org input{border:none;width:100%}.orgs-add__governing-org button{margin:5px 5px 5px 5px;background:#f3f5f9;border-radius:4px;color:#003271;font-weight:600;font-size:13px}.orgs-add__persons-block{justify-content:space-between !important;align-items:center}.orgs-add__btns-panel button{font-weight:600;font-size:15px;line-height:20px;height:44px}.orgs-add__persons{font-weight:bold;font-size:20px;line-height:28px}.orgs-add__expand{font-weight:600;font-size:15px;line-height:20px;display:flex;justify-content:start;flex-direction:row;align-items:center;color:#003271;cursor:pointer}.orgs-add__expand img{height:12px;width:8px;margin-left:5px;margin-right:5px}.orgs-add__orgs-tree{margin-top:10%;min-height:100px;min-width:100%;border-radius:5px;background:#fff;display:flex;flex-direction:column;flex-wrap:nowrap}.orgs-add__orgs-tree-wrap{position:absolute;z-index:100;top:0;left:0;right:0;bottom:0;background-color:rgba(127,127,127,.5);padding-left:20%;padding-right:20%}.orgs-add__top{display:flex;justify-content:space-between;padding-top:32px;padding-left:32px;padding-bottom:16px;box-shadow:0px 4px 4px -4px rgba(60,60,60,.8);flex-shrink:0}.orgs-add__title{font-size:24px;font-weight:bold}.orgs-add__content{flex-grow:1;overflow:auto;min-height:2em;margin:10px 20px 10px 20px}.orgs-add__headers{display:flex;flex-direction:row;height:50px;background:#fff;border-radius:2px;align-items:center;padding:20px;margin:5px 0;justify-content:start;color:#878c94;font-size:12px}.orgs-add__bottom{padding-top:20px;padding-bottom:20px;box-shadow:0px -4px 4px -4px rgba(60,60,60,.8);flex-shrink:0}.orgs-add__tree-wrapper{position:absolute;top:0;right:0;bottom:0;left:0;background:#f8f9fd;display:flex;justify-content:center;padding-top:20px;padding-bottom:20px;z-index:300;overflow:hidden;height:100%}.orgs-add__orgs-tree{width:70%;background:#fff;display:flex;flex-direction:column;flex-wrap:nowrap}.orgs-add__form .row{column-gap:24px}.orgs-add__form table td:nth-child(8){width:30px}.parent_org_wrapper{position:relative}.parent_org_wrapper__button{position:absolute;right:2px;bottom:6px;color:#003271;font-style:normal;font-weight:600;font-size:13px;height:32px}.org-editor__margin-default{margin-left:0}.org-editor__name{width:828px}.org-editor__address{width:403px}.orgs-editor__full-name-field{width:100%}.orgs-editor__partial-full{max-width:80%}.orgs-editor__select-field{width:403px}.orgs_editor_checkbox_wrapper{display:flex}.orgs_editor_checkbox{margin:5px 0 0 0;padding:0;height:16px;width:16px;background:#fff;border:1px solid #bac1cc;box-sizing:border-box;border-radius:5px}.orgs_editor_checkbox:after{content:"Удалена";margin-left:24px;font-weight:600;font-size:14px;color:#04172e}.orgs_editor_checkbox_label{font-style:normal;font-weight:600;font-size:13px;line-height:18px;color:#04172e}.orgs_editor_label{font-style:normal;font-weight:600;font-size:13px;line-height:18px;color:#04172e}.org_editor_asteriks{margin-bottom:8px}.org_editor_checkbox{margin-bottom:8px}.child-org-wrapper{padding:32px;background:#fff}.child-org-title{font-style:normal;font-weight:bold;font-size:20px;line-height:24px;margin:0px 24px 0 0;color:#04172e;width:340px}.org-block-child{padding:32px;background-color:red;border-bottom:1px solid #e1e6ed}.org-block-child__divisions .cell:nth-child(1){max-width:94%}.org-block-child__divisions .cell:nth-child(2){max-width:6%}.org-block-child__subordinates .organisations__list .cell:nth-child(1){max-width:86%}.org-block-child__subordinates .organisations__list .cell:nth-child(2){max-width:8%}.org-block-child__subordinates .organisations__list .cell:nth-child(3){max-width:6%}
.org-modal-wrapper {
    width: 1096px;
    height: 768px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #ffffff;
    border-radius: 6px;
    overflow: hidden;
}

.org-modal-header {
    position: relative;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    height: 80px;
    box-shadow: inset 0px -1px 0px #e1e6ed;
}

.org-modal-header__title {
    font-family: Source Sans Pro;
    font-style: normal;
    font-weight: bold;
    font-size: 24px;
    line-height: 32px;
    color: #04172e;
    padding: 32px 0 16px 32px;
}

.org-modal-header__exit {
    background: url(/images/exit-icon-92190c24ed50fe68ac9231734d5ec1da.png) no-repeat;
    background-size: cover;
    height: 15px;
    width: 15px;
    cursor: pointer;
    position: absolute;
    right: 32px;
    top: 32px;
    bottom: 16px;
}

.org-modal-body {
}

.org-modal-body-tree {
    margin: 32px 32px !important;
    color: #04172e;
}

.org-modal-body-tree__parent {
}

.org-modal-body-tree__parent div {
    font-family: Source Sans Pro;
    font-style: normal;
    font-weight: 600;
    font-size: 15px;
    line-height: 20px;
    margin-bottom: 5px;
}

.org-modal-body-tree__child div {
    font-family: Source Sans Pro;
    font-style: normal;
    font-weight: normal;
    font-size: 15px;
    line-height: 20px;
}

.org-modal-body__search-wrapper {
    margin-top: 32px;
    display: flex;
    flex-direction: row;
    align-items: center;
}

.org-modal-body__search {
    width: 100%;
    height: 44px;
    border: 1px solid #e1e6ed;
    box-sizing: border-box;
    border-radius: 6px;
    margin: 0px 16px 0 32px;
}

.org-modal-body__search::placeholder {
    font-family: Source Sans Pro;
    font-style: normal;
    font-weight: normal;
    font-size: 15px;
    line-height: 20px;
    color: #878c94;
}

.org-modal-footer {
    position: absolute;
    height: 92px;
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    align-items: flex-start;
    box-shadow: inset 0px 1px 0px #e1e6ed;
    padding: 16px 0px 32px;
    bottom: 0;
    width: 100%;
}

.org-modal-footer__close {
    height: 44px;
    color: #003271;
    background: none;
    font-weight: 600;
    font-size: 15px;
    line-height: 20px;
    padding: 12px 24px 12px 24px;
    border: 1px solid #e1e6ed !important;
}

.org-modal__select-button {
    font-family: Source Sans Pro;
    font-style: normal;
    font-weight: 600;
    color: #ffffff;
    background: #003271;
    height: 44px;
    font-size: 15px;
    line-height: 20px;
    padding: 12px 24px 12px 24px;
    margin-right: 32px;
}

.tree-wrapper {
    height: 500px;
    overflow: auto;
    margin-right: 2px;
}

.tree-wrapper::-webkit-scrollbar {
    width: 6px;
    background-color: #ffffff;
}

.tree-wrapper::-webkit-scrollbar-thumb {
    border-radius: 10px;
    background-color: #787878;
}

.tree-wrapper::-webkit-scrollbar-track {
    border-radius: 10px;
}

.error-page{background:#192e71;border-radius:24px;color:#fff;padding:64px}.error-page .banner{display:flex;flex-direction:row;justify-content:center;padding:18px 24px;background:#fff;box-shadow:0px 8px 20px rgba(106,119,139,.1);border-radius:8px;font-weight:400;font-size:18px;line-height:24px;display:flex;align-items:center;color:#37465a;column-gap:16px}.error-page .msg-container{margin-top:70px}.error-page .msg-container .message{margin-top:30px;font-weight:700;font-size:53px;line-height:56px}.error-page .msg-container .description{margin-top:30px;font-weight:200;font-size:18px;line-height:24px}
.modal__header {
    padding: 32px 32px 16px 32px;
}

.modal__header div:nth-child(1) {
    display: flex;
    justify-content: space-between;
}

.modal__header div:nth-child(2) {
    font-size: 15px;
    line-height: 20px;
    color: #37465a;
}

.modal__title {
    font-weight: 600;
    font-size: 18px;
    line-height: 24px;
}

.modal__delimiter {
    border: 1px solid #e1e6ed;
}

.modal__footer {
    text-align: end;
    padding: 16px 32px 32px 32px;
}

.modal__content {
    padding: 16px 32px 32px 32px;
}

.uni-input .label{height:100%}.uni-input__label-container{margin-bottom:5px}
.show-hide-toggler{display:flex;flex:fit-content;width:100px;margin:0}.show-hide-toggler__option{color:#003271;font-weight:600;font-size:15px;margin-left:10px;cursor:pointer;border:none;width:70px;text-align:center;-moz-user-select:none;-webkit-user-select:none;-ms-user-select:none;user-select:none}.show-hide-toggler__arrow{display:flex;content:"";content:url(/images/expand-icon-aebcc2a9de1fdc62366ceb2abac173a5.png);margin-left:10px;height:12px;width:8px;align-self:center;transform:rotate(90deg);transition-duration:250ms}.show-hide-toggler__arrow--expanded{transform:rotate(-90deg);transition-duration:250ms}
.responsibles .responsibles-list{padding:20px}.responsibles .tbl{overflow:auto}.responsibles .tbl .rowww{min-width:700px}.responsibles .cell{word-break:break-word}.responsibles .cell:nth-child(1){max-width:20%;min-width:140px}.responsibles .cell:nth-child(2){max-width:20%;min-width:140px}.responsibles .cell:nth-child(3){max-width:45%;min-width:315px}.responsibles .cell:nth-child(4){max-width:15%;min-width:105px}.responsibles .actions{display:none}.responsibles .rowww:hover .actions{display:flex}
._3601{padding:32px 32px 16px 32px;min-height:400px;display:flex;flex-direction:column;row-gap:10px}.c26e{margin-top:auto;padding:16px 0px 32px 0px;justify-content:flex-end}
.orgs-list__search-field{width:100%;border-radius:8px;border:1px solid #e1e6ed;padding-left:10px;margin-right:5px}.orgs-list__options .column:nth-child(1){flex:none}.orgs-list__header-status{font-size:13px;height:24px;line-height:22px;font-weight:600;border-radius:20px;padding:0 12px;width:fit-content;word-break:keep-all;text-align:center}.orgs-list__header-status--active{color:#37465a;background:#f3f5f9;border-radius:12px;height:24px;display:flex;flex-direction:column;justify-content:center;align-items:center;padding:10px 10px}.orgs-list__header-status--deleted{color:#ae3646;background:#ffecf0;border-radius:12px;height:24px;display:flex;flex-direction:column;justify-content:center;align-items:center;padding:10px 10px}.orgs-list__header-action{width:2.5%;text-align:center;cursor:pointer}td.orgs-list__header-action{text-align:right}.organisation__divisions-list{margin-top:60px}.orgs-list__buttons-edit{width:40px}.orgs-list__buttons-edit svg path:hover{fill:#003271}.orgs-list__buttons-remove{width:40px;cursor:pointer;margin-right:10px}.orgs-list__buttons-remove svg path:hover{fill:#d92f58}.filter-input{width:116px}.orgs-list__edit-link{cursor:pointer;background:none;border:none}.organisations__list .actions{display:none}.organisations__list .rowww:hover .actions{display:flex}.organisations__list .cell:nth-child(1){flex:0 1 460px;margin-right:32px}.organisations__list .cell:nth-child(2){flex:0 1 200px;margin-right:32px}.organisations__list .cell:nth-child(3){flex:0 1 200px;margin-right:32px}.organisations__list .cell:nth-child(4){flex:0 1 200px;margin-right:32px}.organisations__list .cell:nth-child(5){flex:0 1 110px}.organisation__divisions-list .cell:nth-child(1){max-width:95%}.organisation__divisions-list .cell:nth-child(2){max-width:5%}.rowww.data.oddListItem,.rowww.data.evenListItem{box-shadow:none;margin-bottom:0;border-radius:0}.rowww.data.oddListItem{background:#e1e6ed}
.d414{display:flex;flex-direction:column;background:#fff;box-shadow:0px 2px 8px rgba(4,23,46,.08);border-radius:6px;margin-bottom:8px}.d116{display:flex;flex-direction:row;justify-content:space-between;align-items:center;background:#fff;padding:20px 24px;box-shadow:0px 2px 8px rgba(4,23,46,.08);border-radius:6px}._1bd6{display:flex;flex:0 1 900px;flex-direction:column;justify-content:flex-start;cursor:pointer;border-radius:5px}._1bd6:hover{background-color:#f5f5f5;transition:background-color 300ms linear}._8e55{font-size:20px;font-weight:bold;color:#000}.e6a7{color:#003271}.a299{color:#37465a;font-size:13px;display:flex;justify-content:flex-start;margin-top:4px}._738e{margin-right:16px}._4393{display:flex;flex-direction:row}.bd35{height:24px;padding:3px 8px;line-height:16px;color:#fff;font-size:13px;font-weight:600;border-radius:12px;margin-right:24px}._0a25{background:#d92f58}.bf03{background:#0ca967}.caa0{width:30px;height:30px;text-align:center;line-height:28px;border-radius:5px}._4a16:hover{cursor:pointer;background-color:#f5f5f5;transition:background-color 300ms linear}.b4e0{max-height:340px;overflow:auto;padding:0 24px 20px}
.ext-search{display:flex;justify-content:start}.ext-search__icon{display:flex;width:.9375rem;height:1.125rem;background:url(/images/extended-search-icon-afb80bc477639a140316a96f3e9cefc9.png) no-repeat;background-size:cover;align-self:center}.ext-search__option{font-size:.9375rem;color:#003271;font-weight:600;margin-left:10px;cursor:pointer;border:none;background-color:#f8f9fd;width:auto !important;text-align:center;-moz-user-select:none;-webkit-user-select:none;-ms-user-select:none;user-select:none}.ext-search__arrow{height:.75rem;width:.5rem;display:flex;content:"";content:url(/images/expand-icon-aebcc2a9de1fdc62366ceb2abac173a5.png);margin-left:10px;align-self:center}.ext-search__arrow--expanded{transform:rotate(90deg)}.ext-search__total{font-size:.9375rem;color:#003271;font-weight:600;margin-left:20px;text-align:center}
.ordered::after{content:"";background:url(/images/svg/sort-7fc157983fae131d1a2fd1d0d939aca0.svg) no-repeat;background-size:contain;min-width:16px;min-height:16px;display:block;margin-left:.3125rem}.ordered.asc::after{background:url(/images/svg/sortAsc-eec378596b3db419e479c9b829be4b21.svg) no-repeat}.ordered.desc::after{background:url(/images/svg/sortDesc-c22383ceb415f9c4a5620c897f1e690d.svg) no-repeat}
.applications-manage__buttons{margin-bottom:20px}.applications-manage__status{font-weight:600;font-size:15px;line-height:20px;align-self:center;margin-left:20px;margin-bottom:30px;border-radius:20px;padding:10px 15px 10px 15px}.status__draft{color:#fff;background:#878c94}.status__validation-awaiting{color:#764211;background:#fff4ea}.status__dss-registration{color:#fff;background:#003271}.status__need-rework{color:#3484f8;background:#f3f5f9}.status__key-pair-generation{color:#3484f8;background:#f3f5f9}.status__request-formation{color:#fff;background:#3484f8}.status__awaiting-files-send{color:#fff;background:#878c94}.status__sign-awaiting{color:#764211;background:#fff4ea}.status__ready-to-send{color:#764211;background:#fff4ea}.status__is-fk-sended{color:#3484f8;background:#f3f5f9}.status__certificate-familiarization{color:#3484f8;background:#f3f5f9}.status__cert-ready-to-issued{color:#3484f8;background:#f3f5f9}.status__installing{color:#0ca967;background:#e7f6f0}.status__rejected{color:#d92f58;background:#f3f5f9}.status__completed{color:#0ca967;background:#e7f6f0}.status__certificate-obtain{color:#3484f8;background:#f3f5f9}.sign-form__wrapper{display:flex;flex:1}.sign-form{background-color:#fff;min-height:500px;margin:5% 20% 10% 20%;display:flex;flex-direction:column;box-shadow:0px 2px 8px rgba(4,23,46,.08)}.sign-form__header{display:flex;justify-content:space-between;align-items:center;padding:14px 30px 0 30px;border-bottom:1px solid #e1e6ed}.sign-form__header p{font-weight:600;font-size:18px;line-height:24px}.sign-form__body{flex:5;padding:40px}.sign-form__footer{text-align:center;border-top:1px solid #e1e6ed}.sign-form__footer button{width:30%;margin-top:24px;margin-bottom:32px}.date-input-simple{margin:0px;padding:0px 5px 0px 10px;color:#878c94;font-size:15px;font-weight:400;text-transform:uppercase;background:none;min-width:150px}.date-input-simple.with-value{color:#000}.date-input-simple::-webkit-calendar-picker-indicator{background:url(/images/svg/calendar-809edce25185bdbac03702ca4a21125a.svg) no-repeat;height:20px;width:20px;display:inline-block;margin-top:2px}.radio-input-custom{-webkit-appearance:none;background:url(/images/svg/radio-unchecked-8bb63d36e00d39a406bda7f23b5fe8a6.svg) no-repeat;width:18px;height:18px;display:inline-block;border:none;background-position:center}.radio-input-custom:checked{background:url(/images/svg/radio-checked-096bd18d83fc96af41ec413cd000ee3f.svg) no-repeat;width:18px;height:18px;display:inline-block;border:none;background-position:center}.radio-input-custom:hover{border:none}.radio-input-content-custom{display:flex;justify-content:start;align-items:center;gap:8px}.checkbox-input-custom{-webkit-appearance:none;background:url(/images/svg/checkbox-unchecked-98bda9dc403b7237915fda0593f7f468.svg) no-repeat;width:20px !important;height:20px !important;display:inline-block;border:none;background-position:center}.checkbox-input-custom:checked{background:url(/images/svg/checkbox-checked-95a4b262ed6aa3e6e69334f896f8a6a9.svg) no-repeat;width:20px !important;height:20px !important;display:inline-block;border:none;background-position:center}.checkbox-input-custom:hover{border:none}
.dialog__form {
    padding: 30px;
}

.dialog__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 0 20px 0;
}

.dialog__footer {
    margin-top: 30px;
    display: flex;
    justify-content: end;
}

.dialog__title {
    font-weight: 600;
    font-size: 18px;
    line-height: 24px;
}

.dialog__subtitle {
    color: #04172e;
    font-weight: 600;
    font-size: 13px;
    line-height: 18px;
    margin-bottom: 5px;
}

.dialog__content textarea {
    width: 100%;
    max-width: 100%;
    padding: 10px 15px 10px 15px;
    border: 1px solid #e1e6ed;
    border-radius: 6px;
    overflow: auto;
    outline: none;
    resize: none; /*remove the resize handle on the bottom right*/
}

.dialog__notification {
    margin-bottom: 20px;
}

.dialog__notification__message {
    margin-top: 25px;
    font-size: 15px;
    line-height: 20px;
    font-weight: 400;
    color: #04172e;
}

._2fb0{display:flex;flex-direction:row;margin:24px 40px -40px;padding-top:10px;justify-content:flex-start;width:calc(100vw - 80px);overflow:hidden;position:relative}._2fb0._9b45{justify-content:center}.dc44,._9dad{height:100%;position:absolute;width:320px;z-index:2}.dc44{left:0;top:0;background:linear-gradient(90deg, #f8f9fd 0%, #f8f9fd 12%, rgba(248, 249, 253, 0) 100%)}._9dad{top:0;left:calc(100% - 320px);background:linear-gradient(270deg, #f8f9fd 0%, #f8f9fd 12%, rgba(248, 249, 253, 0) 100%)}._91ff,.eeb3{position:absolute;z-index:2;top:18px;cursor:pointer}._91ff{left:0}.eeb3{left:calc(100% - 30px)}._96e4{display:flex;flex-direction:row;justify-content:center}._488a{display:flex;flex-direction:column}._488a:not(:first-child){margin-left:-8px}.c009{display:flex;flex-direction:row;align-items:center}.c009._7692{margin-top:-8px}._4bec{display:flex;flex-direction:row;flex:0 0 56px;justify-content:center;align-items:center;height:56px;border-radius:50%;border:6px solid #000;background:#fff;z-index:1}._4bec.a0dc{border-color:#0ca967}._4bec.a0dc svg{fill:#0ca967}._4bec.cede{border-color:#0ca967}._4bec.cede svg{fill:#0ca967}._4bec._7692{flex:0 0 72px;height:72px;border-color:#3484f8}._4bec._7692 svg{fill:#3484f8}._4bec._0c1d{border-color:#e1e6ed}._4bec._0c1d svg{fill:#bac1cc}._4bec.e451{border-color:#d92f58}._4bec.e451 svg{fill:#d92f58}.e4b9{display:flex;flex-direction:row;padding:10px 20px;white-space:nowrap;margin-left:-10px;font-size:18px;font-weight:700}.e4b9.a0dc{color:#fff;background:#53c194}.e4b9.cede{color:#fff;background:#53c194}.e4b9._7692{color:#003271;background:repeating-linear-gradient(61deg, #b8d3fc, #b8d3fc 12px, rgba(70, 82, 152, 0) 12px, rgba(70, 82, 152, 0) 24px);margin-left:-20px;padding:10px 25px}.e4b9._0c1d{color:#878c94;background:#e1e6ed}.e4b9.a97d{border-top-right-radius:20px;border-bottom-right-radius:20px}.e4b9.e451{color:#fff;background:#d92f58}._8358{display:flex;flex-direction:row;margin:4px -10px 0 66px;font-size:13px;line-height:18px}._8358.a0dc{visibility:hidden}._8358.cede{color:#003271}._8358._7692{margin-left:72px;color:#003271}._8358._0c1d{color:#878c94}._8358.e451{color:#d92f58}
._3bd7{display:block;margin:28px 0 24px;font-size:15px}._204c{display:inline-block;margin-right:10px}.b577{color:#37465a}._0692{color:#3484f8;display:inline-block}
.application-oids__search{width:40vw !important}.application-oids__default-oids,.application-oids__added-oids{display:flex;column-gap:5px;font-size:15px;font-weight:400;line-height:20px;color:#878c94}.application-oids__selected-oids{margin-top:24px}.application-oids__block{max-height:400px;overflow:auto}.application-oids__collapser{font-size:15px;font-weight:600;line-height:20px;letter-spacing:0em;text-align:left;color:#3484f8}.application-oids__nothing-selected{margin-top:16px;font-size:15px;line-height:20px;color:#878c94}.oid-item{display:flex;align-items:start;padding:10px 0 10px 0}.oid-item__delimiter{border:1px solid #e1e6ed}.oid-item__added{background:#f8f9fd;border-radius:6px;padding:18px 16px 18px 16px}.oid-item div{display:flex}.oid-item__add{background-color:#ebf3fe !important;padding:10px;display:flex;align-items:center;justify-content:center;border-radius:0}.oid-item__remove{background-color:#f5e5ed !important;padding:10px;display:flex;align-items:center;justify-content:center;border-radius:0}.oid-item div :nth-child(1){width:12px;height:12px}.oid-item div:nth-child(2){font-weight:600;font-size:15px;line-height:20px;margin-left:15px;flex:3}.oid-item div:nth-child(3){flex:5}.oid-item div:nth-child(4){flex:9}
.mobile-key-required__error-checkbox,.mobile-key-required__error-checkbox:hover{border:none;-moz-appearance:none;-webkit-appearance:none;-o-appearance:none;background:url(/images/svg/checkbox-red-ba0bfd01b3cc84d307eff396c39892f2.svg);width:18px !important;height:18px !important;display:inline-block;background-position:center}.mobile-key-required__has-active-demand{border:none;-moz-appearance:none;-webkit-appearance:none;-o-appearance:none;background:url(/images/svg/checkbox-disabled-d2874baf0ac278e54373366d0a8f6427.svg);width:18px !important;height:18px !important;display:inline-block;background-position:center}.mobile-key-required__has-active-demand:hover{border:none}
.application-attachments__doc-info{font-size:13px;line-height:18px;color:#878c94}.application-attachment{flex:1}.application-attachments__doc-date{flex:1}.application-attachments__doc-select{background:#f3f5f9;border-radius:4px !important;color:#003271;font-weight:600;font-size:13px;padding:12px 24px;cursor:pointer;width:fit-content}.application-attachments__doc-select__disabled{cursor:unset}.application-attachments__file{margin-top:10px;display:flex;align-items:center}.application-attachments__file>*{margin-right:15px}.application-attachments__file div{font-size:15px;line-height:20px}.application-attachments__file-icon{width:18px;height:20px;cursor:pointer}.application-attachments__del-icon{width:14px;height:14px;cursor:pointer}.application-attachments__file-name{margin-left:5px;color:#04172e}.application-attachments__file-size{color:#878c94;white-space:nowrap}.hideAnchor{visibility:hidden;width:1px;height:1px;font-size:0;margin:0;padding:0;line-height:0;position:absolute}
.private-key-block .tooltip{color:#878c94;font-size:15px;line-height:20px;margintop:10px}
.cert-type__text{font-size:15px;font-weight:600;line-height:20px;color:#04172e}.cert-type__column{font-size:13px;font-weight:400;line-height:18px;color:#37465a}.cert-type__row{display:flex;justify-content:start;column-gap:10px}.cert-type__block{display:flex;flex-direction:column;gap:16px;margin-top:20px}.cert-type__input__block{display:flex;margin-left:-5px}
._6a22{display:flex;flex-direction:row;margin:24px 40px -40px;padding-top:10px;justify-content:flex-start;width:calc(100vw - 80px);overflow:hidden;position:relative}._6a22._9d7d{justify-content:center}._038d,.ba25{height:100%;position:absolute;width:320px;z-index:2}._038d{left:0;top:0;background:linear-gradient(90deg, #f8f9fd 0%, #f8f9fd 12%, rgba(248, 249, 253, 0) 100%)}.ba25{top:0;left:calc(100% - 320px);background:linear-gradient(270deg, #f8f9fd 0%, #f8f9fd 12%, rgba(248, 249, 253, 0) 100%)}._91d0,.f0d8{position:absolute;z-index:2;top:18px;cursor:pointer}._91d0{left:0}.f0d8{left:calc(100% - 30px)}._0aa9{display:flex;flex-direction:row;justify-content:center}._71ad{display:flex;flex-direction:column}._71ad:not(:first-child){margin-left:-8px}._6b78{display:flex;flex-direction:row;align-items:center}._6b78._5832{margin-top:-8px}.a858{display:flex;flex-direction:row;flex:0 0 56px;justify-content:center;align-items:center;height:56px;border-radius:50%;border:6px solid #000;background:#fff;z-index:1}.a858._971e{border-color:#0ca967}.a858._971e svg{fill:#0ca967}.a858._5832{flex:0 0 72px;height:72px;border-color:#3484f8}.a858._5832 svg{fill:#3484f8}.a858._5447{border-color:#e1e6ed}.a858._5447 svg{fill:#bac1cc}.a858.bb28{border-color:#d92f58}.a858.bb28 svg{fill:#d92f58}.f1bf{display:flex;flex-direction:row;padding:10px 20px;white-space:nowrap;margin-left:-10px;font-size:18px;font-weight:700}.f1bf._971e{color:#fff;background:#53c194}.f1bf._5832{color:#003271;background:repeating-linear-gradient(61deg, #b8d3fc, #b8d3fc 12px, rgba(70, 82, 152, 0) 12px, rgba(70, 82, 152, 0) 24px);margin-left:-20px;padding:10px 25px}.f1bf._5447{color:#878c94;background:#e1e6ed}.f1bf.fd29{border-top-right-radius:20px;border-bottom-right-radius:20px}.f1bf.bb28{color:#fff;background:#d92f58}._2d91{display:flex;flex-direction:row;margin:4px -10px 0 66px;font-size:13px;line-height:18px}._2d91._971e{visibility:hidden}._2d91._5832{margin-left:72px;color:#003271}._2d91._5447{color:#878c94}._2d91.bb28{color:#d92f58}._4b40{padding-right:65px !important}._8b51{padding-right:85px !important}._245f{padding-right:45px !important}
.dss-registration__download-app-title{color:#04172e;font-weight:600;font-size:18px;font-family:"Source Sans Pro",sans-serif}.dss-registration__download-app-block{display:flex;flex-direction:column}.dss-registration__download-app-text{font-weight:400;font-size:15px;font-family:"Source Sans Pro",sans-serif;text-align:center;padding:0px 0px 30px 0px}.dss-registration__download-imgs{display:flex;flex-direction:row;justify-content:space-between}.dss-registration__download-img{cursor:pointer}.dss-registration__download-app-block-raw{display:flex;flex-direction:row;justify-content:space-between}.dss-registration__download-app-header{font-size:15px;font-family:"Source Sans Pro",sans-serif;font-weight:600;margin-top:10px}.dss-registration__download-app-text-small{font-size:13px;font-family:"Source Sans Pro",sans-serif;font-weight:400;height:48px;padding-left:15px;display:flex;flex-direction:column;justify-content:center}.dss-registration__download-app-block-raw-item{display:flex;flex-direction:column}.dss-registration__download-app-block-raw-item-with-line{display:flex;flex-direction:column;border-left:1px solid #e1e6ed;padding-left:20px}.dss-registration__download-app-text-small-top{font-size:13px;font-family:"Source Sans Pro",sans-serif;font-weight:400;height:48px;padding-left:15px}.dss-registration__download-app-block-raw-item-top{display:flex;flex-direction:column;padding-top:25px}
._2e37{padding-right:140px !important}._4541{padding-right:120px !important}._8978{padding-right:120px !important}.b215{padding-right:120px !important}._307d{padding-right:120px !important}.bef0{padding-right:120px !important}._763d{padding-right:160px !important}._5c5b{padding-right:120px !important}._2ac4{padding-right:120px !important}._7cb0{padding-right:160px !important}
.revocation-application .certificate-manage .info-block{padding:32px 0px}.revocation-application .message{font-weight:400;font-size:15px;line-height:20px;color:#37465a}.revocation-application .document{display:flex;flex-direction:row;justify-content:center;align-items:center;padding:12px 24px;gap:8px;background:#f3f5f9;border-radius:6px;width:fit-content}.revocation-application .document.exists{color:#0ca967}.revocation-application .document.exists::before{content:url(/images/svg/green-tick-e8dabad8849f55d470115cf17a3c3bdc.svg)}.revocation-application .document.required{color:#000}.revocation-application textarea{resize:none;font-weight:400;font-size:15px;line-height:20px;border:#e1e6ed 1px solid;padding:10px}.revocation-application textarea:focus{outline:none !important;border:#e1e6ed 1px solid}
._15eb{display:flex;flex-direction:row;margin:24px 40px -40px;padding-top:10px;justify-content:flex-start;width:calc(100vw - 80px);overflow:hidden;position:relative}._15eb.d2fd{justify-content:center}._4973,.a4f7{height:100%;position:absolute;width:320px;z-index:2}._4973{left:0;top:0;background:linear-gradient(90deg, #f8f9fd 0%, #f8f9fd 12%, rgba(248, 249, 253, 0) 100%)}.a4f7{top:0;left:calc(100% - 320px);background:linear-gradient(270deg, #f8f9fd 0%, #f8f9fd 12%, rgba(248, 249, 253, 0) 100%)}.b362,._0a59{position:absolute;z-index:2;top:18px;cursor:pointer}.b362{left:0}._0a59{left:calc(100% - 30px)}.f017{display:flex;flex-direction:row;justify-content:center}.b75d{display:flex;flex-direction:column}.b75d:not(:first-child){margin-left:-8px}._2d00{display:flex;flex-direction:row;align-items:center}._2d00._049e{margin-top:-8px}.f67e{display:flex;flex-direction:row;flex:0 0 56px;justify-content:center;align-items:center;height:56px;border-radius:50%;border:6px solid #000;background:#fff;z-index:1}.f67e._9a7b{border-color:#0ca967}.f67e._9a7b svg{fill:#0ca967}.f67e._049e{flex:0 0 72px;height:72px;border-color:#3484f8}.f67e._049e svg{fill:#3484f8}.f67e.b2e6{border-color:#e1e6ed}.f67e.b2e6 svg{fill:#bac1cc}.f67e._867f{border-color:#d92f58}.f67e._867f svg{fill:#d92f58}.a97e{display:flex;flex-direction:row;padding:10px 20px;white-space:nowrap;margin-left:-10px;font-size:18px;font-weight:700}.a97e._9a7b{color:#fff;background:#53c194}.a97e._049e{color:#003271;background:repeating-linear-gradient(61deg, #b8d3fc, #b8d3fc 12px, rgba(70, 82, 152, 0) 12px, rgba(70, 82, 152, 0) 24px);margin-left:-20px;padding:10px 25px}.a97e.b2e6{color:#878c94;background:#e1e6ed}.a97e.a573{border-top-right-radius:20px;border-bottom-right-radius:20px}.a97e._867f{color:#fff;background:#d92f58}._83bd{display:flex;flex-direction:row;margin:4px -10px 0 66px;font-size:13px;line-height:18px}._83bd._9a7b{visibility:hidden}._83bd._049e{margin-left:72px;color:#003271}._83bd.b2e6{color:#878c94}._83bd._867f{color:#d92f58}.b188{padding-right:65px !important}._0923{padding-right:85px !important}._3f76{padding-right:70px !important}
._806d{display:flex;flex-direction:row;margin:24px 40px -40px;padding-top:10px;justify-content:flex-start;width:calc(100vw - 80px);overflow:hidden;position:relative}._806d.ead4{justify-content:center}._4a11,.d608{height:100%;position:absolute;width:320px;z-index:2}._4a11{left:0;top:0;background:linear-gradient(90deg, #f8f9fd 0%, #f8f9fd 12%, rgba(248, 249, 253, 0) 100%)}.d608{top:0;left:calc(100% - 320px);background:linear-gradient(270deg, #f8f9fd 0%, #f8f9fd 12%, rgba(248, 249, 253, 0) 100%)}.fbf9,._41ba{position:absolute;z-index:2;top:18px;cursor:pointer}.fbf9{left:0}._41ba{left:calc(100% - 30px)}.a0e3{display:flex;flex-direction:row;justify-content:center}._6775{display:flex;flex-direction:column}._6775:not(:first-child){margin-left:-8px}._99ca{display:flex;flex-direction:row;align-items:center}._99ca._46e6{margin-top:-8px}._5453{display:flex;flex-direction:row;flex:0 0 56px;justify-content:center;align-items:center;height:56px;border-radius:50%;border:6px solid #000;background:#fff;z-index:1}._5453._1f4d{border-color:#0ca967}._5453._1f4d svg{fill:#0ca967}._5453._8b33{border-color:#0ca967}._5453._8b33 svg{fill:#0ca967}._5453._46e6{flex:0 0 72px;height:72px;border-color:#3484f8}._5453._46e6 svg{fill:#3484f8}._5453._128e{border-color:#e1e6ed}._5453._128e svg{fill:#bac1cc}._5453._4b62{border-color:#d92f58}._5453._4b62 svg{fill:#d92f58}._2077{display:flex;flex-direction:row;padding:10px 20px;white-space:nowrap;margin-left:-10px;font-size:18px;font-weight:700}._2077._1f4d{color:#fff;background:#53c194}._2077._8b33{color:#fff;background:#53c194}._2077._46e6{color:#003271;background:repeating-linear-gradient(61deg, #b8d3fc, #b8d3fc 12px, rgba(70, 82, 152, 0) 12px, rgba(70, 82, 152, 0) 24px);margin-left:-20px;padding:10px 25px}._2077._128e{color:#878c94;background:#e1e6ed}._2077.a177{border-top-right-radius:20px;border-bottom-right-radius:20px}._2077._4b62{color:#fff;background:#d92f58}._43a1{display:flex;flex-direction:row;margin:4px -10px 0 66px;font-size:13px;line-height:18px}._43a1._1f4d{visibility:hidden}._43a1._8b33{color:#003271}._43a1._46e6{margin-left:72px;color:#003271}._43a1._128e{color:#878c94}._43a1._4b62{color:#d92f58}
._37dc{padding-right:140px !important}.ab2c{padding-right:120px !important}._2adb{padding-right:120px !important}.e7dc{padding-right:120px !important}._8a59{padding-right:120px !important}.ce5f{padding-right:120px !important}._0edf{padding-right:160px !important}._1151{padding-right:120px !important}._2210{padding-right:120px !important}._1d29{padding-right:160px !important}
.dss-registration__block{background-color:#fff;box-shadow:0px 2px 8px rgba(4,23,46,.08);padding:24px;border-radius:6px}.dss-registration__text{color:#04172e;font-weight:600;font-family:"Source Sans Pro",sans-serif;font-size:15px;line-height:20px;align-self:center}.dss-registration__raw{display:flex;gap:16px}.dss-registration__icon{width:24px;height:24px}.dss-registration__img{align-self:center}.dss-registration__install-app-btn{color:#3484f8;font-weight:600;font-family:"Source Sans Pro",sans-serif;font-size:15px;line-height:20px;cursor:pointer}
.dss-registration__block{background-color:#fff;box-shadow:0px 2px 8px rgba(4,23,46,.08);padding:24px;border-radius:6px}.dss-registration__qrcode-text{color:#04172e;font-weight:400;font-family:"Source Sans Pro",sans-serif;font-size:15px;line-height:20px;align-self:center}.dss-registration__raw{display:flex;gap:16px}.dss-registration__icon{width:24px;height:24px}.dss-registration__img{align-self:center}.dss-registration__qrcode-btn{margin-left:auto}
.dss-registration__scan-code-title{color:#04172e;font-weight:600;font-size:18px;font-family:"Source Sans Pro",sans-serif}.dss-registration__qr-code-block{display:flex;justify-content:center;flex-direction:column;align-items:center}.dss-registration__qr-code_text{width:450px;font-weight:400;font-size:15px;font-family:"Source Sans Pro",sans-serif;text-align:center;padding:0px 0px 40px 0px}.dss-registration__qr-code-replace-btn{display:flex;column-gap:10px;align-items:center}
.monitoring-list-item__error{font-weight:600;font-size:13px;line-height:18px;border-radius:20px;padding:4px 13px;width:min-content;word-break:keep-all}.monitoring-list-item__error__yes{text-align:center;border:1px solid #e1e6ed;box-sizing:border-box;border-radius:20px}.monitoring-list-item__error__no{text-align:center;color:#bac1cc;border:1px solid #e1e6ed;box-sizing:border-box;border-radius:20px}.monitoring-list__search{align-items:center;flex-wrap:wrap;row-gap:5px}.monitoring-list__search>*{margin-right:10px}.monitoring-list__item{cursor:pointer}.monitoring__list .rowww.data{min-width:1100px}.monitoring__list .cell:nth-child(1){max-width:13%;min-width:143px}.monitoring__list .cell:nth-child(2){max-width:30%;min-width:330px}.monitoring__list .cell:nth-child(3){max-width:20%;min-width:220px}.monitoring__list .cell:nth-child(4){max-width:15%;min-width:165px}.monitoring__list .cell:nth-child(5){max-width:15%;min-width:165px}.monitoring__list .cell:nth-child(6){max-width:7%;min-width:77px}
.monitoring-item__operation-id {
    font-weight: 600;
    font-size: 18px;
    line-height: 24px;
    color: #37465a;
    margin-top: 16px;
    margin-bottom: 32px;
}

.monitoring-item textarea {
    max-width: auto;
    font-size: 16px;
    line-height: 24px;
}

.textareaMock {
    height: 10px;
}

.textareaNonResize {
    resize: none;
}

.blocks-container{display:grid;grid-template-columns:30% 70%;grid-template-rows:100%}
._2963{padding:32px;background:#fff;box-shadow:0px 5px 15px rgba(4,23,46,.04);border-radius:6px}.bed5{font-size:24px;font-weight:bold}._5c5c,.cab9{margin:24px 0 32px 0;display:grid;grid-template-rows:auto auto;grid-row-gap:16px}._5c5c{grid-template-columns:150px auto;grid-column-gap:24px}.cab9{grid-template-columns:auto;justify-items:center}._026b{font-size:15px}._7999{font-size:18px;font-weight:600}._5c0a{padding:18px 24px;display:grid;grid-template-rows:auto;grid-template-columns:17px auto;grid-column-gap:9px;background:#f3f5f9;border-radius:6px;width:fit-content}._3df5{width:100%}._17a6{color:#003271;font-size:15px;font-weight:600}
._154c{margin-top:48px;display:flex;flex-direction:column}.d311{font-size:12px;font-weight:600;text-transform:uppercase}._67a0{font-size:36px;font-weight:bold;margin-top:8px}.a3d1{margin-top:24px;display:grid;grid-template-columns:.4fr .6fr;grid-template-rows:auto auto;grid-column-gap:30px;grid-row-gap:16px}
.button_class {
    width: fit-content;
    padding: 10px 24px;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 6px;
    border: 1px solid;
    cursor: pointer;
}

.c8ed{width:648px;padding:32px;margin:auto}._1bf8{padding:24px 0 28px;display:flex;flex-direction:row}._074f{display:flex;flex-direction:column}._7e53{display:flex;margin-left:24px;flex-direction:column;flex:1 0 auto}.eab0{display:flex;column-gap:30px;border-bottom:1px solid #e1e6ed;padding-bottom:16px}.eab0 ._2ffe{display:flex;flex-direction:row;align-items:center;column-gap:12px}.eab0 ._2ffe ._9c8c{font-size:36px;font-weight:bold}.eab0 ._2ffe ._9c8c._5160{color:#3484f8}.eab0 ._2ffe ._9c8c._8212{color:#003271}.eab0 ._2ffe ._6b06{font-size:15px;font-weight:600}._7f27{display:flex;flex-direction:column;padding-top:16px;column-gap:16px}._5388{display:grid;grid-template-columns:auto 218px 20px;grid-template-rows:auto auto auto;grid-row-gap:16px;grid-column-gap:12px;align-items:center}._51d3{font-size:13px;font-weight:400}._842c{font-size:11px;font-weight:400}._905f{border-top:1px solid #e1e6ed;padding-top:16px;display:grid;grid-template-rows:repeat(2, auto);grid-row-gap:8px}.b16f{font-weight:600;font-size:18px;line-height:24px}.e116{display:grid;grid-template-columns:repeat(2, auto);grid-column-gap:8px;justify-content:left;align-items:baseline}.bb4b{font-weight:600;font-size:18px}.a267{font-weight:400;font-size:13px}
._387f{height:64px;display:grid;grid-template-columns:1fr auto;grid-gap:20px;border-bottom:1px solid #e1e6ed;align-items:center}.d657{width:24px;justify-self:start}._12e0{font-size:22px;font-weight:bold;color:#04172e}._2718{font-size:15px;color:#3484f8;display:flex;flex-direction:row;flex-wrap:nowrap;align-items:center;justify-content:flex-end}._5809{margin-left:8px;width:14px}
.ec08{display:grid;grid-template-columns:repeat(auto-fill, minmax(648px, 1fr));grid-template-rows:auto auto;grid-gap:24px;min-width:648px;justify-items:stretch;margin-bottom:24px}._301a{min-width:648px;border-radius:6px;box-shadow:0px 2px 8px rgba(4,23,46,.08);background:#fff}._87c4{grid-area:3/1/4/span 2}@media screen and (max-width: 1885px){._87c4{grid-area:5/1/6/2}}
._00bc{display:grid;grid-template-rows:auto auto auto;grid-template-columns:auto;width:648px;padding:32px;margin:auto}.c7ef{margin-top:32px;background:#f8f9fd;padding:24px;display:grid;grid-template-columns:auto;grid-template-rows:repeat(3, auto)}._94de{font-size:18px}._8eb1{font-size:13px;color:#878c94;line-height:18px}._5d5e{margin-top:16px;padding-top:16px;border-top:1px solid #e1e6ed;display:grid;grid-template-columns:repeat(3, min-content);grid-column-gap:16px}._6398{display:grid;grid-template-columns:auto auto;grid-column-gap:8px;align-items:center}.b2c0{font-size:20px;font-weight:bold}._3525{font-size:15px;color:#37465a}._1a26{margin-top:35px;display:grid;grid-template-columns:repeat(3, auto);grid-column-gap:10px;justify-content:space-between;align-items:center}._1a26 .dfa7,._1a26 ._6c38{cursor:pointer;width:8px}._1a26 ._1d1b{font-size:13px;color:#878c94}
._0c87{width:648px;padding:32px;margin:auto;display:grid;grid-template-rows:repeat(3, min-content)}.ed67{padding:24px 0 24px;display:grid;grid-template-columns:repeat(2, auto);grid-column-gap:24px}._8c86{display:grid;grid-template-rows:auto 20px auto 16px auto}._8c86 ._5de0{font-size:18px;font-weight:bold;grid-area:1/1/2/1}._8c86 ._6045{grid-area:3/1/4/1;display:grid;grid-template-columns:repeat(2, 1fr);grid-column-gap:16px}._8c86 ._6045 .bde0,._8c86 ._6045 ._55bc{display:grid;grid-template-columns:[l1] auto [l2] 8px [l3] auto [l4]}._8c86 ._6045 .bde0 ._2670,._8c86 ._6045 ._55bc ._2670{grid-area:1/l1/1/l2;font-size:36px;font-weight:bold;color:#3484f8}._8c86 ._6045 .bde0 ._8682,._8c86 ._6045 ._55bc ._8682{color:#003271}._8c86 ._6045 .bde0 ._4d01,._8c86 ._6045 ._55bc ._4d01{grid-area:1/l3/1/l4;font-weight:600;font-size:15px;line-height:20px}._8c86 ._8bd6{font-size:13px;grid-area:5/1/6/1}.ba61{display:grid;grid-template-rows:repeat(2, min-content);grid-row-gap:8px;padding-top:16px;border-top:1px solid #e1e6ed}.d715{font-size:18px;font-weight:bold}.de5f{display:grid;grid-template-columns:repeat(3, auto);justify-content:space-between}.ea71{display:grid;grid-template-columns:[l1] auto [l2] 8px [l3] auto [l4] 4px [l5] auto [l6];align-items:center}._9fc2{grid-area:1/l1/2/l2;font-size:18px;font-weight:600}._7622{grid-area:1/l3/2/l4;font-size:13px}._325d{grid-area:1/l5/2/l6}
._9bd7{margin-top:8px;display:flex;flex-direction:column;row-gap:8px}._34c8{display:flex;column-gap:8px}.f0e0{width:14px;height:14px;border-radius:50%}._5fdd{font-size:13px}
._3ed6{display:flex;flex-direction:row;justify-content:center;align-items:center;padding:12px 18px;border-radius:6px;width:fit-content;font-weight:600;font-size:15px;box-shadow:0px 1px 4px rgba(4,23,46,.08)}._66c2{display:grid;grid-template-columns:200px auto;grid-column-gap:32px}._14fb{grid-row-gap:4px}._50e3{display:grid;grid-template-rows:repeat(3, min-content);grid-row-gap:30px;padding:32px}.fe6b{grid-template-rows:repeat(1, min-content)}._4e40{display:grid;grid-template-columns:repeat(2, 1fr);justify-content:space-between}._2788{font-size:24px;font-weight:bold}._24b3{background:#003271;color:#fff;justify-self:end}._3014{display:grid;grid-template-rows:repeat(4, auto);grid-row-gap:16px}._9dd0{font-size:15px;line-height:20px}._7fe2{font-weight:600;font-size:18px;line-height:24px}._9e02{display:grid;grid-template-rows:repeat(2, auto)}.cdb3{font-weight:600;font-size:18px;color:#d92f58;display:flex;align-items:center}._95ee{font-weight:400;font-size:13px;color:#878c94}._16f7 ._1a9d{border-radius:12px;padding:4px 8px;display:flex;align-items:center;justify-content:center;width:fit-content;font-size:13px}._16f7 ._5fec{color:#fff;background:#3484f8}._16f7 ._65a6{color:#fff;background:#878c94}._16f7 ._8fe9{color:#0ca967;background:#e5fcea}._16f7 ._7595{color:#fff;background:#878c94}._16f7 ._9364{color:#fff;background:#878c94}._9aaf{display:grid;grid-template-columns:repeat(3, min-content);grid-column-gap:16px}._9aaf .c81b{background:#003271;color:#fff;justify-self:end}._9aaf ._8bff{background:#f3f5f9;color:#003271}._9aaf ._36de{background:rgba(0,0,0,0);color:#d92f58}._9aaf ._392a{background:#f3f5f9;color:#04172e}._4cb4{display:grid;grid-template-rows:auto auto;grid-row-gap:30px;justify-items:center}
.b104{opacity:1}.b104:hover{opacity:.8;transition:opacity .2s ease-in-out}
.cert-applications__inventory-list{padding:32px;height:100%}.cert-applications__inventory-list .scroll-area{overflow:auto;margin-top:15px;margin-bottom:15px}.cert-applications__inventory-list .attachment{background:#f3f5f9;border-radius:4px !important;color:#003271;font-size:.9375rem;line-height:1.25rem;font-weight:600;padding:.75rem 1.5rem;cursor:pointer;width:fit-content;margin:0}.cert-applications__inventory-list .inventory-header-block{padding:5px}.cert-applications__inventory-list .inventory-header{font-size:.75rem;line-height:1rem;color:#878c94;font-weight:600;text-align:start;user-select:none;margin:25px 0px 0px}.cert-applications__inventory-list .imaginary-offset-by-scroll{width:6px}.cert-applications__inventory-list .attachment__del-icon{width:2.5rem;cursor:pointer;margin-left:.3125rem}.cert-applications__inventory-list .attachment__del-icon:hover svg path{fill:#d92f58}.cert-applications__inventory-list .creating-inventry-list-container{flex:1 1 auto;overflow-y:scroll;height:0;max-height:475px}.cert-applications__inventory-list .creating-inventry-list-tab .rowww.data{min-width:1300px}.cert-applications__inventory-list .creating-inventry-list-tab .cell:nth-child(1){max-width:5%;min-width:65px}.cert-applications__inventory-list .creating-inventry-list-tab .cell:nth-child(2){max-width:8%;min-width:104px}.cert-applications__inventory-list .creating-inventry-list-tab .cell:nth-child(3){max-width:15%;min-width:195px}.cert-applications__inventory-list .creating-inventry-list-tab .cell:nth-child(4){max-width:25%;min-width:325px}.cert-applications__inventory-list .creating-inventry-list-tab .cell:nth-child(5){max-width:25%;min-width:325px}.cert-applications__inventory-list .creating-inventry-list-tab .cell:nth-child(6){max-width:15%;min-width:195px}.cert-applications__inventory-list .creating-inventry-list-tab .cell:nth-child(7){max-width:7%;min-width:91px}.cert-applications__tab-container{flex:1}.create-inventory-list-tab-button{padding-top:35px}
.ffd5{display:grid;grid-template-rows:repeat(2, auto);height:100%}.e3c5{display:grid;grid-template-columns:repeat(auto-fit, minmax(200px, 350px));grid-gap:16px;align-items:center}._6003 input{width:100%}._5188{display:grid;grid-template-columns:repeat(2, 1fr);grid-column-gap:16px}._5188 input{width:100%}._3efd,._8a7f{display:grid;grid-template-columns:repeat(2, auto);grid-column-gap:16px;align-items:center}._5f4f,._6d88{display:flex;flex-wrap:nowrap}._5f4f{width:210px}._6d88{width:235px;justify-self:right}.b996{margin:25px 0 0}.b996,.b5a8{display:grid;grid-template-columns:110px 360px 410px 400px 20px;grid-column-gap:32px}
.context-menu__wrapper {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.context-menu {
    position: fixed;
    width: 420px;
    padding: 8px;
    background: #ffffff;
    box-shadow: 0px 0px 4px rgba(4, 23, 46, 0.01);
    margin: auto;
    z-index: 1;
}

.context-menu__option {
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 10px 12px 10px 8px;
}

.context-menu__option div:nth-child(1) {
    display: flex;
    width: 25px;
    text-align: left;
    align-items: center;
}

.context-menu__option div:nth-child(2) {
    margin-left: 10px;
    font-size: 15px;
    line-height: 20px;
    flex: none;
    order: 1;
    align-self: stretch;
    flex-grow: 1;
    cursor: pointer;
}

.context-menu__option div:hover {
    font-weight: 500;
}

.ee00{padding:8px;display:grid;grid-template-rows:auto;grid-template-columns:auto}._8c63{padding:10px 12px;display:grid;grid-template-columns:16px auto;grid-column-gap:10px;cursor:pointer}._8c63:hover{background:#f8f9fd}._1779{font-size:15px}
.eff4{flex:1 1 auto;overflow-y:scroll;height:0;max-height:650px}
._92c6{display:grid;grid-template-rows:auto auto auto;width:648px;padding:32px;margin:auto}._8a50{padding:24px 0 47px;display:grid;grid-template-columns:repeat(2, auto);grid-column-gap:24px}._241f{width:166px;height:166px;display:grid;grid-template-columns:repeat(2, auto);grid-column-gap:30px;justify-content:center}._9541{display:grid;grid-template-rows:repeat(2, min-content);grid-row-gap:12px}._07f9{font-size:18px;font-weight:600}.c862{display:grid;grid-template-columns:repeat(2, 1fr);grid-column-gap:8px}._8907{background:#f8f9fd;padding:24px;display:grid;grid-template-rows:repeat(3, auto);grid-row-gap:12px;justify-items:center}._4c8b{font-weight:600;font-size:13px;line-height:18px;text-align:center}.cdf6{display:grid;grid-template-columns:repeat(2, auto);grid-column-gap:16px;align-items:end}._5d78{font-size:36px;font-weight:bold;line-height:28px;cursor:pointer}.e277{height:1px;width:100%;background:#e1e6ed}._3ff0{display:grid;grid-template-rows:repeat(2, min-content);grid-row-gap:24px;border-top:1px solid #e1e6ed;padding-top:24px}._7cb4{font-size:18px;font-weight:600}.c785{display:flex;flex-direction:row;justify-content:center;align-items:center;padding:12px 24px;width:fit-content;background:#003271;border-radius:6px;color:#fff;font-weight:600;font-size:15px}
.my-data .page-title:not(:first-child){margin-top:64px}.my-data__personal-data{display:flex;justify-content:start;flex-wrap:wrap;row-gap:1.25rem}.personal-data__icon{display:flex;justify-content:center;align-items:center;width:3.75rem;height:3.75rem;font-size:1.875rem;line-height:2.75rem;letter-spacing:.04em;border-radius:50%;background:#3484f8;color:#fff}.personal-data__info{margin-left:2rem;flex:1}.info__fio{display:flex;flex-wrap:wrap;gap:10px;font-weight:bold;font-size:1.75rem;line-height:2rem}.info__fio p{margin:0px}.info__position{font-size:1.125rem;line-height:1.5rem;margin-top:10px;color:#37465a}.info__contacts{position:relative;margin-top:16px;display:flex;flex-direction:column;overflow:hidden}.my-data label{font-weight:normal;font-size:.9375rem;line-height:1.25rem;color:#878c94}.contacts__account-data{display:flex;column-gap:32px}.contacts__account-data-item h4{margin:0}.contacts__account-data-item{display:flex;flex-direction:column}.info__contacts_dropdown{display:flex;column-gap:2rem}.contacts__org h4{margin:4px 0 0}.info__contacts_toggle_button{width:fit-content;margin:0 0 8px;padding:0 !important;background:none;font-style:normal;font-weight:600;font-size:.9375rem;line-height:1.25rem;color:#3484f8;border:none;outline:none;cursor:pointer}.dropdown_hide{height:0}.personal-data__option{padding:0 !important;height:fit-content;background:none;display:flex;column-gap:10px;font-weight:600;font-size:.9375rem;line-height:1.25rem;color:#3484f8}.personal-data__option.disabled{color:#bac1cc;cursor:initial}.personal-data__right__block{gap:15px;margin-left:auto;flex-wrap:wrap;width:40%;height:50%}.personal-data__button{font-weight:600;font-size:.9375rem;line-height:1.25rem;border-radius:6px;display:flex;align-items:center;column-gap:10px}.personal-data__option__block{align-self:center;margin-left:auto}.personal-data__left__block{display:flex;margin-right:auto;width:60%}.my-data__grid{display:grid;grid-template-columns:.4fr .6fr;gap:30px;margin-bottom:14px}.cert__more{font-weight:600;font-size:15px;line-height:20px;color:#003271;background:none}.digit-sign__responsible{width:100%;max-width:424px;display:flex;flex-direction:column;justify-content:space-between}.selected-responsible{background-color:#f3f5f9 !important;color:#003271;font-weight:600}.digit-sign__cert{flex:.55}.responsible__account-data{margin-top:32px}.responsible__account-data div{display:flex;column-gap:32px}.my-data button{font-weight:600;font-size:.9375rem;line-height:1.25rem;border-radius:6px;display:flex;align-items:center;column-gap:10px}.actions__download:before{content:url(/images/download-acb6a1bd1dc2107e12b6da199f744995.png)}.actions__download{background-color:#f3f5f9;color:#003271}.actions__install:before{content:url(/images/install-585c96f69314d48495ae200ddcd2389a.png)}.actions__install{background-color:#f3f5f9;color:#003271}.actions__terminate:before{content:url(/images/terminate-ba11b98277a91a021e69f3adfbf4594a.png)}.actions__terminate{background-color:#fcecef;color:#d92f58}.digit-sign__certs-stats{display:flex;align-items:center;justify-content:start}.digit-sign__certs-stats div{display:flex;flex-direction:column;align-items:center;margin-right:32px}.certs-stats__count{font-weight:bold;font-size:36px;line-height:44px;color:#37465a}.certs-stats__name{font-size:15px;line-height:24px;color:#04172e}.certs-stats__show-all{display:flex;background:none;font-weight:600;font-size:15px;line-height:20px;color:#3484f8;flex-direction:row !important;align-items:center !important}.certs-stats__show-all:after{content:url(/images/show-85d30fd64374f5a87ed159e23d0c613c.png);margin-top:5px;margin-left:10px}.certs-stats__release{margin-left:auto}.digit-sign__no-active-certs{height:50%;display:flex;flex-direction:column;align-items:center;justify-content:center}.digit-sign__no-active-certs div:first-child{margin-bottom:20px}.cert-param *:nth-child(1){flex:.3}.cert-param *:nth-child(2){flex:1}.cert-param__status{padding:3px 8px;border-radius:12px;width:fit-content;font-weight:600;font-size:13px;line-height:18px}.cert-actions{margin-top:16px}.card__wrapper{margin-bottom:0 !important}.card{min-height:230px}.card .release-new-cert-btn{height:2.75rem;font-size:.9375rem;line-height:1.25rem;border:1px var(--blue) solid;background:var(--blue);color:var(--white);margin-right:0;margin-left:0;padding:.75rem 1.5rem}.card_item__title{display:flex;flex-wrap:wrap;justify-content:space-between;align-items:center;gap:12px}.card_item__title h2{margin:0}.no_valid_cert{margin-bottom:52px}.card_item__title_more{width:fit-content;margin:0;padding:0;border:none;background:none;font-style:normal;font-weight:600;font-size:15px;line-height:20px;color:#003271}.slider_block{display:flex;flex-direction:column;font-style:normal;margin-bottom:0 !important;height:100%}.slider_block__slider{margin-bottom:16px}.slider_block div:last-child{margin-bottom:0}.slider_block__numbers_items{display:flex;flex-wrap:wrap;align-items:center;padding:0;margin:0 0 18px}.slider_block__numbers_item{list-style-type:none;padding-right:10px}.slider_block__number_count{margin-right:8px;font-weight:bold;font-size:20px;line-height:24px;color:#37465a}.slider_block__numbers_link{font-weight:600;font-size:15px;line-height:20px;color:#3484f8;background:none;display:flex;gap:10px;width:fit-content}.slider_block__responsible__selector{display:flex;margin:5px;justify-content:space-between}.slider_block__responsible__selector__slider-icon{height:9px}.slider_block__responsible__selector div{cursor:pointer;width:28px;height:28px;padding:4px;border-radius:6px;text-align:center}.slider_block__next_left,.slider_block__next_right{width:28px;height:28px;padding:0 !important;margin:0;display:flex;align-items:center;justify-content:end;background:rgba(0,0,0,0);border-radius:6px}.slider_block__next_left{transform:rotate(180deg)}.slider_block__inactive{opacity:.5}.executive_block__faces{height:fit-content;display:flex;flex-direction:column}.executive_block__info{padding:16px;background:#f8f9fd;border-radius:8px}.executive_block__info-head{display:flex;flex-direction:row;justify-content:space-between;align-items:baseline}.executive_block__info-head a{font-size:13px}.executive_block__info-email-phone{margin-top:16px}.executive_block__slide-of-slides-text{color:#878c94;font-size:13px}.executive_block__title{margin:0 0 18px;font-weight:bold;font-size:20px;line-height:24px;color:#04172e}.executive_block__full_name{font-weight:600;font-size:18px;line-height:24px;color:#003271}.executive_block__position{font-weight:normal;font-size:13px;line-height:18px;color:#878c94;white-space:nowrap}.executive_block__email{margin-right:32px}.executive_block__email,.executive_block__telephone_number{font-weight:600;font-size:13px;line-height:18px;color:#04172e}.signature_subtitle{margin:0 0 8px;font-weight:600;font-size:12px;line-height:16px;color:#37465a}.electronic_signature__right_block{width:100%}.valid_item_block{margin-top:24px;font-style:normal}.valid_item_block__series_items{display:flex;flex-direction:column;gap:1rem;padding:0;margin:0 0 32px;color:#04172e;line-height:1.5rem}.valid_item_block__series_items>div{display:flex}.valid_item_block__series_items>div>.valid_item_block__property{min-width:30%}.valid_item_block__series_items .toggler-hint{font-weight:400;font-size:.8125rem;line-height:1.125rem;color:#878c94}.valid_item_block__series_text{font-weight:normal;font-size:15px}.valid_item_block__series_key{width:100% !important;display:flex;flex-wrap:nowrap !important;justify-content:initial !important;font-weight:600;font-size:18px}.valid_item_block__series_value{width:100%;position:relative}.valid_item_block__series_value input{width:100%}.series_number{align-items:baseline !important}.valid_item_block__property{font-weight:normal;font-size:15px;line-height:24px;color:#04172e}.valid_item_block__status{display:flex;align-items:center;justify-content:center;padding:3px 8px;background:#0ca967;border-radius:12px;font-style:normal;font-weight:600;font-size:13px;line-height:18px;color:#fff}.valid_item_block__buttons{display:flex}.valid_item_block__buttons button{padding:12px 24px !important;margin-bottom:5px;max-height:44px;font-weight:600;font-size:15px;line-height:20px;border-radius:6px}.valid_item_block__edit_button{padding:0 !important;margin:0;background:none;font-weight:600;font-size:15px;line-height:20px;color:#3484f8}.valid_item_block__request_new_button{white-space:nowrap;background:#003271;color:#fff}.valid_item_block__download_button,.valid_item_block__setup_button{background:#f3f5f9;color:#003271}.valid_item_block__annul_button,.valid_item_block__withdraw_button{background:#fcecef;color:#d92f58}.valid_item_block__save_button{position:absolute;padding:6px 12px;height:32px;top:50%;right:6px;transform:translate(0px, -50%)}.electronic_signature__full{width:100%}.user-orgs-list-item{padding:16px 32px}.user-orgs-list-item:hover{font-weight:500;background-color:#f8f9fd}
.users-list__search{column-gap:16px}.options-icon{text-align:center;width:20px;cursor:pointer}.users-list__sorting{font-weight:600;font-size:15px;line-height:20px;color:#878c94}.users__list .rowww.data{min-width:1100px}.users__list .cell{word-wrap:break-word}.users__list .cell:nth-child(1){max-width:15%;min-width:165px}.users__list .cell:nth-child(2){max-width:15%;min-width:165px}.users__list .cell:nth-child(3){max-width:15%;min-width:165px}.users__list .cell:nth-child(4){max-width:15%;min-width:165px}.users__list .cell:nth-child(5){max-width:10%;min-width:110px}.users__list .cell:nth-child(6){max-width:10%;min-width:110px}.users__list .cell:nth-child(7){max-width:10%;min-width:110px}.users__list .cell:nth-child(8){max-width:8%;min-width:88px}.user-list-sort__label{display:flex;font-style:normal;font-weight:600;font-size:15px;line-height:20px;color:#878c94;cursor:pointer}.user-list-sort__select{position:relative;display:flex;align-items:center;margin-left:24px;overflow:hidden;min-width:202px}.user-list-sort__select:hover{border:none;opacity:.9}.user-list-sort__select-value{width:100%;position:relative;display:flex;justify-content:space-between;column-gap:10px}.user-list-sort__select-value-text{flex:100%;padding:0;margin:0;color:#04172e}.user-list-sort__select-dropdown{position:absolute;min-width:202px;transform:translateY(-200%);z-index:1211;padding:0;background:#fff;border:1px solid #e1e6ed;box-sizing:border-box;box-shadow:0px 2px 8px rgba(4,23,46,.08);border-radius:6px}.user-list-sort__select-dropdown-active{transform:translateY(65%)}.user-list-sort__select-option{padding:8px;list-style:none;color:#04172e}
.user-profile .isBlocked{margin:5px 0 0 0;padding:0;height:16px;width:16px;background:#fff;border:1px solid #bac1cc;box-sizing:border-box;border-radius:5px}.user-profile .isBlocked:after{content:"Заблокирован";margin-left:24px;font-weight:600;font-size:14px;color:#04172e}.user__title{margin-bottom:30px}.user__block-btn:before{content:url(/images/block-f653936d54cd461d780d0ec1bf23ac63.png);margin-right:10px}.user__status{background:#0ca967;border-radius:20px;padding:5px}.user__status__text{font-weight:600;font-size:.9375rem;line-height:1.25rem;color:#fff;margin:5px}.user__status__deleted{background:#d92f58}.user__separator{width:20px;height:0px;border:1px solid #bac1cc;transform:rotate(90deg);flex:none;order:1;flex-grow:0;margin:0px 16px}.user__info-text{font-weight:600;font-size:18px;line-height:24px;color:#37465a}.user__info-staff-status{font-weight:600;font-size:18px;line-height:24px;color:#37465a}.user__info-staff-status .is-dismissed{color:#d92f58}.user__tab{user-select:none;cursor:pointer;padding:20px;font-weight:600;font-size:.9375rem;line-height:1.25rem;color:#878c94}.user__tab__selected{color:#04172e;background:#fff;box-shadow:0px 2px 8px rgba(4,23,46,.08);border-radius:6px 6px 0px 0px}.rights__card{border:1px solid #e1e6ed;box-sizing:border-box;border-radius:6px;margin-bottom:8px;user-select:none}.rights__card__expanded{padding:0px 24px 24px}.rights-card__expanded{transform:rotate(90deg)}.rights-card__title{min-height:64px;padding:20px 24px;cursor:pointer}.rights-container{display:flex;column-gap:8px;flex-wrap:wrap}.rights-container div{margin-bottom:5px}.right__element{width:fit-content;column-gap:10px;padding:8px 12px 8px 16px;background:rgba(52,132,248,.1);border-radius:6px;color:#003271}.select__items{margin-bottom:24px}.select__item{width:fit-content;display:flex;flex-direction:column;align-items:flex-start;padding:8px 12px 8px 16px;margin-bottom:8px;background:rgba(52,132,248,.1);border-radius:6px;color:#003271}.select__item:last-child{margin-bottom:0}.select__text{display:flex;justify-content:center;align-items:center;font-style:normal;font-weight:normal;font-size:.9375rem;line-height:1.25rem}.select__remove{width:17px;height:17px;margin-left:9px;cursor:pointer}.select__remove:hover{opacity:.8}.select__buttons_container{display:flex;align-items:center;justify-content:flex-end;margin-top:16px}.select__button{display:flex;justify-content:center;align-items:center;padding:12px 24px;box-sizing:border-box;border:none;font-style:normal;font-weight:600;font-size:.9375rem;line-height:1.25rem}.select__cancel_button{background:#fff;border:1px solid #e1e6ed;border-radius:6px;margin:0px 16px;color:#003271}.select__action_button{background:#003271;border-radius:6px;color:#fff}.select__button:hover{cursor:pointer;opacity:.8}.copy_rights{display:flex;flex-direction:column}#copy_rights__email{display:flex;justify-content:flex-start;padding:10px 12px;background:#fff;outline:none;line-height:3.4375rem;box-sizing:border-box;border-radius:6px}#copy_rights__email_label{margin-top:4px;font-style:normal;font-weight:normal;font-size:.75rem;line-height:1rem}.rights-card__buttons{column-gap:8px}.rights-card__buttons button{margin:0px !important}.field-react-select__input input{height:32px}.availability{display:flex;flex-direction:column}.availability__item{display:flex;align-items:center;column-gap:14px;white-space:nowrap}.divider{height:1px;margin:24px 0;background:#d9d9d9;width:100%}.reverse{flex-direction:row-reverse !important;justify-content:left}.org-adding-modal__asterisk:after{content:"*";color:#d92f58}
._0879{padding:40px}._4dce{font-family:"Intro Black";font-style:normal;font-weight:900;font-size:36px;line-height:40px;color:#1c1919}._48b2{margin-top:24px;background:#fbfbfb;border:1px solid #f2f2f2;padding:28px}._48b2 .f4de{font-family:"Intro Bold";font-style:normal;font-weight:700;font-size:20px;line-height:24px;margin-bottom:24px}._48b2 .d898{font-family:"Intro Regular";font-style:normal;font-weight:400;font-size:12px;line-height:16px}._48b2 ._10df{padding:11px 12px;background:#fff;border:1px solid #d9d9d9;border-radius:5px}._48b2 ._5614{justify-content:center;align-items:center;padding:10px 20px;gap:4px;width:102px;height:40px;background:#d61916;border-radius:5px;font-family:"Intro Regular";font-style:normal;font-weight:400;font-size:13px;line-height:18px;color:#fff}._48b2 ._2748{display:flex;flex-direction:row;justify-content:center;align-items:center;padding:12px 0px 10px;width:109px;height:40px;border-radius:8px;font-family:"Intro Regular";font-style:normal;font-weight:400;font-size:13px;line-height:18px;color:#d61916;background:none}.ea12 ._0c4c._18df{min-width:1360px}.ea12 .c551:nth-child(1){max-width:64px;color:red}.ea12 .c551:nth-child(2){max-width:164px}.ea12 .c551:nth-child(3){max-width:164px}.ea12 .c551:nth-child(4){max-width:304px}.ea12 .c551:nth-child(5){max-width:360px}.ea12 .c551:nth-child(6){max-width:304px}
.poa__status,.poa__type{font-weight:600;font-size:13px;line-height:18px;border-radius:20px;padding:8px 12px 8px 12px}.poa__status{width:min-content;word-break:keep-all}.poa__type{width:min-content;white-space:nowrap;word-break:keep-all;border:1px solid #e1e6ed;color:#37465a}.poa-list__principal{width:250px}.status__draft{color:#fff;background:#878c94}.status__validation-awaiting{color:#764211;background:#fff4ea}.status__rejected{color:#d92f58;background:#f3f5f9}.status__completed{color:#fff;background:#0ca967}.status__need_rework{color:#fff;background:#3484f8}.status__rejected{color:#fff;background:#d92f58}.poa__list .cell:nth-child(1){max-width:10%}.poa__list .cell:nth-child(2){max-width:12%}.poa__list .cell:nth-child(3){max-width:11%}.poa__list .cell:nth-child(4){max-width:17%}.poa__list .cell:nth-child(5){max-width:13%}.poa__list .cell:nth-child(6){max-width:10%}.poa__list .cell:nth-child(7){max-width:15%}.poa__list .cell:nth-child(8){max-width:9%}.poa__list .cell:nth-child(9){max-width:3%;text-align:center;min-height:100%}
.e43c{display:flex;flex-direction:row;margin:24px 40px -40px;padding-top:10px;justify-content:flex-start;width:calc(100vw - 80px);overflow:hidden;position:relative}.e43c._302e{justify-content:center}.b8a7,.f895{height:100%;position:absolute;width:320px;z-index:2}.b8a7{left:0;top:0;background:linear-gradient(90deg, #f8f9fd 0%, #f8f9fd 12%, rgba(248, 249, 253, 0) 100%)}.f895{top:0;left:calc(100% - 320px);background:linear-gradient(270deg, #f8f9fd 0%, #f8f9fd 12%, rgba(248, 249, 253, 0) 100%)}.f057,.a974{position:absolute;z-index:2;top:18px;cursor:pointer}.f057{left:0}.a974{left:calc(100% - 30px)}.e99e{display:flex;flex-direction:row;justify-content:center}._057f{display:flex;flex-direction:column}._057f:not(:first-child){margin-left:-8px}._3a2b{display:flex;flex-direction:row;align-items:center}._3a2b._192d{margin-top:-8px}.f88f{display:flex;flex-direction:row;flex:0 0 56px;justify-content:center;align-items:center;height:56px;border-radius:50%;border:6px solid #000;background:#fff;z-index:1}.f88f.e6fe{border-color:#0ca967}.f88f.e6fe svg{fill:#0ca967}.f88f._192d{flex:0 0 72px;height:72px;border-color:#3484f8}.f88f._192d svg{fill:#3484f8}.f88f._0121{border-color:#e1e6ed}.f88f._0121 svg{fill:#bac1cc}.f88f._9eee{border-color:#d92f58}.f88f._9eee svg{fill:#d92f58}.c199{display:flex;flex-direction:row;padding:10px 20px;white-space:nowrap;margin-left:-10px;font-size:18px;font-weight:700}.c199.e6fe{color:#fff;background:#53c194}.c199._192d{color:#003271;background:repeating-linear-gradient(61deg, #b8d3fc, #b8d3fc 12px, rgba(70, 82, 152, 0) 12px, rgba(70, 82, 152, 0) 24px);margin-left:-20px;padding:10px 25px}.c199._0121{color:#878c94;background:#e1e6ed}.c199.a735{border-top-right-radius:20px;border-bottom-right-radius:20px}.c199._9eee{color:#fff;background:#d92f58}._60ad{display:flex;flex-direction:row;margin:4px -10px 0 66px;font-size:13px;line-height:18px}._60ad.e6fe{visibility:hidden}._60ad._192d{margin-left:72px;color:#003271}._60ad._0121{color:#878c94}._60ad._9eee{color:#d92f58}
._80bb{padding:16px 32px 32px 32px;display:grid;grid-template-columns:1fr;grid-template-rows:.9fr .1fr;height:825px}._7f16{display:flex;justify-content:space-between;align-items:center}.e25c{display:flex;margin-top:34px;margin-bottom:26px;border-bottom:1px solid #d9d9d9;font-family:Source Sans Pro;font-size:18px;font-weight:400;line-height:24px;letter-spacing:0em;text-align:left;color:#878c94}.e25c .b08f{text-shadow:0px 0px .25px gray;color:#003271;border-bottom:2px solid #003271}.e25c span{flex:1;text-align:center}.e25c span:hover{cursor:pointer}.ab9e{display:flex;flex-direction:column;row-gap:10px}._0db1{font-family:Source Sans Pro;font-size:13px;font-weight:600;line-height:18px;letter-spacing:0em;text-align:left}._4458{max-height:500px;overflow:auto;padding:16px;border-radius:8px;border:1px solid #e1e6ed}.bddb{padding:8px 12px 8px 12px}._4eda{display:flex;justify-content:space-between;align-items:center;padding-bottom:10px;font-family:Source Sans Pro;font-size:18px;font-weight:400;line-height:24px;letter-spacing:0em;text-align:left}._3a49{border-bottom:.5px solid #e1e6ed}._5cfa{padding:8px;border-radius:8px;border:1px solid #e1e6ed;max-height:300px;overflow:auto}._3ce7{display:flex;column-gap:10px;align-items:center;padding:8px 0px;justify-content:space-between}._3ce7:hover{border-radius:8px;background-color:#f8f9fd}._3ce7 ._1b9a{font-family:Source Sans Pro;font-size:15px;font-weight:400;line-height:20px;letter-spacing:0em}._3ce7 ._1b9a .aa8a{color:#878c94}._3ce7 ._1b9a ._11ed{color:#003271;font-weight:700;word-break:break-word}._3ce7 ._678f{cursor:pointer}._3ce7 ._678f:hover svg path{fill:#878c94}._97b8{font-size:15px;font-weight:600;line-height:20px;letter-spacing:0em;text-align:left;color:#003271;margin-bottom:8px}
._9bb2{cursor:pointer;user-select:none;padding:0px 16px}
._2707{padding:1em 2em 1em;display:flex;flex-direction:column;row-gap:.5em;height:100%}.f06e{display:flex;flex-shrink:0}@keyframes _9a42{from{opacity:0;transform:scale(0.99)}to{opacity:1;transform:scale(1)}}._7f68{flex-grow:1}._7f68 .fd55{padding:.5em;cursor:pointer;border-radius:5px;margin-right:3px;margin-left:5px;margin-top:2px}._7f68 .fd55:not(:first-child){margin-top:5px}._7f68 .fd55:hover{background-color:var(--light);box-shadow:0px 0px 3px rgba(4,23,46,.08)}._7f68 .fd55._5caa{background-color:var(--light);box-shadow:0px 0px 3px rgba(0,50,113,.3)}._7f68 .fd55{opacity:0;transform:scale(0.99);animation:_9a42 .1s ease-out forwards}.d5d0{flex-shrink:0}
._4318 input:hover{border:none}._4318 ._51d3{display:flex;flex-direction:row;justify-content:flex-start;align-items:flex-end}._4318 ._51d3 img{margin-bottom:12px}._4318 label{font-weight:400;font-size:15px;line-height:20px;color:#878c94;margin-bottom:0px}._4318 input{border:none;font-weight:600;font-size:18px;line-height:24px;padding-left:0;cursor:default;caret-color:rgba(0,0,0,0)}._4318 ._5fe8{margin-top:24px;display:flex;flex-direction:row;flex-wrap:wrap;gap:10px}._4318 .a20a{margin:0;display:flex;padding:8px;gap:8px;background:#f3f5f9;border-radius:6px;width:fit-content}._4318 .cf36{font-weight:600;font-size:12px;line-height:16px;color:#37465a;margin-bottom:16px}._4318 ._82b4{font-weight:700;font-size:20px}._4318 ._47eb{border-radius:20px;padding:6px 10px;font-size:15px;font-weight:600;height:32px;line-height:18px;margin-bottom:7px}._4318 ._47eb._9ded{background:#0ca967;color:#fff}._4318 ._47eb.da42{background:#d92f58;color:#fff}.a29c{width:110px;margin-right:110px}._3cd5{justify-content:space-between}.a5ee{width:230px}.b4f5{width:55px}._166f{width:80px}._6964{width:150px}
._42fe{position:relative}.ea53{opacity:0;position:absolute;top:0;left:0;width:100%;height:100%;cursor:pointer}._58e7{opacity:.2}._9215{height:.8rem}._0b31{font-style:normal;font-weight:600;font-size:15px;line-height:20px;color:#04172e}
.poa-manage .hidden{display:none !important}.poa-manage .hidden>*{display:none !important}.general_information__row{margin-bottom:16px;max-width:616px}.label_wrapper{display:flex}.lonely_input{width:100%;max-width:296px}.general_information__row_period div input{max-width:80px}.general_information__row_title{display:flex;align-items:center;font-weight:600;font-size:13px;margin-bottom:8px}.general_information__row_title img{margin-left:5px}.general_information__row_title_icon{position:relative;width:308px}.general_information__row_title_icon[tooltip]:hover:after{content:attr(tooltip);position:absolute;max-width:308px;width:100%;padding:8px;left:20px;display:flex;background:rgba(55,70,90,.92);border-radius:2px;color:#f8f9fd}.general_information__row_items{display:flex;align-items:center}.general_information__row_item{display:flex;align-items:center}.general_information__row_item strong{margin-left:16px;font-style:normal;font-weight:600;font-size:13px;line-height:18px;color:#04172e}.general_information__row_item:first-child{margin-right:32px}.general_information__text{max-width:616px;margin-top:8px;font-size:15px;line-height:20px;color:#878c94}.row_title{width:100%;max-width:616px;font-weight:600;font-size:18px;line-height:24px;color:#000}.information__row_group_2{display:grid;grid-template-columns:1fr 1fr;column-gap:24px}.information__row_group_3{display:grid;grid-template-columns:148px 231px 189px;column-gap:24px}.information_name{width:148px !important}.information_surname{width:231px}.information_date{width:189px !important}.information__row_item{margin-bottom:16px}.information__input{width:100%;max-width:616px}.information__row_group_input{width:100%}.principal_information__row_group_input:first-child{margin-right:24px}.representative_information__row_group_2{display:flex}.information__row_group_select_wrapper{flex:1;margin-right:24px}.information__row_group_select{width:100%}.setofpowers_information__row{width:100%;max-width:616px}.powers_of_attorney_manage__top_content{padding:0 0 32px}.powers_of_attorney_manage__title_wrapper{display:flex;align-items:center}.powers_of_attorney_manage__title{margin-right:16px}.powers_of_attorney_manage__title img{margin-right:20px}.powers_of_attorney_manage__status{width:fit-content;padding:6px 10px;border-radius:20px;color:#fff}.powers_of_attorney_manage__buttons{display:flex;align-items:center;column-gap:16px}.author_info{cursor:default;font-size:18px;font-weight:600;line-height:24px;color:#37465a;margin-bottom:1.5em;width:fit-content}.general_information__inactive{position:relative;opacity:.2;cursor:pointer;z-index:0}.general_information__inactive_disabled{position:relative;opacity:.2;cursor:inherit;z-index:0}.general_information__inactive_title{position:relative;cursor:pointer}.general_information__inactive_title_disabled{position:relative;cursor:inherit}.general_information__inactive:hover{cursor:pointer}.general_information__inactive_title[tooltip]:hover:after{content:attr(tooltip);position:absolute;max-width:fit-content;width:100%;padding:8px;left:0;top:30%;display:flex;background:#003271;border-radius:2px;color:#f8f9fd;z-index:1;font-size:12px}.general_information__error{position:absolute}.pao-manage__comment{margin-left:10px;font-weight:600;font-size:18px;line-height:24px}.Select-value-label,.Select-option{white-space:pre-wrap}.signature-type__text{font-size:15px;font-weight:600;line-height:20px;color:#04172e}.signature-type__column{font-size:13px;font-weight:400;line-height:18px;color:#37465a}.signature-type__row{display:flex;justify-content:start;row-gap:10px;column-gap:8px}.selected-powers-block{margin-top:32px;display:flex;flex-direction:column;row-gap:16px;max-height:700px;overflow:auto;padding-right:10px}.selected-power{display:flex;align-items:center;column-gap:16px}.selected-power .selected-power-mnemonic{color:#878c94}.selected-power .selected-power-name{color:#003271;font-weight:700}.selected-power .delete-icon{vertical-align:center}.retrust-type__col{display:flex;flex-direction:column;row-gap:24px}.retrust-type__row{display:flex;justify-content:start;row-gap:10px;column-gap:24px}.retrust-type__text{font-size:15px;font-weight:600;line-height:20px;color:#04172e}.retrust-type__column{font-size:13px;font-weight:400;line-height:18px;color:#37465a;max-width:510px}.retrust-type__row{display:flex;justify-content:start;row-gap:10px;column-gap:5px}.retrust-type-radio__block{display:flex;align-self:flex-start}.retrust_type__radio{height:18px}
.doc-form__header{padding:28px 32px 16px 32px}.doc-form__header div:nth-child(1){display:flex;justify-content:space-between}.doc-form__header div:nth-child(2){font-size:15px;line-height:20px;color:#37465a}.doc-form__header-title{font-weight:600;font-size:18px;line-height:24px}.doc-form__delimiter{border:1px solid #e1e6ed}.doc-form__footer{padding:16px 32px 16px 32px}.doc-form__raw-html .print-form h1{font-size:22px;line-height:27.5px}.doc-form__raw-html .print-form h2{font-size:18px;line-height:22.5px}.doc-form__raw-html .print-form h3{font-size:16px;line-height:20px}.doc-form__raw-html .print-form div,.doc-form__raw-html tr,.doc-form__raw-html td{font-size:12px;line-height:15px}
.user-certs__wrapper {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    padding-top: 20px;
    padding-bottom: 20px;
    z-index: 300;
    overflow: hidden;
    height: 100%;
}

.certs-popup {
    width: 70%;
    height: 100%;
    border-radius: 5px;
    background: #fff;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
}

.user-certs__top {
    display: flex;
    justify-content: space-between;
    padding: 32px;
    /*border-bottom: 2px solid #E1E6ED;*/
    box-shadow: 0px 4px 4px -4px rgba(60, 60, 60, 0.8);
    flex-shrink: 0;
}

.user-certs__title {
    font-size: 24px;
    font-weight: bold;
}

.user-certs__exit {
    background: url(/images/exit-icon-92190c24ed50fe68ac9231734d5ec1da.png) no-repeat;
    background-size: cover;
    height: 21px;
    width: 21px;
    margin-right: 20px;
    cursor: pointer;
}

.user-certs__content {
    flex-grow: 1;
    overflow: auto;
    min-height: 2em;
    margin: 0px 20px 10px 20px;
}

.user-certs__content::-webkit-scrollbar {
    /*display: none;*/
}

.user-certs__headers {
    display: flex;
    flex-direction: row;
    height: 50px;
    background: #ffffff;
    border-radius: 2px;
    align-items: center;
    padding: 20px;
    margin: 5px 0;
    /*box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.05);*/
    justify-content: start;
    color: #878c94;
    font-size: 12px;
    margin-left: 45px;
}

.user-certs__header-1 {
    width: 20%;
}

.user-certs__header-2 {
    width: 50%;
    margin-left: 20px;
}

.user-certs__header-3 {
    width: 30%;
    margin-left: 30px;
}

.user-certs__list-item {
    display: flex;
    width: 100%;
    background: #ffffff;
    border-radius: 2px;
    padding: 20px;
    margin: 5px 0;
    /*box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.05);*/
    justify-content: start;
    border-bottom: 1px solid #e1e6ed;
    font-size: 15px;
    font-weight: 600;
    color: black;
}

.user-certs__list-item:last-child {
    border: none;
}

.user-certs__list-item:hover {
    background: #edf0fc;
    cursor: pointer;
}

.user-certs__column-fio {
    width: 20%;
}

.user-certs__column-authority {
    width: 50%;
    margin-left: 20px;
}

.user-certs__column-validity {
    width: 30%;
    margin-left: 30px;
}

.user-certs__bottom {
    padding-top: 20px;
    padding-bottom: 20px;
    /*border-top: solid;*/
    /*box-shadow: 0px -4px 4px -4px rgba(60, 60, 60, 0.8);*/
    flex-shrink: 0;
}

.user-certs__buttons-wrapper {
    display: flex;
    justify-content: end;
}

.user-certs__button {
    display: flex;
    width: 150px;
    height: 40px;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 400;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    margin-right: 20px;
}

.user-certs__cancel-button {
    background: #ffffff;
    color: #003271;
    border: solid #003271;
}

.user-certs__accept-button {
    background: #003271;
    color: #ffffff;
}

.user-certs__selected {
    background-color: #edf0fc;
}

.notification__form {
    padding: 30px;
}

.notification__icon {
    text-align: center;
    padding: 0 0 20px 0;
}

.notification__title {
    text-align: center;
    font-weight: 600;
    font-size: 18px;
    line-height: 24px;
}

.notification__message {
    margin-top: 25px;
    font-size: 15px;
    line-height: 20px;
}

.notification__footer {
    margin-top: 30px;
    display: flex;
    justify-content: center;
}

.news__documents{width:100%}.news__documents .main__reglaments-docs-wrapper{display:flex;flex-direction:column;row-gap:64px;margin-top:100px;background-color:#fff;padding:96px 0;margin-left:-1000px;margin-right:-1000px}.news__documents .main__reglaments-docs-wrapper .main__title{margin:0}.news__documents .main__reglaments-docs-container{display:flex;padding-top:16px;justify-content:space-between;column-gap:27.5px}.news__documents .main__reglaments-arrows-container{display:flex;padding-top:25px;justify-content:space-between}.news__documents .main__reglaments-docs-container__arrow{border:solid #bac1cc;border-width:0 3px 3px 0;display:inline-block;padding:3px}.news__documents .main__reglaments-docs-container__arrow__wrapper{width:32px;height:32px;display:flex;align-items:center;justify-content:center;border-radius:16px;cursor:pointer}.news__documents .left-navigation-block,.news__documents .right-navigation-block{cursor:pointer}.news__documents .left-navigation-block:hover .main__reglaments-docs-container__arrow__wrapper,.news__documents .right-navigation-block:hover .main__reglaments-docs-container__arrow__wrapper{background:#f3f5f9}.news__documents .left-navigation-block:hover .main__reglaments-docs-container__arrow__wrapper .main__reglaments-docs-container__arrow,.news__documents .right-navigation-block:hover .main__reglaments-docs-container__arrow__wrapper .main__reglaments-docs-container__arrow{border-color:#003271}.news__documents .main__reglaments-docs-container__prev{transform:rotate(135deg);margin-left:3px}.news__documents .main__reglaments-docs-container__next{transform:rotate(-45deg);margin-right:3px}.news__documents .main__reglaments-docs-item{display:flex;width:30%;max-width:286px}.news__documents .main__reglaments-docs-item div{margin-left:10px;display:flex;flex-direction:column;justify-content:flex-start}.news__documents .main__reglaments-docs-container p,.news__documents .main__reglaments-docs-container a{margin-top:0;margin-bottom:5px;text-align:left}.news__documents .main__reglaments-docs-container a{font-weight:600;font-size:15px;line-height:20px;color:#003271}.news__documents .main__reglaments-docs-container p{font-size:15px;line-height:20px;color:#878c94}.news__documents .main__reglaments-docs-container img{height:24px;width:22px}.news__documents .main__reglaments-docs-item{cursor:pointer}
._3b24{display:flex;flex-direction:column;width:100%;height:100%;padding:3% 15% 4% 15%;font-family:"Source Sans Pro";font-style:normal;align-items:center}._3b24 .df7a{display:flex;flex-direction:row;column-gap:24px}._3b24 .df7a ._3674{height:100%;display:flex;flex-direction:column;row-gap:24px}._3b24 .df7a ._3674 .fb83{width:343px;background:#fff;box-shadow:0px 5px 15px rgba(4,23,46,.04);border-radius:6px;padding:32px;gap:10px}._3b24 .df7a ._3674 .fb83 ._8f3b{font-weight:600;font-size:18px;line-height:24px;display:flex;align-items:center;color:#04172e}._3b24 .df7a ._3674 .fb83 ._9c5b{font-weight:400;font-size:15px;line-height:20px;display:flex;align-items:center;color:#37465a}._3b24 .df7a ._3674 .fb83 .de01{margin-top:8px;font-weight:400;font-size:15px;line-height:20px;display:flex;align-items:center;color:#04172e}._3b24 .df7a ._30f1{display:flex;flex-direction:column;align-items:flex-start;padding:32px;gap:16px;isolation:isolate;width:953px;height:100%;background:#fff;box-shadow:0px 5px 15px rgba(4,23,46,.04);border-radius:6px}._3b24 .df7a ._30f1 .bbb5{display:flex;flex-direction:row;column-gap:8px;font-weight:400;font-size:15px;line-height:20px;display:flex;align-items:start;color:#37465a}._3b24 .df7a ._30f1 ._47c4{width:100%}._3b24 .df7a ._30f1 ._8abf{font-weight:400;font-size:15px;line-height:20px;display:flex;align-items:center;color:#04172e}._3b24 .df7a ._30f1 .e68a{width:100%}._7be5{margin-top:12px;font-weight:400;font-size:15px;line-height:20px;color:#3484f8;display:flex}._7be5 .c59c{cursor:pointer;display:flex}._7be5 .c59c img{margin-left:7.3px}.a6c0{font-weight:bold}._755e{overflow-wrap:anywhere}
.main__reglaments-arrows-container{display:flex;padding-top:25px;justify-content:space-between}.main__reglaments-docs-container__arrow{border:solid #bac1cc;border-width:0 3px 3px 0;display:inline-block;padding:3px}.main__reglaments-docs-container__arrow__wrapper{width:32px;height:32px;display:flex;align-items:center;justify-content:center;border-radius:16px;cursor:pointer}.left-navigation-block,.right-navigation-block{cursor:pointer}.left-navigation-block:hover .arrow-text,.right-navigation-block:hover .arrow-text{color:#3484f8}.left-navigation-block:hover .main__reglaments-docs-container__arrow__wrapper,.right-navigation-block:hover .main__reglaments-docs-container__arrow__wrapper{background:#f3f5f9}.left-navigation-block:hover .main__reglaments-docs-container__arrow__wrapper .main__reglaments-docs-container__arrow,.right-navigation-block:hover .main__reglaments-docs-container__arrow__wrapper .main__reglaments-docs-container__arrow{border-color:#003271}.main__reglaments-docs-container__prev{transform:rotate(135deg);margin-left:3px}.main__reglaments-docs-container__next{transform:rotate(-45deg);margin-right:3px}.main__reglaments-docs-item{display:flex;width:30%;max-width:286px}
.uni-modal__header{padding:32px 32px 16px 32px}.uni-modal__header div:nth-child(1){display:flex;justify-content:space-between}.uni-modal__header div:nth-child(2){font-size:15px;line-height:20px}.uni-modal__title{font-weight:600;font-size:18px;line-height:24px}.uni-modal__delimiter{border:1px solid #e1e6ed}.uni-modal__content{height:100%}
.external-certificates-list .no-data-manifest{margin-top:5%;font-family:"Source Sans Pro";font-style:normal;font-weight:400;font-size:14px;line-height:20px;align-items:center;text-align:center;color:#878c94}.external-certificates-list .external-certificates-list__options{display:flex;justify-content:space-between;align-items:center;margin-top:20px}.external-certificates-list .external-certificates-list__option{display:flex;justify-content:start}.external-certificates-list .external-certificates-list__ext-search-icon{display:flex;width:15px;height:18px;background:url(/images/extended-search-icon-afb80bc477639a140316a96f3e9cefc9.png) no-repeat;background-size:cover}.external-certificates-list .external-certificates-list__option-name{color:#003271;font-weight:600;font-size:15px;margin-left:10px;cursor:pointer;border:none;background-color:#f8f9fd;width:auto !important;text-align:center}.external-certificates-list .external-certificates__list .cell:nth-child(1){max-width:15%}.external-certificates-list .external-certificates__list .cell:nth-child(2){max-width:15%}.external-certificates-list .external-certificates__list .cell:nth-child(3){max-width:9%}.external-certificates-list .external-certificates__list .cell:nth-child(4){max-width:20%}.external-certificates-list .external-certificates__list .cell:nth-child(5){max-width:25%}.external-certificates-list .external-certificates__list .cell:nth-child(6){max-width:14%}.external-certificates-list .external-certificates__list .cell:nth-child(7){max-width:2%}
.certificates .from:before{content:"С: ";white-space:nowrap}.certificates .from input{width:80%}.certificates .to:before{content:"По: ";white-space:nowrap}.certificates .to input{width:80%}.status__initial{color:#2a70d4;background:#e8f9ff}.certificates__list .rowww.data{min-width:900px}.certificates__list .cell:nth-child(1){max-width:14%;min-width:200px}.certificates__list .cell:nth-child(2){max-width:14%;min-width:130px}.certificates__list .cell:nth-child(3){max-width:14%;min-width:100px}.certificates__list .cell:nth-child(4){max-width:9%;min-width:100px}.certificates__list .cell:nth-child(5){max-width:9%;min-width:110px}.certificates__list .cell:nth-child(6){max-width:15%;min-width:100px}.certificates__list .cell:nth-child(7){max-width:14%;min-width:110px}.certificates__list .cell:nth-child(8){max-width:7%;min-width:110px}.certificates__list .cell:nth-child(9){max-width:4%}

.organisation-settings input[type=checkbox]{margin:0;height:auto}.organisation-settings input[type=radio]{margin:0;height:auto}.organisation-settings .row .column:not(:first-child){align-items:start;max-width:20%;color:#878c94;font-weight:600;font-size:.75rem;line-height:1rem}
.save-template__wrapper{padding:32px;display:flex;flex-direction:column;row-gap:8px}.save-template__wrapper .actions-block{margin-top:32px;display:flex;justify-content:end}.view-templates__wrapper{padding:32px;display:flex;flex-direction:column;row-gap:8px}.view-templates__wrapper .actions-block{margin-top:32px;display:flex;justify-content:end}.view-templates__wrapper .list{max-height:400px;overflow:auto;padding:16px;border-radius:8px;border:1px solid #e1e6ed}.view-templates__wrapper .list-item-block{display:flex;column-gap:10px;justify-content:space-between;align-items:center;padding:8px}.view-templates__wrapper .list-item-block:hover{background-color:#f8f9fd;border-radius:8px}.view-templates__wrapper .list-item-block .list-item{font-size:15px;font-weight:400;line-height:20px;letter-spacing:0em;text-align:left}
._2e0e{cursor:pointer;margin-right:10px}._2e0e path:hover{fill:#003271}
.d122{cursor:pointer;margin-right:10px}.d122 path:hover{fill:#d92f58}
.d4c0{padding:16px 32px 32px 32px;display:grid;grid-template-columns:1fr;grid-template-rows:.9fr .1fr;min-height:825px}._8be6{display:flex;justify-content:end;align-items:center}._4623{display:flex;margin-top:34px;margin-bottom:26px;border-bottom:1px solid #d9d9d9;font-family:Source Sans Pro;font-size:18px;font-weight:400;line-height:24px;letter-spacing:0em;text-align:left;color:#878c94}._4623 ._2ba7{text-shadow:0px 0px .25px gray;color:#003271;border-bottom:2px solid #003271}._4623 span{text-align:center;flex:1}._4623 span:hover{cursor:pointer}._80a5{display:flex;flex-direction:column;row-gap:10px}.aec6{font-family:Source Sans Pro;font-size:13px;font-weight:600;line-height:18px;letter-spacing:0em;text-align:left}._8227{max-height:500px;overflow:auto;padding:16px;border-radius:8px;border:1px solid #e1e6ed}._32f0{padding:8px 12px 8px 12px}._08bd{display:flex;justify-content:space-between;align-items:center;padding-bottom:10px;font-family:Source Sans Pro;font-size:18px;font-weight:400;line-height:24px;letter-spacing:0em;text-align:left}._2304{border-bottom:.5px solid #e1e6ed}.d196{padding:8px;border-radius:8px;border:1px solid #e1e6ed;max-height:300px;overflow:auto}._3d2e{display:flex;column-gap:10px;align-items:center;padding:8px 0px;justify-content:space-between}._3d2e:hover{border-radius:8px;background-color:#f8f9fd}._3d2e ._2d3b{font-family:Source Sans Pro;font-size:15px;font-weight:400;line-height:20px;letter-spacing:0em;text-align:left}._3d2e ._2d3b ._8142{color:#878c94}._3d2e ._2d3b ._3242{color:#003271;font-weight:700}._3d2e ._7ed4{cursor:pointer}._3d2e ._7ed4:hover svg path{fill:#878c94}._3ddb{font-size:15px;font-weight:600;line-height:20px;letter-spacing:0em;text-align:left;color:#003271;margin-bottom:8px}
.organisation-settings input[type=checkbox]{margin:0;height:auto}.organisation-settings input[type=radio]{margin:0;height:auto}.organisation-settings .row .column:not(:first-child){align-items:start;max-width:20%;color:#878c94;font-weight:600;font-size:.75rem;line-height:1rem}
.responsible-persons__list .page-header{display:flex;justify-content:space-between}.responsible-persons__list .rowww.data{min-width:56.25rem}.responsible-persons__list .cell:nth-child(1){min-width:12.5rem}.responsible-persons__list .cell:nth-child(2){min-width:8.125rem}.responsible-persons__list .cell:nth-child(3){min-width:6.25rem}.responsible-persons__list .cell:nth-child(4){min-width:6.25rem}.responsible-phone{border:none;background-color:#fff !important;font-weight:600;color:#000;padding-left:0px;font-size:.9375rem;line-height:1.25rem;width:100%}.responsible-phone:hover{border:none}
._3098{display:flex;flex-direction:column;align-items:center;background:url(/images/img-bg-login-3680c0d09397e7c4de369329d4531c74.jpg) #707070 no-repeat;height:100%;background-size:cover}._2277{display:block;width:285px;height:62px;background:url(/images/svg/logoЕКС-143fecb93f0dd556a641eb0f4cc4318f.svg) no-repeat;margin-top:174px;cursor:pointer}._43da{display:flex;height:auto;width:480px;background:#fff;flex-direction:column;margin-top:65px;padding:40px 40px 60px}._6950{font-size:24px;color:#000;font-weight:bold;margin-bottom:32px}.caf1{display:flex;font-size:12px;color:#04172e;font-weight:bold;margin-bottom:2px}._12f1{display:flex;flex-direction:column;width:100%}._18e2{margin-bottom:24px}._2045{margin-bottom:32px}.fc30{height:38px;width:100%;margin:0;padding:10px 20px;border-radius:5px;background-color:#fd2323;color:#fff;font-size:13px}._333f{display:flex;width:100%;height:40px;font-size:15px;background:#fff;outline:none;padding:6px 8px;border:0;border-radius:5px;box-shadow:inset 0px -1px 0px #f0f0f0,inset 1px 0px 0px #f0f0f0,inset 0px 1px 0px #f0f0f0,inset -1px 0px 0px #f0f0f0}._99e2{color:#0c4995;font-weight:500;font-size:14px;margin-top:14px}.eb6e{display:flex;width:47%;height:50px;background:#00114f;border-radius:8px;color:#fff;font-size:15px;font-weight:400;align-items:center;justify-content:center;opacity:.8;cursor:pointer}._6d80{display:flex;font-size:14px;font-weight:400;color:#ff521d;align-self:flex-start;margin:10px 5px}._70b7{display:flex;font-size:10px;font-weight:400;color:#0555e1;text-decoration:underline;cursor:pointer}.ae38{display:flex;justify-content:space-between}
.c5a0{display:flex;flex-direction:row;padding:40px}.b271{display:flex;flex-direction:column;width:436px;margin-right:24px}._90c1{display:flex;flex-direction:column;padding:24px;margin-bottom:24px;background-color:#fff}._1b7a{font-size:20px;margin-bottom:16px;font-weight:bold;font-family:Intro Bold}._2881{display:flex;flex-direction:row}.dfe0{display:flex;flex-direction:column;width:194px}._80f7{display:flex;flex-direction:row;width:194px;align-items:center}._04bd{margin-right:16px}.e539{font-size:14px;margin-bottom:5px;font-family:Intro Regular}._4b12{font-size:14px;font-family:Intro Regular;font-weight:400;font-style:normal}._9a3e{font-size:24px;font-weight:bold;font-family:Intro Bold}._88fb{font-size:24px;font-weight:bold;font-family:Intro Bold;margin-right:12px;min-width:25px}.fb24{display:flex;flex-direction:row;align-items:center}._7d89{margin-bottom:8px}.fa77{font-size:14px;font-weight:500;font-family:Intro Regular}._457a{width:12px;height:12px;border-radius:50%;margin-right:12px}._2597{background-color:#0bba6d}._5de8{background-color:#f55d4b}._78d7 ._2881{display:flex;flex-direction:column}.e28b{display:flex;flex-direction:row;justify-content:space-between;background-color:#fff;flex:1;padding:24px;height:100%}._90c6{display:flex;flex-direction:column;margin-bottom:32px;align-items:flex-start}.f707{font-size:28px;font-weight:bold;font-family:Intro #000}._5521{color:#37465a;font-size:18px;margin-bottom:32px;font-family:Intro Book}._8b03{display:flex;flex-direction:column;margin-bottom:30px}._88a4{margin-bottom:16px}._9a34{margin-bottom:30px}._7e2b{font-size:15px;color:#878c94;margin-bottom:4px;font-family:Intro Book}._93fb{display:flex;flex-direction:row;font-size:18px;font-family:Intro Regular}.a0da{margin-right:32px;font-family:Intro Regular}.d803{font-family:Intro Regular;font-size:18px;font-weight:400;line-height:24px}._6b8d{margin:0;padding:0;font-size:15px;color:#d61916;background-color:rgba(0,0,0,0);font-family:Intro Regular;font-weight:400}._90b5{margin-bottom:36px}._18a0{display:flex;flex-direction:column;align-items:center;width:60px;height:60px;line-height:60px;border-radius:50%;background-color:#d61916;color:#fff;font-size:26px;font-family:Intro Regular}.c5c0{margin-top:20px}
.ba42{position:sticky;display:flex;flex:0 0 auto;color:#fff;justify-content:space-between;flex-direction:row;background:#2d2d37;height:72px;padding:0 40px;width:100%;align-items:center;top:0;z-index:100}._4896{padding-right:40px;box-sizing:border-box}.a28c{display:flex;font-size:16px;align-items:center}._17e5{padding-right:32px;white-space:nowrap}.d02a{border-left:1px solid #4b4849;height:32px;padding-left:32px;display:flex}._980c{font-size:16px;background-color:rgba(0,0,0,0);color:#fff}._76d8{display:flex;justify-content:space-between;margin-left:50px}.ef9e{display:flex;justify-content:space-between;align-items:center;margin-left:20px}._6a0c{display:flex;width:20px;height:20px;background:url(/images/digit-sign-icon-47072a4cc07320d3e8007e9872944926.png) no-repeat;background-size:cover}._8cc0{display:flex;width:20px;height:20px;background:url(/images/question-sign-icon-058a5a2ce8f862173a475ae64be4bfbe.png) no-repeat;background-size:cover}._99cf{margin-left:5px;border-bottom:2px dashed #003271;font-size:15px;cursor:pointer}._6133{display:flex;justify-content:start;flex:1;margin-left:40px;margin-right:40px;align-items:center;border:1px solid #e1e6ed;border-radius:8px;padding:2px 5px 2px 5px;width:387px}._548a{width:17px;height:17px;background:url(/images/search-icon-fc61718b962331e5109eea49833fbded.png) no-repeat;background-size:cover}.cfc7{height:100%;margin-left:5px;border:none;font-size:15px;width:90%;padding-right:5px}.cfc7:focus{outline:none}.e856{height:80%;background-color:#f3f5f9;border:none;border-radius:4px;font-size:13px;cursor:pointer;margin-left:40px}.a607{margin-right:20px;color:#fff;background-color:#003271;height:40px;border-radius:8px;border:none;font-size:15px;padding:10px 24px 10px 24px}._41df{height:100%;min-width:fit-content;display:flex;column-gap:28px}.a278{align-items:center;height:100%;min-width:fit-content;display:block}.a278:hover{box-shadow:-12px -100px 1px -98px #003271 inset}.a278 .fb13:hover{display:block}.a278._5df7{box-shadow:-12px -100px 1px -98px #003271 inset}.a294{margin-left:5px}._0d6f{display:flex;align-items:center}._53de{cursor:default !important}._53de>*{cursor:default !important}.a278:hover>._7536 ._0d6f>.a294>img{transform:rotate(90deg)}._7536{display:flex;align-items:center;cursor:pointer;height:100%}._7536 div{color:#003271;font-style:normal;font-weight:600;font-size:.75rem;line-height:20px}._7536 img{width:.312vw;height:.416vw}._7536:hover{box-shadow:-12px -100px 1px -98px #003271 inset}._7536:hover~.fb13{display:block}.fb13{display:none;background-color:#fff;box-shadow:0px 0px 2px gray;position:absolute}._17cc{padding:10px;cursor:pointer;font-size:.937rem;line-height:1.25rem;color:#000}._17cc._5df7{background-color:#f3f5f9}._17cc:hover{text-shadow:0px 0px .25px gray}.a278:has(._44a4){box-shadow:-12px -100px 1px -98px #003271 inset}._6cf0{height:100%;display:flex;align-items:center;justify-content:space-between;right:0}.b4d6{margin-right:20px}._16d5{font-weight:600;font-size:.74rem;line-height:1.25rem;text-align:right;color:#012657;white-space:nowrap}.f87e{font-size:.81rem;line-height:1.25rem;text-align:right;color:#012657;white-space:nowrap;color:#37465a}._867a{background:#f2f5f8;border-radius:50%;display:flex;align-items:center;justify-content:center;width:2.75rem;height:2.75rem}._867a img{height:1rem;width:.75rem}._045d{margin-left:.625rem}._164c{top:90px;display:none;z-index:100;position:absolute;margin-right:1px;right:0;background-color:#fff;width:16.25rem;padding:4px;box-shadow:0px 0px 1px 0px #223c50;transition-delay:5s}._164c button{background:none;padding:10px;width:100%;text-align:left;margin:0px}._164c button:hover{font-weight:500;background-color:#f8f9fd}.a67b{height:100%;width:100%;display:flex;align-items:center;cursor:pointer;padding-right:20px}.a67b:hover>div:first-child{box-shadow:0px 0px 7px 1px rgba(0,50,113,.6)}.a67b:hover ._045d{transform:rotate(90deg)}.a67b:hover ._164c{display:block}img._045d{width:.312vw;height:.416vw}._164c:hover{display:block}.bf46{position:relative;margin-right:20px}.bf46 svg{width:1.04vw;height:1.09vw}@media screen and (max-width: 1280px){.bf46 svg{width:1.04vw;height:1.09vw}}._1bbd{display:table;text-align:center;font-weight:700;position:absolute;border-radius:50%;background-color:red;color:#fff;font-size:.5vw;top:-0.45vw;right:-0.45vw;width:.83vw;height:.83vw}@media screen and (max-width: 1280px){._1bbd{top:-0.25vw;right:-0.25vw}}._1bbd div{display:table-cell;vertical-align:middle}
.d1e2{position:sticky;display:flex;justify-content:space-between;flex-direction:row;background:#2d2d37;height:72px;width:100%;min-width:fit-content;align-items:center;top:0;z-index:100}._0a53{margin-left:20px;display:flex}._0a53 svg{width:14vw;height:2.9vw}@media screen and (max-width: 1280px){._0a53 svg{width:179px;height:37px}}.c0c9{display:flex;justify-content:space-between;margin-left:50px}._1401{display:flex;justify-content:space-between;align-items:center;margin-left:20px}._8d3a{display:flex;width:20px;height:20px;background:url(/images/digit-sign-icon-47072a4cc07320d3e8007e9872944926.png) no-repeat;background-size:cover}._3174{display:flex;width:20px;height:20px;background:url(/images/question-sign-icon-058a5a2ce8f862173a475ae64be4bfbe.png) no-repeat;background-size:cover}._1c6e{margin-left:5px;border-bottom:2px dashed #003271;font-size:15px;cursor:pointer}._9c4d{display:flex;justify-content:start;flex:1;margin-left:40px;margin-right:40px;align-items:center;border:1px solid #e1e6ed;border-radius:8px;padding:2px 5px 2px 5px;width:387px}.ab04{width:17px;height:17px;background:url(/images/search-icon-fc61718b962331e5109eea49833fbded.png) no-repeat;background-size:cover}._090b{height:100%;margin-left:5px;border:none;font-size:15px;width:90%;padding-right:5px}._090b:focus{outline:none}._1bdd{height:80%;background-color:#f3f5f9;border:none;border-radius:4px;font-size:13px;cursor:pointer;margin-left:40px}._168a{margin-right:20px;color:#fff;background-color:#003271;height:40px;border-radius:8px;border:none;font-size:15px;padding:10px 24px 10px 24px}._7332{height:100%;min-width:fit-content;display:flex;column-gap:1.8rem}._7332 a{color:#fff}.e96a{align-items:center;height:100%;min-width:fit-content;display:block}.e96a:hover{box-shadow:-12px -100px 1px -98px #003271 inset}.e96a ._8512:hover{display:block}.e96a._072d{box-shadow:-12px -100px 1px -98px #003271 inset}._65ba{margin-left:5px}._1331{display:flex;align-items:center}._42ab{cursor:default !important}._42ab>*{cursor:default !important}.e96a:hover>.e08f ._1331>._65ba>img{transform:rotate(90deg)}.e08f{display:flex;align-items:center;cursor:pointer;height:100%}.e08f div{color:#fff;font-style:normal;font-weight:600;font-size:12px}.e08f img{width:.312vw;height:.416vw}.e08f:hover{box-shadow:-12px -100px 1px -98px #003271 inset}.e08f:hover~._8512{display:block}._8512{display:none;background-color:#2d2d37;box-shadow:0px 0px 2px gray;position:absolute}.ce27{padding:10px;cursor:pointer;font-size:.937rem;line-height:1.25rem;color:#fff}.ce27._072d{background-color:#2d2d37}.ce27:hover{text-shadow:0px 0px .25px gray}.e96a:has(._03fd){box-shadow:-12px -100px 1px -98px #003271 inset}.f51f{height:100%;display:flex;align-items:center;justify-content:space-between;right:0}.a12b{margin-right:20px}._1d1c{font-weight:600;font-size:.74rem;line-height:1.25rem;text-align:right;color:#012657;white-space:nowrap}.f043{font-size:.81rem;line-height:1.25rem;text-align:right;color:#012657;white-space:nowrap;color:#37465a}.d572{background:#f2f5f8;border-radius:50%;display:flex;align-items:center;justify-content:center;width:2.75rem;height:2.75rem}.d572 img{height:1rem;width:.75rem}._474f{margin-left:.625rem}._9b9f{top:90px;display:none;z-index:100;position:absolute;margin-right:1px;right:0;background-color:#fff;width:16.25rem;padding:4px;box-shadow:0px 0px 1px 0px #223c50;transition-delay:5s}._9b9f button{background:none;padding:10px;width:100%;text-align:left;margin:0px}._9b9f button:hover{font-weight:500;background-color:#f8f9fd}.dbe8{height:100%;width:100%;display:flex;align-items:center;cursor:pointer;padding-right:20px}.dbe8:hover>div:first-child{box-shadow:0px 0px 7px 1px rgba(0,50,113,.6)}.dbe8:hover ._474f{transform:rotate(90deg)}.dbe8:hover ._9b9f{display:block}img._474f{width:.312vw;height:.416vw}._9b9f:hover{display:block}._932d{position:relative;margin-right:20px}._932d svg{width:1.04vw;height:1.09vw}@media screen and (max-width: 1280px){._932d svg{width:1.04vw;height:1.09vw}}._7280{display:table;text-align:center;font-weight:700;position:absolute;border-radius:50%;background-color:red;color:#fff;font-size:.5vw;top:-0.45vw;right:-0.45vw;width:.83vw;height:.83vw}@media screen and (max-width: 1280px){._7280{top:-0.25vw;right:-0.25vw}}._7280 div{display:table-cell;vertical-align:middle}
._1a85{height:48px;padding:16px 40px;background-color:#f5f5f5;font-size:12px;display:flex}._1143{margin-left:auto;color:#a4a4a4;opacity:.3}
._7d26{display:flex;flex-direction:column;padding:40px 40px 0}._96e2{font-size:36px;margin-bottom:24px}._42c9{display:flex;flex-direction:column;padding:28px;background-color:#f5f5f5}.bf45{font-size:20px;font-weight:bold;margin-bottom:24px}.ea2b{display:flex;flex-direction:column}._4f6d{display:flex;flex-direction:row;margin-bottom:24px;justify-content:space-between}.d2b2{display:flex;flex-direction:row;align-items:flex-end;margin-right:32px;column-gap:32px}._54db{display:flex;flex-direction:column}._54db input{width:100%}._54db input::placeholder{color:#878c94}._7ecf{display:flex;flex-direction:row;font-size:12px;margin-bottom:2px}.c156{height:40px}._79f7{background:#fff !important}._98b5{margin:0 16px;height:40px;display:flex;align-items:center;font-size:20px}.e0dd{flex:1 0 630px}._5d7b{display:flex;flex-direction:row;margin-bottom:5px;justify-content:flex-start}.efa3{display:flex;flex-direction:row;align-items:center;height:40px;border-radius:5px;font-size:13px}._976a{background-color:#d61916;color:#fff;margin-right:32px;padding:10px 20px}.c6ba{margin-right:5px}.e17f{color:#d61916;background-color:rgba(0,0,0,0)}.b45b{display:flex;flex-direction:row;font-size:12px;font-weight:bold}.ba22{border-top:1px solid #d9d9d9}._4b37{display:flex;flex-direction:row;border-top:1px solid #d9d9d9}._970c{display:flex;flex-direction:column;padding:8px 16px}.ffc6{font-size:12px}._4f12{font-size:14px;line-height:20px}._3041{flex:0 0 75px}.e4ab{flex:0 0 140px}.ce95{flex:0 2 800px}._0054{flex:0 1 280px}._141f{background-color:#f5f5f5}._7ea2{display:flex;flex-direction:row;justify-content:space-between;font-size:12px}._15ad{display:flex;justify-content:center}._15ad textarea{margin:8px;padding:8px;font-size:16px;line-height:22px;resize:none}._71ab{cursor:pointer}
._4f01{margin-top:16px;display:flex;justify-content:space-between;align-items:center;width:100%}._2e61{display:flex;justify-content:space-between;align-items:center;column-gap:12px}._2e61 span{font-family:"Intro Regular";font-style:normal;font-weight:400;font-size:12px;line-height:16px;width:32px;padding:8px 0px;vertical-align:middle;text-align:center;cursor:pointer}._2e61 span._564f{background:#d61916;border-radius:6px;text-align:center;color:#fff}._2e61 ._8312{opacity:.2;cursor:auto}.d369{display:flex;justify-content:space-between;align-items:center}.d369 span{margin-right:8px}
._70d7{padding:40px}._10b3{font-family:"Intro Black";font-style:normal;font-weight:900;font-size:36px;line-height:40px;color:#1c1919}._296e{margin-top:34px;margin-bottom:26px;border-bottom:1px solid #d9d9d9;font-family:"Intro Bold";font-style:normal;font-weight:700;font-size:16px;line-height:18px;color:#a5a5a5}._296e ._8cbd{color:#d61916;border-bottom:2px solid #d61916}._296e span:hover{cursor:pointer}._296e span:nth-child(1){margin-right:32px}.b0c9{background:#fbfbfb;border:1px solid #f2f2f2;padding:28px}.b0c9 ._14a2{font-family:"Intro Bold";font-style:normal;font-weight:700;font-size:20px;line-height:24px;margin-bottom:24px}.b0c9 ._3df0{font-family:"Intro Regular";font-style:normal;font-weight:400;font-size:12px;line-height:16px}.b0c9 ._0d09{padding:11px 12px;background:#fff;border:1px solid #d9d9d9;border-radius:5px}.b0c9 .dfd9{justify-content:center;align-items:center;padding:10px 20px;gap:4px;width:102px;height:40px;background:#d61916;border-radius:5px;font-family:"Intro Regular";font-style:normal;font-weight:400;font-size:13px;line-height:18px;color:#fff}.b0c9 ._7bca{display:flex;flex-direction:row;justify-content:center;align-items:center;padding:12px 0px 10px;width:109px;height:40px;border-radius:8px;font-family:"Intro Regular";font-style:normal;font-weight:400;font-size:13px;line-height:18px;color:#d61916;background:none}._9e8a ._03cd.c5dd{min-width:1360px}._9e8a ._64c6:nth-child(1){max-width:64px;color:red}._9e8a ._64c6:nth-child(2){max-width:164px}._9e8a ._64c6:nth-child(3){max-width:164px}._9e8a ._64c6:nth-child(4){max-width:304px}._9e8a ._64c6:nth-child(5){max-width:360px}._9e8a ._64c6:nth-child(6){max-width:304px}
.e8f6{padding:40px}._49ce{font-family:"Intro Black";font-style:normal;font-weight:900;font-size:36px;line-height:40px;color:#1c1919}._12ee{margin-top:24px;background:#fbfbfb;border:1px solid #f2f2f2;padding:28px}._12ee .d248{font-family:"Intro Bold";font-style:normal;font-weight:700;font-size:20px;line-height:24px;margin-bottom:24px}._12ee .b208{font-family:"Intro Regular";font-style:normal;font-weight:400;font-size:12px;line-height:16px}._12ee .a740{padding:11px 12px;background:#fff;border:1px solid #d9d9d9;border-radius:5px}._12ee .fe39{justify-content:center;align-items:center;padding:10px 20px;gap:4px;width:102px;height:40px;background:#d61916;border-radius:5px;font-family:"Intro Regular";font-style:normal;font-weight:400;font-size:13px;line-height:18px;color:#fff}._12ee ._4605{display:flex;flex-direction:row;justify-content:center;align-items:center;padding:12px 0px 10px;width:109px;height:40px;border-radius:8px;font-family:"Intro Regular";font-style:normal;font-weight:400;font-size:13px;line-height:18px;color:#d61916;background:none}._2980 ._318c._85b6{min-width:1360px}._2980 ._5df6:nth-child(1){max-width:64px;color:red}._2980 ._5df6:nth-child(2){max-width:164px}._2980 ._5df6:nth-child(3){max-width:164px}._2980 ._5df6:nth-child(4){max-width:304px}._2980 ._5df6:nth-child(5){max-width:360px}._2980 ._5df6:nth-child(6){max-width:304px}
.e694{padding:40px}.fd57{font-family:"Intro Black";font-style:normal;font-weight:900;font-size:36px;line-height:40px;color:#1c1919}._20f9{margin-top:24px;background:#fbfbfb;border:1px solid #f2f2f2;padding:28px}._20f9 .b3f5{font-family:"Intro Bold";font-style:normal;font-weight:700;font-size:20px;line-height:24px;margin-bottom:24px}._20f9 ._46f2{font-family:"Intro Regular";font-style:normal;font-weight:400;font-size:12px;line-height:16px}._20f9 .ad59{padding:11px 12px;background:#fff;border:1px solid #d9d9d9;border-radius:5px}._20f9 ._56bc{justify-content:center;align-items:center;padding:10px 20px;gap:4px;width:102px;height:40px;background:#d61916;border-radius:5px;font-family:"Intro Regular";font-style:normal;font-weight:400;font-size:13px;line-height:18px;color:#fff}._20f9 ._4fed{display:flex;flex-direction:row;justify-content:center;align-items:center;padding:12px 0px 10px;width:109px;height:40px;border-radius:8px;font-family:"Intro Regular";font-style:normal;font-weight:400;font-size:13px;line-height:18px;color:#d61916;background:none}._1375{color:#adff2f}._7743{color:red}.e5b9{display:flex;justify-content:center}.e5b9 textarea{margin:8px;padding:8px;font-size:16px;line-height:22px;resize:none}.ba20{cursor:pointer}
.cfec{padding:40px}.f44a{font-family:"Intro Black";font-style:normal;font-weight:900;font-size:36px;line-height:40px;color:#1c1919}._3d97{font-family:"Intro Bold";font-style:normal;font-weight:700;font-size:26px;line-height:32px;color:#1c1919}._3eeb{background:#d61916;border-radius:5px;padding:10px 20px;width:131px;height:40px;font-family:"Intro Regular";font-style:normal;font-weight:400;font-size:13px;line-height:18px;color:#fff}._3eeb span:before{content:url(/images/svg/whiteCheck-dc6eeb0157de606cf1dd07af908c99bc.svg);margin-right:5px}
.list option{font-size:15px}.list__search{align-items:center}.list__manifest{color:#37465a;font-size:15px;line-height:20px}.list__option{display:flex;justify-content:start}.list__option-name-prefix{font-size:15px;line-height:20px;color:#878c94}.list__expand-icon{display:flex;width:8px;height:6px;background:url(/images/sort-expand-3969749634141d5a2995867df5baaf83.png) no-repeat;background-size:cover;margin-left:10px;cursor:pointer}.list__menu-options-wrapper{z-index:100;position:absolute;top:0;left:0;right:0;bottom:0}.list__menu-options{position:fixed;z-index:101;width:420px;border:1px;padding:8px;background:#fff;box-shadow:0px 2px 8px rgba(4,23,46,.08);margin:auto}.list__menu-option{display:flex;flex-direction:row;align-items:center;padding:10px 12px 10px 8px}.list__menu-divider{height:1px;width:100%;background:#e1e6ed}.list__menu-option div:nth-child(1){width:25px;text-align:left}.list__menu-option div:nth-child(2){margin-left:10px;font-size:15px;line-height:20px;flex:none;order:1;align-self:stretch;flex-grow:1;cursor:pointer}.list__menu-option div:hover{font-weight:500}.list table td:nth-child(5){width:20px;cursor:pointer}.list__sorted::after{content:"";background:url(/images/status-icon-fec6969eec83c1c2fbd33ec20464fb9f.png) no-repeat;background-size:contain;min-width:14px;min-height:12px;display:block;margin-left:5px}.list td div{vertical-align:center;padding:0 20px 0 20px}.list-item__status{width:fit-content;border-radius:12px;padding:5px 10px 5px 10px !important;font-weight:600;font-size:12px;line-height:16px;word-break:normal}.list-item td:not(:last-child){cursor:pointer}.manage__list .cell{display:flex}.manage__list .cell .statusContainer{border-radius:12px;padding:3px 8px}.manage__list .cell .draft{color:#3484f8;background:#e6eefe}.manage__list .cell .published{color:#0ca967;background:#e5fcea}.manage__list .cell .planned{color:#e5b537;background:#fff4ea}.manage__list .cell .deleted{color:#d92f58;background:#fbeef1}.manage__list .cell:nth-child(1){flex:0 0 150px}.manage__list .cell:nth-child(2){flex:0 0 170px}.manage__list .cell:nth-child(3){flex:0 0 200px}.manage__list .cell:nth-child(4){flex:0 0 140px}.manage__list .cell:nth-child(5){flex:0 1 100%}.manage__list .cell:nth-child(6){flex:0 0 3%}.manage__list .row-data-item{padding:26px 16px}
.afcc{display:flex;flex-direction:column;margin-top:32px}.ddb0{display:flex;flex-direction:row;margin-bottom:24px;justify-content:space-between}._49b2{display:flex;flex-direction:row;align-items:flex-end;margin-right:32px}._49b2 .d6be{margin-right:0;align-items:center}.d6be{display:flex;flex-direction:row;margin-right:16px}.d6be input{width:100%}.d6be input::placeholder{color:#878c94}._5ece{margin:0}.f788{display:flex;flex-direction:row;font-size:15px;font-weight:600;white-space:nowrap;margin-right:8px}._0585{height:40px}._23cb{margin:0 16px;height:40px;display:flex;align-items:center;font-size:20px}._8a87{flex:1 1 630px}.ff41{display:flex;flex-direction:row;flex:0 1 300px}.a0a1{display:flex;flex-direction:row;margin-bottom:5px;justify-content:flex-start}.d466{display:flex;flex-direction:row;align-items:center;height:40px;border-radius:5px;font-size:13px}._9ecc{background-color:#d61916;color:#fff;margin-right:32px;padding:10px 20px}._77d8{margin-right:5px}.a68e{color:#d61916;background-color:rgba(0,0,0,0)}
._8952{width:100%}._2073{display:flex;flex-direction:column;margin-top:16px}._6427{color:#04172e;font-size:13px;font-weight:600}._4f24{margin-top:20px;display:flex;flex-direction:column}.b931{display:flex;flex-direction:row;justify-content:flex-start;align-items:center;padding:12px;cursor:pointer}.b931:hover{background:#f8f9fd}.b931._7429{background:#f8f9fd}._2d37{margin-right:20px}._46bd{display:flex;flex-direction:column}._8ef7,._6232{font-size:15px}._8ef7{color:#003271;font-weight:600;margin-bottom:10px}._6232{color:#878c94}._4845{width:100%}._6cbc{margin:16px 0}
._96a2{display:flex;flex-direction:row}._95c2{display:flex;flex-direction:column;margin-bottom:33px}._0e5d{display:flex;flex-direction:row;justify-content:flex-start;align-items:flex-end}._0e5d ._3471{font-size:36px;font-weight:700;margin:0}._1628{font-size:15px;font-weight:600;border-radius:20px;padding:6px 10px;margin-left:16px;height:32px;line-height:19px;margin-bottom:8px}._5d04{color:#3484f8;background:#e6eefe}._2697{color:#0ca967;background:#e5fcea}._6ac5{color:#e5b537;background:#fff4ea}._3563{color:#d92f58;background:#fbeef1}._0e1c{font-size:18px;font-weight:600;color:#37465a}._04a5{display:flex;flex-direction:column;padding:32px;background:#fff;margin-bottom:32px}._04a5 textarea{border:1px solid #e1e6ed;box-sizing:border-box;border-radius:6px;padding-left:10px;height:140px;font-size:.9375rem;line-height:1.25rem;resize:none}._04a5 input{border:1px solid #e1e6ed;box-sizing:border-box;border-radius:6px;padding-left:10px;height:2.75rem;font-size:.9375rem;line-height:1.25rem}._3ae6{font-size:20px;font-weight:bold;margin-bottom:24px}.d293{display:flex;flex-direction:row;max-width:620px}._58b8{font-weight:600;font-size:.8125rem;line-height:1.125rem;margin-bottom:8px}._4b97{display:flex;flex-direction:row;align-items:center}._4b97 input{width:18px;height:18px}.f029{margin:0;background:#f3f5f9;border-radius:4px;color:#003271;font-weight:600;font-size:13px;padding:12px 24px;cursor:pointer;width:fit-content}.dea9{margin-top:8px;color:#878c94;font-size:13px}._85aa{font-size:15px;font-weight:600}._9895,.e48e,._6fb2{margin-bottom:16px}._82d7,._1e5f,._503c,.b004{margin-top:32px}._4026{margin-right:16px}._11f0{font-size:12px;color:#d92f58;margin-top:3px}._860d{display:flex;flex-direction:row}._860d button{font-size:15px;margin-right:16px;padding:12px 24px;border-radius:6px}.b44a{color:#fff;background:#003271}._2823{color:#003271;background:#fff;border:1px solid #e1e6ed}.b360{color:#d92f58;background:#fff;margin:0;border:1px solid #e1e6ed}._745f{position:relative}
/*!
 * Quill Editor v1.3.7
 * https://quilljs.com/
 * Copyright (c) 2014, Jason Chen
 * Copyright (c) 2013, salesforce.com
 */
.ql-container {
  box-sizing: border-box;
  font-family: Helvetica, Arial, sans-serif;
  font-size: 13px;
  height: 100%;
  margin: 0px;
  position: relative;
}
.ql-container.ql-disabled .ql-tooltip {
  visibility: hidden;
}
.ql-container.ql-disabled .ql-editor ul[data-checked] > li::before {
  pointer-events: none;
}
.ql-clipboard {
  left: -100000px;
  height: 1px;
  overflow-y: hidden;
  position: absolute;
  top: 50%;
}
.ql-clipboard p {
  margin: 0;
  padding: 0;
}
.ql-editor {
  box-sizing: border-box;
  line-height: 1.42;
  height: 100%;
  outline: none;
  overflow-y: auto;
  padding: 12px 15px;
  tab-size: 4;
  -moz-tab-size: 4;
  text-align: left;
  white-space: pre-wrap;
  word-wrap: break-word;
}
.ql-editor > * {
  cursor: text;
}
.ql-editor p,
.ql-editor ol,
.ql-editor ul,
.ql-editor pre,
.ql-editor blockquote,
.ql-editor h1,
.ql-editor h2,
.ql-editor h3,
.ql-editor h4,
.ql-editor h5,
.ql-editor h6 {
  margin: 0;
  padding: 0;
  counter-reset: list-1 list-2 list-3 list-4 list-5 list-6 list-7 list-8 list-9;
}
.ql-editor ol,
.ql-editor ul {
  padding-left: 1.5em;
}
.ql-editor ol > li,
.ql-editor ul > li {
  list-style-type: none;
}
.ql-editor ul > li::before {
  content: '\2022';
}
.ql-editor ul[data-checked=true],
.ql-editor ul[data-checked=false] {
  pointer-events: none;
}
.ql-editor ul[data-checked=true] > li *,
.ql-editor ul[data-checked=false] > li * {
  pointer-events: all;
}
.ql-editor ul[data-checked=true] > li::before,
.ql-editor ul[data-checked=false] > li::before {
  color: #777;
  cursor: pointer;
  pointer-events: all;
}
.ql-editor ul[data-checked=true] > li::before {
  content: '\2611';
}
.ql-editor ul[data-checked=false] > li::before {
  content: '\2610';
}
.ql-editor li::before {
  display: inline-block;
  white-space: nowrap;
  width: 1.2em;
}
.ql-editor li:not(.ql-direction-rtl)::before {
  margin-left: -1.5em;
  margin-right: 0.3em;
  text-align: right;
}
.ql-editor li.ql-direction-rtl::before {
  margin-left: 0.3em;
  margin-right: -1.5em;
}
.ql-editor ol li:not(.ql-direction-rtl),
.ql-editor ul li:not(.ql-direction-rtl) {
  padding-left: 1.5em;
}
.ql-editor ol li.ql-direction-rtl,
.ql-editor ul li.ql-direction-rtl {
  padding-right: 1.5em;
}
.ql-editor ol li {
  counter-reset: list-1 list-2 list-3 list-4 list-5 list-6 list-7 list-8 list-9;
  counter-increment: list-0;
}
.ql-editor ol li:before {
  content: counter(list-0, decimal) '. ';
}
.ql-editor ol li.ql-indent-1 {
  counter-increment: list-1;
}
.ql-editor ol li.ql-indent-1:before {
  content: counter(list-1, lower-alpha) '. ';
}
.ql-editor ol li.ql-indent-1 {
  counter-reset: list-2 list-3 list-4 list-5 list-6 list-7 list-8 list-9;
}
.ql-editor ol li.ql-indent-2 {
  counter-increment: list-2;
}
.ql-editor ol li.ql-indent-2:before {
  content: counter(list-2, lower-roman) '. ';
}
.ql-editor ol li.ql-indent-2 {
  counter-reset: list-3 list-4 list-5 list-6 list-7 list-8 list-9;
}
.ql-editor ol li.ql-indent-3 {
  counter-increment: list-3;
}
.ql-editor ol li.ql-indent-3:before {
  content: counter(list-3, decimal) '. ';
}
.ql-editor ol li.ql-indent-3 {
  counter-reset: list-4 list-5 list-6 list-7 list-8 list-9;
}
.ql-editor ol li.ql-indent-4 {
  counter-increment: list-4;
}
.ql-editor ol li.ql-indent-4:before {
  content: counter(list-4, lower-alpha) '. ';
}
.ql-editor ol li.ql-indent-4 {
  counter-reset: list-5 list-6 list-7 list-8 list-9;
}
.ql-editor ol li.ql-indent-5 {
  counter-increment: list-5;
}
.ql-editor ol li.ql-indent-5:before {
  content: counter(list-5, lower-roman) '. ';
}
.ql-editor ol li.ql-indent-5 {
  counter-reset: list-6 list-7 list-8 list-9;
}
.ql-editor ol li.ql-indent-6 {
  counter-increment: list-6;
}
.ql-editor ol li.ql-indent-6:before {
  content: counter(list-6, decimal) '. ';
}
.ql-editor ol li.ql-indent-6 {
  counter-reset: list-7 list-8 list-9;
}
.ql-editor ol li.ql-indent-7 {
  counter-increment: list-7;
}
.ql-editor ol li.ql-indent-7:before {
  content: counter(list-7, lower-alpha) '. ';
}
.ql-editor ol li.ql-indent-7 {
  counter-reset: list-8 list-9;
}
.ql-editor ol li.ql-indent-8 {
  counter-increment: list-8;
}
.ql-editor ol li.ql-indent-8:before {
  content: counter(list-8, lower-roman) '. ';
}
.ql-editor ol li.ql-indent-8 {
  counter-reset: list-9;
}
.ql-editor ol li.ql-indent-9 {
  counter-increment: list-9;
}
.ql-editor ol li.ql-indent-9:before {
  content: counter(list-9, decimal) '. ';
}
.ql-editor .ql-indent-1:not(.ql-direction-rtl) {
  padding-left: 3em;
}
.ql-editor li.ql-indent-1:not(.ql-direction-rtl) {
  padding-left: 4.5em;
}
.ql-editor .ql-indent-1.ql-direction-rtl.ql-align-right {
  padding-right: 3em;
}
.ql-editor li.ql-indent-1.ql-direction-rtl.ql-align-right {
  padding-right: 4.5em;
}
.ql-editor .ql-indent-2:not(.ql-direction-rtl) {
  padding-left: 6em;
}
.ql-editor li.ql-indent-2:not(.ql-direction-rtl) {
  padding-left: 7.5em;
}
.ql-editor .ql-indent-2.ql-direction-rtl.ql-align-right {
  padding-right: 6em;
}
.ql-editor li.ql-indent-2.ql-direction-rtl.ql-align-right {
  padding-right: 7.5em;
}
.ql-editor .ql-indent-3:not(.ql-direction-rtl) {
  padding-left: 9em;
}
.ql-editor li.ql-indent-3:not(.ql-direction-rtl) {
  padding-left: 10.5em;
}
.ql-editor .ql-indent-3.ql-direction-rtl.ql-align-right {
  padding-right: 9em;
}
.ql-editor li.ql-indent-3.ql-direction-rtl.ql-align-right {
  padding-right: 10.5em;
}
.ql-editor .ql-indent-4:not(.ql-direction-rtl) {
  padding-left: 12em;
}
.ql-editor li.ql-indent-4:not(.ql-direction-rtl) {
  padding-left: 13.5em;
}
.ql-editor .ql-indent-4.ql-direction-rtl.ql-align-right {
  padding-right: 12em;
}
.ql-editor li.ql-indent-4.ql-direction-rtl.ql-align-right {
  padding-right: 13.5em;
}
.ql-editor .ql-indent-5:not(.ql-direction-rtl) {
  padding-left: 15em;
}
.ql-editor li.ql-indent-5:not(.ql-direction-rtl) {
  padding-left: 16.5em;
}
.ql-editor .ql-indent-5.ql-direction-rtl.ql-align-right {
  padding-right: 15em;
}
.ql-editor li.ql-indent-5.ql-direction-rtl.ql-align-right {
  padding-right: 16.5em;
}
.ql-editor .ql-indent-6:not(.ql-direction-rtl) {
  padding-left: 18em;
}
.ql-editor li.ql-indent-6:not(.ql-direction-rtl) {
  padding-left: 19.5em;
}
.ql-editor .ql-indent-6.ql-direction-rtl.ql-align-right {
  padding-right: 18em;
}
.ql-editor li.ql-indent-6.ql-direction-rtl.ql-align-right {
  padding-right: 19.5em;
}
.ql-editor .ql-indent-7:not(.ql-direction-rtl) {
  padding-left: 21em;
}
.ql-editor li.ql-indent-7:not(.ql-direction-rtl) {
  padding-left: 22.5em;
}
.ql-editor .ql-indent-7.ql-direction-rtl.ql-align-right {
  padding-right: 21em;
}
.ql-editor li.ql-indent-7.ql-direction-rtl.ql-align-right {
  padding-right: 22.5em;
}
.ql-editor .ql-indent-8:not(.ql-direction-rtl) {
  padding-left: 24em;
}
.ql-editor li.ql-indent-8:not(.ql-direction-rtl) {
  padding-left: 25.5em;
}
.ql-editor .ql-indent-8.ql-direction-rtl.ql-align-right {
  padding-right: 24em;
}
.ql-editor li.ql-indent-8.ql-direction-rtl.ql-align-right {
  padding-right: 25.5em;
}
.ql-editor .ql-indent-9:not(.ql-direction-rtl) {
  padding-left: 27em;
}
.ql-editor li.ql-indent-9:not(.ql-direction-rtl) {
  padding-left: 28.5em;
}
.ql-editor .ql-indent-9.ql-direction-rtl.ql-align-right {
  padding-right: 27em;
}
.ql-editor li.ql-indent-9.ql-direction-rtl.ql-align-right {
  padding-right: 28.5em;
}
.ql-editor .ql-video {
  display: block;
  max-width: 100%;
}
.ql-editor .ql-video.ql-align-center {
  margin: 0 auto;
}
.ql-editor .ql-video.ql-align-right {
  margin: 0 0 0 auto;
}
.ql-editor .ql-bg-black {
  background-color: #000;
}
.ql-editor .ql-bg-red {
  background-color: #e60000;
}
.ql-editor .ql-bg-orange {
  background-color: #f90;
}
.ql-editor .ql-bg-yellow {
  background-color: #ff0;
}
.ql-editor .ql-bg-green {
  background-color: #008a00;
}
.ql-editor .ql-bg-blue {
  background-color: #06c;
}
.ql-editor .ql-bg-purple {
  background-color: #93f;
}
.ql-editor .ql-color-white {
  color: #fff;
}
.ql-editor .ql-color-red {
  color: #e60000;
}
.ql-editor .ql-color-orange {
  color: #f90;
}
.ql-editor .ql-color-yellow {
  color: #ff0;
}
.ql-editor .ql-color-green {
  color: #008a00;
}
.ql-editor .ql-color-blue {
  color: #06c;
}
.ql-editor .ql-color-purple {
  color: #93f;
}
.ql-editor .ql-font-serif {
  font-family: Georgia, Times New Roman, serif;
}
.ql-editor .ql-font-monospace {
  font-family: Monaco, Courier New, monospace;
}
.ql-editor .ql-size-small {
  font-size: 0.75em;
}
.ql-editor .ql-size-large {
  font-size: 1.5em;
}
.ql-editor .ql-size-huge {
  font-size: 2.5em;
}
.ql-editor .ql-direction-rtl {
  direction: rtl;
  text-align: inherit;
}
.ql-editor .ql-align-center {
  text-align: center;
}
.ql-editor .ql-align-justify {
  text-align: justify;
}
.ql-editor .ql-align-right {
  text-align: right;
}
.ql-editor.ql-blank::before {
  color: rgba(0,0,0,0.6);
  content: attr(data-placeholder);
  font-style: italic;
  left: 15px;
  pointer-events: none;
  position: absolute;
  right: 15px;
}
.ql-snow.ql-toolbar:after,
.ql-snow .ql-toolbar:after {
  clear: both;
  content: '';
  display: table;
}
.ql-snow.ql-toolbar button,
.ql-snow .ql-toolbar button {
  background: none;
  border: none;
  cursor: pointer;
  display: inline-block;
  float: left;
  height: 24px;
  padding: 3px 5px;
  width: 28px;
}
.ql-snow.ql-toolbar button svg,
.ql-snow .ql-toolbar button svg {
  float: left;
  height: 100%;
}
.ql-snow.ql-toolbar button:active:hover,
.ql-snow .ql-toolbar button:active:hover {
  outline: none;
}
.ql-snow.ql-toolbar input.ql-image[type=file],
.ql-snow .ql-toolbar input.ql-image[type=file] {
  display: none;
}
.ql-snow.ql-toolbar button:hover,
.ql-snow .ql-toolbar button:hover,
.ql-snow.ql-toolbar button:focus,
.ql-snow .ql-toolbar button:focus,
.ql-snow.ql-toolbar button.ql-active,
.ql-snow .ql-toolbar button.ql-active,
.ql-snow.ql-toolbar .ql-picker-label:hover,
.ql-snow .ql-toolbar .ql-picker-label:hover,
.ql-snow.ql-toolbar .ql-picker-label.ql-active,
.ql-snow .ql-toolbar .ql-picker-label.ql-active,
.ql-snow.ql-toolbar .ql-picker-item:hover,
.ql-snow .ql-toolbar .ql-picker-item:hover,
.ql-snow.ql-toolbar .ql-picker-item.ql-selected,
.ql-snow .ql-toolbar .ql-picker-item.ql-selected {
  color: #06c;
}
.ql-snow.ql-toolbar button:hover .ql-fill,
.ql-snow .ql-toolbar button:hover .ql-fill,
.ql-snow.ql-toolbar button:focus .ql-fill,
.ql-snow .ql-toolbar button:focus .ql-fill,
.ql-snow.ql-toolbar button.ql-active .ql-fill,
.ql-snow .ql-toolbar button.ql-active .ql-fill,
.ql-snow.ql-toolbar .ql-picker-label:hover .ql-fill,
.ql-snow .ql-toolbar .ql-picker-label:hover .ql-fill,
.ql-snow.ql-toolbar .ql-picker-label.ql-active .ql-fill,
.ql-snow .ql-toolbar .ql-picker-label.ql-active .ql-fill,
.ql-snow.ql-toolbar .ql-picker-item:hover .ql-fill,
.ql-snow .ql-toolbar .ql-picker-item:hover .ql-fill,
.ql-snow.ql-toolbar .ql-picker-item.ql-selected .ql-fill,
.ql-snow .ql-toolbar .ql-picker-item.ql-selected .ql-fill,
.ql-snow.ql-toolbar button:hover .ql-stroke.ql-fill,
.ql-snow .ql-toolbar button:hover .ql-stroke.ql-fill,
.ql-snow.ql-toolbar button:focus .ql-stroke.ql-fill,
.ql-snow .ql-toolbar button:focus .ql-stroke.ql-fill,
.ql-snow.ql-toolbar button.ql-active .ql-stroke.ql-fill,
.ql-snow .ql-toolbar button.ql-active .ql-stroke.ql-fill,
.ql-snow.ql-toolbar .ql-picker-label:hover .ql-stroke.ql-fill,
.ql-snow .ql-toolbar .ql-picker-label:hover .ql-stroke.ql-fill,
.ql-snow.ql-toolbar .ql-picker-label.ql-active .ql-stroke.ql-fill,
.ql-snow .ql-toolbar .ql-picker-label.ql-active .ql-stroke.ql-fill,
.ql-snow.ql-toolbar .ql-picker-item:hover .ql-stroke.ql-fill,
.ql-snow .ql-toolbar .ql-picker-item:hover .ql-stroke.ql-fill,
.ql-snow.ql-toolbar .ql-picker-item.ql-selected .ql-stroke.ql-fill,
.ql-snow .ql-toolbar .ql-picker-item.ql-selected .ql-stroke.ql-fill {
  fill: #06c;
}
.ql-snow.ql-toolbar button:hover .ql-stroke,
.ql-snow .ql-toolbar button:hover .ql-stroke,
.ql-snow.ql-toolbar button:focus .ql-stroke,
.ql-snow .ql-toolbar button:focus .ql-stroke,
.ql-snow.ql-toolbar button.ql-active .ql-stroke,
.ql-snow .ql-toolbar button.ql-active .ql-stroke,
.ql-snow.ql-toolbar .ql-picker-label:hover .ql-stroke,
.ql-snow .ql-toolbar .ql-picker-label:hover .ql-stroke,
.ql-snow.ql-toolbar .ql-picker-label.ql-active .ql-stroke,
.ql-snow .ql-toolbar .ql-picker-label.ql-active .ql-stroke,
.ql-snow.ql-toolbar .ql-picker-item:hover .ql-stroke,
.ql-snow .ql-toolbar .ql-picker-item:hover .ql-stroke,
.ql-snow.ql-toolbar .ql-picker-item.ql-selected .ql-stroke,
.ql-snow .ql-toolbar .ql-picker-item.ql-selected .ql-stroke,
.ql-snow.ql-toolbar button:hover .ql-stroke-miter,
.ql-snow .ql-toolbar button:hover .ql-stroke-miter,
.ql-snow.ql-toolbar button:focus .ql-stroke-miter,
.ql-snow .ql-toolbar button:focus .ql-stroke-miter,
.ql-snow.ql-toolbar button.ql-active .ql-stroke-miter,
.ql-snow .ql-toolbar button.ql-active .ql-stroke-miter,
.ql-snow.ql-toolbar .ql-picker-label:hover .ql-stroke-miter,
.ql-snow .ql-toolbar .ql-picker-label:hover .ql-stroke-miter,
.ql-snow.ql-toolbar .ql-picker-label.ql-active .ql-stroke-miter,
.ql-snow .ql-toolbar .ql-picker-label.ql-active .ql-stroke-miter,
.ql-snow.ql-toolbar .ql-picker-item:hover .ql-stroke-miter,
.ql-snow .ql-toolbar .ql-picker-item:hover .ql-stroke-miter,
.ql-snow.ql-toolbar .ql-picker-item.ql-selected .ql-stroke-miter,
.ql-snow .ql-toolbar .ql-picker-item.ql-selected .ql-stroke-miter {
  stroke: #06c;
}
@media (pointer: coarse) {
  .ql-snow.ql-toolbar button:hover:not(.ql-active),
  .ql-snow .ql-toolbar button:hover:not(.ql-active) {
    color: #444;
  }
  .ql-snow.ql-toolbar button:hover:not(.ql-active) .ql-fill,
  .ql-snow .ql-toolbar button:hover:not(.ql-active) .ql-fill,
  .ql-snow.ql-toolbar button:hover:not(.ql-active) .ql-stroke.ql-fill,
  .ql-snow .ql-toolbar button:hover:not(.ql-active) .ql-stroke.ql-fill {
    fill: #444;
  }
  .ql-snow.ql-toolbar button:hover:not(.ql-active) .ql-stroke,
  .ql-snow .ql-toolbar button:hover:not(.ql-active) .ql-stroke,
  .ql-snow.ql-toolbar button:hover:not(.ql-active) .ql-stroke-miter,
  .ql-snow .ql-toolbar button:hover:not(.ql-active) .ql-stroke-miter {
    stroke: #444;
  }
}
.ql-snow {
  box-sizing: border-box;
}
.ql-snow * {
  box-sizing: border-box;
}
.ql-snow .ql-hidden {
  display: none;
}
.ql-snow .ql-out-bottom,
.ql-snow .ql-out-top {
  visibility: hidden;
}
.ql-snow .ql-tooltip {
  position: absolute;
  transform: translateY(10px);
}
.ql-snow .ql-tooltip a {
  cursor: pointer;
  text-decoration: none;
}
.ql-snow .ql-tooltip.ql-flip {
  transform: translateY(-10px);
}
.ql-snow .ql-formats {
  display: inline-block;
  vertical-align: middle;
}
.ql-snow .ql-formats:after {
  clear: both;
  content: '';
  display: table;
}
.ql-snow .ql-stroke {
  fill: none;
  stroke: #444;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}
.ql-snow .ql-stroke-miter {
  fill: none;
  stroke: #444;
  stroke-miterlimit: 10;
  stroke-width: 2;
}
.ql-snow .ql-fill,
.ql-snow .ql-stroke.ql-fill {
  fill: #444;
}
.ql-snow .ql-empty {
  fill: none;
}
.ql-snow .ql-even {
  fill-rule: evenodd;
}
.ql-snow .ql-thin,
.ql-snow .ql-stroke.ql-thin {
  stroke-width: 1;
}
.ql-snow .ql-transparent {
  opacity: 0.4;
}
.ql-snow .ql-direction svg:last-child {
  display: none;
}
.ql-snow .ql-direction.ql-active svg:last-child {
  display: inline;
}
.ql-snow .ql-direction.ql-active svg:first-child {
  display: none;
}
.ql-snow .ql-editor h1 {
  font-size: 2em;
}
.ql-snow .ql-editor h2 {
  font-size: 1.5em;
}
.ql-snow .ql-editor h3 {
  font-size: 1.17em;
}
.ql-snow .ql-editor h4 {
  font-size: 1em;
}
.ql-snow .ql-editor h5 {
  font-size: 0.83em;
}
.ql-snow .ql-editor h6 {
  font-size: 0.67em;
}
.ql-snow .ql-editor a {
  text-decoration: underline;
}
.ql-snow .ql-editor blockquote {
  border-left: 4px solid #ccc;
  margin-bottom: 5px;
  margin-top: 5px;
  padding-left: 16px;
}
.ql-snow .ql-editor code,
.ql-snow .ql-editor pre {
  background-color: #f0f0f0;
  border-radius: 3px;
}
.ql-snow .ql-editor pre {
  white-space: pre-wrap;
  margin-bottom: 5px;
  margin-top: 5px;
  padding: 5px 10px;
}
.ql-snow .ql-editor code {
  font-size: 85%;
  padding: 2px 4px;
}
.ql-snow .ql-editor pre.ql-syntax {
  background-color: #23241f;
  color: #f8f8f2;
  overflow: visible;
}
.ql-snow .ql-editor img {
  max-width: 100%;
}
.ql-snow .ql-picker {
  color: #444;
  display: inline-block;
  float: left;
  font-size: 14px;
  font-weight: 500;
  height: 24px;
  position: relative;
  vertical-align: middle;
}
.ql-snow .ql-picker-label {
  cursor: pointer;
  display: inline-block;
  height: 100%;
  padding-left: 8px;
  padding-right: 2px;
  position: relative;
  width: 100%;
}
.ql-snow .ql-picker-label::before {
  display: inline-block;
  line-height: 22px;
}
.ql-snow .ql-picker-options {
  background-color: #fff;
  display: none;
  min-width: 100%;
  padding: 4px 8px;
  position: absolute;
  white-space: nowrap;
}
.ql-snow .ql-picker-options .ql-picker-item {
  cursor: pointer;
  display: block;
  padding-bottom: 5px;
  padding-top: 5px;
}
.ql-snow .ql-picker.ql-expanded .ql-picker-label {
  color: #ccc;
  z-index: 2;
}
.ql-snow .ql-picker.ql-expanded .ql-picker-label .ql-fill {
  fill: #ccc;
}
.ql-snow .ql-picker.ql-expanded .ql-picker-label .ql-stroke {
  stroke: #ccc;
}
.ql-snow .ql-picker.ql-expanded .ql-picker-options {
  display: block;
  margin-top: -1px;
  top: 100%;
  z-index: 1;
}
.ql-snow .ql-color-picker,
.ql-snow .ql-icon-picker {
  width: 28px;
}
.ql-snow .ql-color-picker .ql-picker-label,
.ql-snow .ql-icon-picker .ql-picker-label {
  padding: 2px 4px;
}
.ql-snow .ql-color-picker .ql-picker-label svg,
.ql-snow .ql-icon-picker .ql-picker-label svg {
  right: 4px;
}
.ql-snow .ql-icon-picker .ql-picker-options {
  padding: 4px 0px;
}
.ql-snow .ql-icon-picker .ql-picker-item {
  height: 24px;
  width: 24px;
  padding: 2px 4px;
}
.ql-snow .ql-color-picker .ql-picker-options {
  padding: 3px 5px;
  width: 152px;
}
.ql-snow .ql-color-picker .ql-picker-item {
  border: 1px solid transparent;
  float: left;
  height: 16px;
  margin: 2px;
  padding: 0px;
  width: 16px;
}
.ql-snow .ql-picker:not(.ql-color-picker):not(.ql-icon-picker) svg {
  position: absolute;
  margin-top: -9px;
  right: 0;
  top: 50%;
  width: 18px;
}
.ql-snow .ql-picker.ql-header .ql-picker-label[data-label]:not([data-label=''])::before,
.ql-snow .ql-picker.ql-font .ql-picker-label[data-label]:not([data-label=''])::before,
.ql-snow .ql-picker.ql-size .ql-picker-label[data-label]:not([data-label=''])::before,
.ql-snow .ql-picker.ql-header .ql-picker-item[data-label]:not([data-label=''])::before,
.ql-snow .ql-picker.ql-font .ql-picker-item[data-label]:not([data-label=''])::before,
.ql-snow .ql-picker.ql-size .ql-picker-item[data-label]:not([data-label=''])::before {
  content: attr(data-label);
}
.ql-snow .ql-picker.ql-header {
  width: 98px;
}
.ql-snow .ql-picker.ql-header .ql-picker-label::before,
.ql-snow .ql-picker.ql-header .ql-picker-item::before {
  content: 'Normal';
}
.ql-snow .ql-picker.ql-header .ql-picker-label[data-value="1"]::before,
.ql-snow .ql-picker.ql-header .ql-picker-item[data-value="1"]::before {
  content: 'Heading 1';
}
.ql-snow .ql-picker.ql-header .ql-picker-label[data-value="2"]::before,
.ql-snow .ql-picker.ql-header .ql-picker-item[data-value="2"]::before {
  content: 'Heading 2';
}
.ql-snow .ql-picker.ql-header .ql-picker-label[data-value="3"]::before,
.ql-snow .ql-picker.ql-header .ql-picker-item[data-value="3"]::before {
  content: 'Heading 3';
}
.ql-snow .ql-picker.ql-header .ql-picker-label[data-value="4"]::before,
.ql-snow .ql-picker.ql-header .ql-picker-item[data-value="4"]::before {
  content: 'Heading 4';
}
.ql-snow .ql-picker.ql-header .ql-picker-label[data-value="5"]::before,
.ql-snow .ql-picker.ql-header .ql-picker-item[data-value="5"]::before {
  content: 'Heading 5';
}
.ql-snow .ql-picker.ql-header .ql-picker-label[data-value="6"]::before,
.ql-snow .ql-picker.ql-header .ql-picker-item[data-value="6"]::before {
  content: 'Heading 6';
}
.ql-snow .ql-picker.ql-header .ql-picker-item[data-value="1"]::before {
  font-size: 2em;
}
.ql-snow .ql-picker.ql-header .ql-picker-item[data-value="2"]::before {
  font-size: 1.5em;
}
.ql-snow .ql-picker.ql-header .ql-picker-item[data-value="3"]::before {
  font-size: 1.17em;
}
.ql-snow .ql-picker.ql-header .ql-picker-item[data-value="4"]::before {
  font-size: 1em;
}
.ql-snow .ql-picker.ql-header .ql-picker-item[data-value="5"]::before {
  font-size: 0.83em;
}
.ql-snow .ql-picker.ql-header .ql-picker-item[data-value="6"]::before {
  font-size: 0.67em;
}
.ql-snow .ql-picker.ql-font {
  width: 108px;
}
.ql-snow .ql-picker.ql-font .ql-picker-label::before,
.ql-snow .ql-picker.ql-font .ql-picker-item::before {
  content: 'Sans Serif';
}
.ql-snow .ql-picker.ql-font .ql-picker-label[data-value=serif]::before,
.ql-snow .ql-picker.ql-font .ql-picker-item[data-value=serif]::before {
  content: 'Serif';
}
.ql-snow .ql-picker.ql-font .ql-picker-label[data-value=monospace]::before,
.ql-snow .ql-picker.ql-font .ql-picker-item[data-value=monospace]::before {
  content: 'Monospace';
}
.ql-snow .ql-picker.ql-font .ql-picker-item[data-value=serif]::before {
  font-family: Georgia, Times New Roman, serif;
}
.ql-snow .ql-picker.ql-font .ql-picker-item[data-value=monospace]::before {
  font-family: Monaco, Courier New, monospace;
}
.ql-snow .ql-picker.ql-size {
  width: 98px;
}
.ql-snow .ql-picker.ql-size .ql-picker-label::before,
.ql-snow .ql-picker.ql-size .ql-picker-item::before {
  content: 'Normal';
}
.ql-snow .ql-picker.ql-size .ql-picker-label[data-value=small]::before,
.ql-snow .ql-picker.ql-size .ql-picker-item[data-value=small]::before {
  content: 'Small';
}
.ql-snow .ql-picker.ql-size .ql-picker-label[data-value=large]::before,
.ql-snow .ql-picker.ql-size .ql-picker-item[data-value=large]::before {
  content: 'Large';
}
.ql-snow .ql-picker.ql-size .ql-picker-label[data-value=huge]::before,
.ql-snow .ql-picker.ql-size .ql-picker-item[data-value=huge]::before {
  content: 'Huge';
}
.ql-snow .ql-picker.ql-size .ql-picker-item[data-value=small]::before {
  font-size: 10px;
}
.ql-snow .ql-picker.ql-size .ql-picker-item[data-value=large]::before {
  font-size: 18px;
}
.ql-snow .ql-picker.ql-size .ql-picker-item[data-value=huge]::before {
  font-size: 32px;
}
.ql-snow .ql-color-picker.ql-background .ql-picker-item {
  background-color: #fff;
}
.ql-snow .ql-color-picker.ql-color .ql-picker-item {
  background-color: #000;
}
.ql-toolbar.ql-snow {
  border: 1px solid #ccc;
  box-sizing: border-box;
  font-family: 'Helvetica Neue', 'Helvetica', 'Arial', sans-serif;
  padding: 8px;
}
.ql-toolbar.ql-snow .ql-formats {
  margin-right: 15px;
}
.ql-toolbar.ql-snow .ql-picker-label {
  border: 1px solid transparent;
}
.ql-toolbar.ql-snow .ql-picker-options {
  border: 1px solid transparent;
  box-shadow: rgba(0,0,0,0.2) 0 2px 8px;
}
.ql-toolbar.ql-snow .ql-picker.ql-expanded .ql-picker-label {
  border-color: #ccc;
}
.ql-toolbar.ql-snow .ql-picker.ql-expanded .ql-picker-options {
  border-color: #ccc;
}
.ql-toolbar.ql-snow .ql-color-picker .ql-picker-item.ql-selected,
.ql-toolbar.ql-snow .ql-color-picker .ql-picker-item:hover {
  border-color: #000;
}
.ql-toolbar.ql-snow + .ql-container.ql-snow {
  border-top: 0px;
}
.ql-snow .ql-tooltip {
  background-color: #fff;
  border: 1px solid #ccc;
  box-shadow: 0px 0px 5px #ddd;
  color: #444;
  padding: 5px 12px;
  white-space: nowrap;
}
.ql-snow .ql-tooltip::before {
  content: "Visit URL:";
  line-height: 26px;
  margin-right: 8px;
}
.ql-snow .ql-tooltip input[type=text] {
  display: none;
  border: 1px solid #ccc;
  font-size: 13px;
  height: 26px;
  margin: 0px;
  padding: 3px 5px;
  width: 170px;
}
.ql-snow .ql-tooltip a.ql-preview {
  display: inline-block;
  max-width: 200px;
  overflow-x: hidden;
  text-overflow: ellipsis;
  vertical-align: top;
}
.ql-snow .ql-tooltip a.ql-action::after {
  border-right: 1px solid #ccc;
  content: 'Edit';
  margin-left: 16px;
  padding-right: 8px;
}
.ql-snow .ql-tooltip a.ql-remove::before {
  content: 'Remove';
  margin-left: 8px;
}
.ql-snow .ql-tooltip a {
  line-height: 26px;
}
.ql-snow .ql-tooltip.ql-editing a.ql-preview,
.ql-snow .ql-tooltip.ql-editing a.ql-remove {
  display: none;
}
.ql-snow .ql-tooltip.ql-editing input[type=text] {
  display: inline-block;
}
.ql-snow .ql-tooltip.ql-editing a.ql-action::after {
  border-right: 0px;
  content: 'Save';
  padding-right: 0px;
}
.ql-snow .ql-tooltip[data-mode=link]::before {
  content: "Enter link:";
}
.ql-snow .ql-tooltip[data-mode=formula]::before {
  content: "Enter formula:";
}
.ql-snow .ql-tooltip[data-mode=video]::before {
  content: "Enter video:";
}
.ql-snow a {
  color: #06c;
}
.ql-container.ql-snow {
  border: 1px solid #ccc;
}

.quill{width:100%}.quill .ql-toolbar{display:none}.quill .ql-snow{border-radius:6px;border:none}.quill .ql-editor{border:1px solid #e1e6ed;box-sizing:border-box;border-radius:6px;padding-left:10px;height:140px;font-size:.9375rem;line-height:1.25rem;resize:none}.quill-error{border:1px solid var(--error);border-radius:6px}
.certificates .from:before{content:"С: "}.certificates .from input{width:80%}.certificates .to:before{content:"По: "}.certificates .to input{width:80%}.status__initial{color:#2a70d4;background:#e8f9ff}.certificates__type-selector{width:100%;height:40px;border-bottom:1px solid #bac1cc;margin:32px 0;display:flex;justify-content:start;column-gap:32px;font-size:18px;line-height:24px;color:#878c94}.certificates__type-selector div{user-select:none}.certificates__type-selector div:hover{cursor:pointer}.certificates__type-selector .selected{text-shadow:0 0 .05px;color:#003271;border-bottom:2px solid #003271}.poa-manage__list .rowww.data{min-width:1000px}.poa-manage__list .cell:nth-child(1){max-width:10%;min-width:50px}.poa-manage__list .cell:nth-child(2){max-width:10%;min-width:130px}.poa-manage__list .cell:nth-child(3){max-width:10%;min-width:100px}.poa-manage__list .cell:nth-child(4){max-width:10%;min-width:100px}.poa-manage__list .cell:nth-child(5){max-width:20%;min-width:160px}.poa-manage__list .cell:nth-child(6){max-width:13%;min-width:100px}.poa-manage__list .cell:nth-child(7){max-width:15%;min-width:150px}.poa-manage__list .cell:nth-child(8){max-width:10%;min-width:120px}.poa-manage__list .cell:nth-child(9){max-width:3%;min-width:20px}.poaTrustPowerFilter{width:350px}
.report-list{padding:32px;cursor:pointer;align-items:flex-start !important}.report-list__title{font-family:"Source Sans Pro",sans-serif;font-weight:700;font-size:24px;line-height:32px}.report-list__description{max-width:790px;font-weight:400;font-size:15px;line-height:20px;color:#04172e}.report-list__image{cursor:pointer;width:16px;height:16px}.report-list__image img{width:100%;height:100%;object-fit:contain}
.table-row{box-shadow:0px 2px 8px rgba(4,23,46,.08) !important;margin-bottom:10px !important;border-radius:6px !important}.table-row__position{font-weight:400;font-size:15px;line-height:20px}.table-row__initial{color:#3484f8;background:#f3f5f9}.table-row__active{color:#0ca967;background:#e5fcea}.table-row__revoked{color:#fff;background:#d92f58}.table-row__expired{color:#d92f58;background:#f3f5f9}
.excel-export{font-style:normal;font-weight:600;font-size:15px;line-height:20px;color:#003271;margin-bottom:80px;gap:16px}.excel-export img,.excel-export span{cursor:pointer}
.report-certificate-filters{margin-bottom:28px;gap:28px}.report-certificate-filters__period{font-weight:600;font-size:15px;line-height:20px;color:#04172e}.report-certificate-filters__cert-owner-type{display:flex;flex:1;min-width:180px}.report-certificates-filters__bottom-block{flex-wrap:wrap}
.report-certificate-list .cell:nth-child(1){max-width:3%}.report-certificate-list .cell:nth-child(2){max-width:18%}.report-certificate-list .cell:nth-child(3){max-width:16%}.report-certificate-list .cell:nth-child(4){max-width:19%}.report-certificate-list .cell:nth-child(5){max-width:10%}.report-certificate-list .cell:nth-child(6){max-width:10%}.report-certificate-list .cell:nth-child(7){max-width:9%}.report-certificate-list .cell:nth-child(8){max-width:16%}.report-certificate-list__image{cursor:pointer;object-fit:contain;rotate:180deg}
.excel-export{font-style:normal;font-weight:600;font-size:15px;line-height:20px;color:#003271;margin-bottom:80px;gap:16px}.excel-export img,.excel-export span{cursor:pointer}
.report-certificate-manage .cell:nth-child(1){max-width:5%}.report-certificate-manage .cell:nth-child(2){max-width:10%}.report-certificate-manage .cell:nth-child(3){max-width:14%}.report-certificate-manage .cell:nth-child(4){max-width:16%}.report-certificate-manage .cell:nth-child(5){max-width:16%}.report-certificate-manage .cell:nth-child(6){max-width:14%}.report-certificate-manage .cell:nth-child(7){max-width:15%}.report-certificate-manage .cell:nth-child(8){max-width:10%}
.report-poa-list .cell:nth-child(1){max-width:3%}.report-poa-list .cell:nth-child(2){max-width:14%}.report-poa-list .cell:nth-child(3){max-width:15%}.report-poa-list .cell:nth-child(4){max-width:15%}.report-poa-list .cell:nth-child(5){max-width:15%}.report-poa-list .cell:nth-child(6){max-width:9%}.report-poa-list .cell:nth-child(7){max-width:9%}.report-poa-list .cell:nth-child(8){max-width:10%}.report-poa-list .cell:nth-child(9){max-width:10%}
.report-poa-list .cell:nth-child(1){max-width:5%}.report-poa-list .cell:nth-child(2){max-width:10%}.report-poa-list .cell:nth-child(3){max-width:15%}.report-poa-list .cell:nth-child(4){max-width:15%}.report-poa-list .cell:nth-child(5){max-width:20%}.report-poa-list .cell:nth-child(6){max-width:15%}.report-poa-list .cell:nth-child(7){max-width:10%}.report-poa-list .cell:nth-child(8){max-width:10%}
.items__list{list-style-type:none;padding:0;margin:0}
.poa__status,.poa__type{font-weight:600;font-size:13px;line-height:18px;border-radius:20px;padding:8px 12px 8px 12px}.poa__status{width:min-content;word-break:keep-all}.status__active{color:#0ca967;background:#e7f6f0}.status__rejected{color:#fff;background:#d92f58}
.federal-register__table-container{margin-top:32px}.federal-register__table-container .cell:nth-child(1){max-width:15%}.federal-register__table-container .cell:nth-child(2){max-width:30%;overflow:hidden;text-overflow:ellipsis;white-space:pre-wrap}.federal-register__table-container .cell:nth-child(3){max-width:10%}.federal-register__table-container .cell:nth-child(4){max-width:20%}.federal-register__table-container .cell:nth-child(5){max-width:15%}.federal-register__table-container .cell:nth-child(6){max-width:10%}
.my-requests .cell:nth-child(1){max-width:20%}.my-requests .cell:nth-child(2){max-width:65%}.my-requests .cell:nth-child(3){max-width:15%}
.trust-power__label{font-weight:normal;font-size:13px;line-height:18px;color:#878c94;white-space:nowrap;margin-bottom:5px}.trust-power__value{font-weight:bold;overflow-wrap:break-word}.trust-power__separator{height:1px;background-color:#878c94;border:none;margin:20px 0}.trust-power__submit-button{margin-top:10px;margin-left:0}
.trust-power-add__top-buttons{margin-bottom:20px;margin-top:20px}.trust-power-add__gray-comment{color:#878c94;font-size:11px;font-weight:normal;line-height:14px}.trust-power-add__textarea{max-width:100%;max-height:100%;width:50%}.trust-power-add__first-field{margin-top:0;margin-bottom:16px}.trust-power-add__separator{border:1px solid #e1e6ed;width:100%;margin-top:16px}.trust-power-add__full-width{width:100%}
.powerApplicationsList .list .rowww.data{min-width:900px}.powerApplicationsList .list .cell:nth-child(1){max-width:15%;min-width:135px}.powerApplicationsList .list .cell:nth-child(2){max-width:20%;min-width:180px}.powerApplicationsList .list .cell:nth-child(3){max-width:15%;min-width:135px}.powerApplicationsList .list .cell:nth-child(4){max-width:20%;min-width:180px}.powerApplicationsList .list .cell:nth-child(5){max-width:10%;min-width:90px}.powerApplicationsList .list .cell:nth-child(6){max-width:15%;min-width:135px}.powerApplicationsList .list .cell:nth-child(7){max-width:5%;min-width:45px}.export-modal{padding:16px 32px 16px 32px}.export-modal .date-from-label,.export-modal .permission-creation-date-label{margin-right:8px}.export-modal .date-to-label{margin-left:43px}.export-modal .file-type-label{margin:0 8px}.export-modal .spinner-container{width:69px}
._7090 ._3d23{padding:32px;background-color:#fff;box-shadow:0px 2px 8px rgba(4,23,46,.08);border-radius:6px}._7090 ._99fe{font-weight:600;font-size:18px;line-height:24px;margin-bottom:16px}._7090 .aa6b{display:flex;flex-direction:column;row-gap:16px}._7090 ._4d79{margin-right:10px}._7090 ._790a{margin-right:10px}._7090 .cba2{border:1px solid #e1e6ed;width:100%}._7090 .fe37{margin-top:16px}._57bf{height:calc(100vh - 90px);display:flex;justify-content:center;align-items:center}._0955{height:100px}._83e1{padding:16px 32px 16px 32px}._9037{min-width:50%}
._980d{height:4px;margin:24px 0;background:var(--grey-1);width:100%}
.header-selector{width:100%;height:40px;border-bottom:1px solid #bac1cc;margin:32px 0;display:flex;justify-content:start;column-gap:32px;font-size:18px;line-height:24px;color:#878c94}.header-selector div{user-select:none}.header-selector div:hover{cursor:pointer}.header-selector .selected{text-shadow:0 0 .05px;color:#003271;border-bottom:2px solid #003271}
.inssuance-table .cell:nth-child(1){max-width:3%}.inssuance-table .cell:nth-child(2){max-width:15%}.inssuance-table .cell:nth-child(3){max-width:10%}.inssuance-table .cell:nth-child(4){max-width:19%}.inssuance-table .cell:nth-child(5){max-width:21%}.inssuance-table .cell:nth-child(6){max-width:16%}.inssuance-table .cell:nth-child(7){max-width:16%}.inssuance-table__number{font-weight:600;font-size:15px;line-height:20px;color:#3484f8}.inssuance-table__row{position:relative}.inssuance-table__description{font-weight:400;font-size:15px;line-height:20px;color:#04172e}.inssuance-table__dots{padding:0 8px;position:absolute;top:50%;right:0;-webkit-transform:translate(-50%, -50%);-ms-transform:translate(-50%, -50%);transform:translate(-50%, -50%)}.inssuance-table__dots__image{min-width:20px}.inssuance-table__popover{padding:8px}.inssuance-table__popover__button{cursor:pointer;font-weight:400;font-size:15px;line-height:20px;color:#04172e;padding:10px 12px}.inssuance-table__popover__disabled{color:#bac1cc}.inssuance-table__status{font-weight:600;font-size:13px;line-height:18px;border-radius:12px;padding:3px 8px}.inssuance-table__status__rejected{color:#d92f58;background:#f3f5f9}.inssuance-table__status__wait{background:#fff573;color:#764211}.inssuance-table__status__success{background:#0ca967;color:#fff}.inssuance-table__status__approved{color:#3484f8;background:#f3f5f9}.inssuance-table__status__draft{background:#878c94;color:#fff}
.manage-form__organisation{color:var(--grey-5);font-family:Source Sans Pro,sans-serif;font-size:12px;font-style:normal;font-weight:600;line-height:16px;text-transform:uppercase}.manage-form__line{width:100%;height:1px;background:#e1e6ed;margin:10px 0}.manage-form__action-title{font-weight:600;font-size:13px;line-height:18px;color:#04172e}.manage-form__input-container{position:relative;width:100%;max-width:200px}.manage-form__input-button{position:relative;margin:0;cursor:pointer}.manage-form__input-file{width:100%;height:100%}.manage-form__texrarea{width:616px;height:80px}.manage-form__file-container__name{cursor:pointer;font-weight:400;font-size:15px;line-height:20px;text-decoration-line:underline;color:#003271}.manage-form__file-container__size{font-weight:400;font-size:15px;line-height:20px;color:#878c94}.manage-form__file-container__close{cursor:pointer}.manage-form__image{width:16px;height:16px}
.accounting-list__container{padding-right:16px}.accounting-list__count{font-style:normal;font-weight:700;font-size:36px;line-height:44px;color:#3484f8}.accounting-list__count-title{font-style:normal;font-weight:600;font-size:18px;line-height:24px;color:#04172e}.table-carrier-ul .cell:nth-child(1){max-width:3%}.table-carrier-ul .cell:nth-child(2){max-width:20%}.table-carrier-ul .cell:nth-child(3){max-width:17%}.table-carrier-ul .cell:nth-child(4){max-width:20%}.table-carrier-ul .cell:nth-child(5){max-width:20%}.table-carrier-ul .cell:nth-child(6){max-width:20%}.table-license-ul .cell:nth-child(1){max-width:3%}.table-license-ul .cell:nth-child(2){max-width:20%}.table-license-ul .cell:nth-child(3){max-width:20%}.table-license-ul .cell:nth-child(4){max-width:12%}.table-license-ul .cell:nth-child(5){max-width:10%}.table-license-ul .cell:nth-child(6){max-width:13%}.table-license-ul .cell:nth-child(7){max-width:22%}.table-esign-tools .cell:nth-child(1){max-width:3%}.table-esign-tools .cell:nth-child(2){max-width:20%}.table-esign-tools .cell:nth-child(3){max-width:17%}.table-esign-tools .cell:nth-child(4){max-width:17%}.table-esign-tools .cell:nth-child(5){max-width:10%}.table-esign-tools .cell:nth-child(6){max-width:25%}.table-esign-tools .cell:nth-child(7){max-width:8%}
._5bc4{font-family:"Source Sans Pro",sans-serif;font-style:normal;font-weight:600;font-size:13px;line-height:18px;color:#04172e}
.list option{font-size:15px}.list__search{align-items:center}.list__manifest{color:#37465a;font-size:15px;line-height:20px}.list__option{display:flex;justify-content:start}.list__option-name-prefix{font-size:15px;line-height:20px;color:#878c94}.list__expand-icon{display:flex;width:8px;height:6px;background:url(/images/sort-expand-3969749634141d5a2995867df5baaf83.png) no-repeat;background-size:cover;margin-left:10px;cursor:pointer}.list__menu-options-wrapper{z-index:100;position:absolute;top:0;left:0;right:0;bottom:0}.list__menu-options{position:fixed;z-index:101;width:420px;border:1px;padding:8px;background:#fff;box-shadow:0px 2px 8px rgba(4,23,46,.08);margin:auto}.list__menu-option{display:flex;flex-direction:row;align-items:center;padding:10px 12px 10px 8px}.list__menu-divider{height:1px;width:100%;background:#e1e6ed}.list__menu-option div:nth-child(1){width:25px;text-align:left}.list__menu-option div:nth-child(2){margin-left:10px;font-size:15px;line-height:20px;flex:none;order:1;align-self:stretch;flex-grow:1;cursor:pointer}.list__menu-option div:hover{font-weight:500}.list table td:nth-child(5){width:20px;cursor:pointer}.list__sorted::after{content:"";background:url(/images/status-icon-fec6969eec83c1c2fbd33ec20464fb9f.png) no-repeat;background-size:contain;min-width:14px;min-height:12px;display:block;margin-left:5px}.list td div{vertical-align:center;padding:0 20px 0 20px}.list-item__status{width:fit-content;border-radius:12px;padding:5px 10px 5px 10px !important;font-weight:600;font-size:12px;line-height:16px;word-break:normal}.list-item td:not(:last-child){cursor:pointer}.manage__list .cell{display:flex}.manage__list .cell .statusContainer{border-radius:12px;padding:3px 8px}.manage__list .cell .draft{color:#3484f8;background:#e6eefe}.manage__list .cell .planned{color:#e5b537;background:#fff4ea}.manage__list .cell .published{color:#0ca967;background:#e5fcea}.manage__list .cell .removed{color:#d92f58;background:#fbeef1}.manage__list .cell:nth-child(1){flex:0 0 150px}.manage__list .cell:nth-child(2){flex:0 0 170px}.manage__list .cell:nth-child(3){flex:0 0 170px}.manage__list .cell:nth-child(4){flex:0 0 200px}.manage__list .cell:nth-child(5){flex:0 1 100%;word-break:break-word}.manage__list .cell:nth-child(6){flex:0 1 100%}.manage__list .cell:nth-child(7){flex:0 0 3%}.manage__list .row-data-item{padding:26px 16px}.dots-column{margin-left:auto}
._5182{display:flex;flex-direction:row}.e085{display:flex;flex-direction:column;margin-bottom:33px}._6af1{display:flex;flex-direction:row;justify-content:flex-start;align-items:flex-end}._6af1 .a816{font-size:36px;font-weight:700;margin:0}.e37e{font-size:15px;font-weight:600;border-radius:20px;padding:6px 10px;margin-left:16px;min-height:32px;line-height:19px;margin-bottom:8px}._611c{color:#3484f8;background:#e6eefe}._1b68{color:#e5b537;background:#fff4ea}.bf9c{color:#0ca967;background:#e5fcea}.a4dd{color:#d92f58;background:#fbeef1}.a235{font-size:18px;font-weight:600;color:#37465a}._7cba{display:flex;flex-direction:column;padding:32px;background:#fff;margin-bottom:32px}._7cba textarea{border:1px solid #e1e6ed;box-sizing:border-box;border-radius:6px;padding-left:10px;height:140px;font-size:.9375rem;line-height:1.25rem;resize:none}._7cba input{border:1px solid #e1e6ed;box-sizing:border-box;border-radius:6px;padding-left:10px;height:2.75rem;font-size:.9375rem;line-height:1.25rem}._97f6{font-size:20px;font-weight:bold;margin-bottom:24px}._0871{display:flex;flex-direction:row;max-width:620px}.a648{font-weight:600;font-size:.8125rem;line-height:1.125rem;margin-bottom:8px}.a4e4{display:flex;flex-direction:row;align-items:center}.a4e4 input{width:18px;height:18px}._391b{margin:0;background:#f3f5f9;border-radius:4px;color:#003271;font-weight:600;font-size:13px;padding:12px 24px;cursor:pointer;width:fit-content}._1f39{margin-top:8px;color:#878c94;font-size:13px}._8975{font-size:15px;font-weight:600}.b7eb,.f6c9,.c34b{margin-bottom:16px}._79fd,.ed03,._45b3,._3c02{margin-top:32px}._13ed{margin-right:16px}._4c0a{font-size:12px;color:#d92f58;margin-top:3px}._90ae{display:flex;flex-direction:row}._90ae button{font-size:15px;margin-right:16px;padding:12px 24px;border-radius:6px}.d957{color:#fff;background:#003271}._8d96{color:#003271;background:#fff;border:1px solid #e1e6ed}._402b{color:#d92f58;background:#fff;margin:0;border:1px solid #e1e6ed}._3047{position:relative}
@font-face{font-family:Inter;font-weight:100;font-style:normal;src:url(/fonts/Inter-Thin.ttf) format("truetype")}@font-face{font-family:Inter;font-weight:200;font-style:normal;src:url(/fonts/Inter-ExtraLight.ttf) format("truetype")}@font-face{font-family:Inter;font-weight:300;font-style:normal;src:url(/fonts/Inter-Light.ttf) format("truetype")}@font-face{font-family:Inter;font-weight:400;font-style:normal;src:url(/fonts/Inter-Regular.ttf) format("truetype")}@font-face{font-family:Inter;font-weight:500;font-style:normal;src:url(/fonts/Inter-Medium.ttf) format("truetype")}@font-face{font-family:Inter;font-weight:600;font-style:normal;src:url(/fonts/Inter-SemiBold.ttf) format("truetype")}@font-face{font-family:Inter;font-weight:700;font-style:normal;src:url(/fonts/Inter-Bold.ttf) format("truetype")}@font-face{font-family:Inter;font-weight:800;font-style:normal;src:url(/fonts/Inter-ExtraBold.ttf) format("truetype")}@font-face{font-family:Inter;font-weight:900;font-style:normal;src:url(/fonts/Inter-Black.ttf) format("truetype")}@font-face{font-family:Intro Regular;font-weight:400;font-style:normal;src:url(/fonts/intro_regular.ttf) format("truetype")}@font-face{font-family:Intro Bold;font-weight:700;font-style:normal;src:url(/fonts/intro_bold.ttf) format("truetype")}@font-face{font-family:Intro #000;font-weight:900;font-style:normal;src:url(/fonts/intro_black.ttf) format("truetype")}@font-face{font-family:Intro Book;font-weight:400;font-style:normal;src:url(/fonts/Intro-Book.ttf) format("truetype")}*,*::before,*::after{box-sizing:border-box;font-family:Inter,Roboto,sans-serif}html{background:#fff;box-sizing:inherit;width:100%;height:100%;flex-direction:column}@media screen and (max-width: 1280px){html{font-size:14px}}@media screen and (max-width: 1024px){html{font-size:12px}}body{margin:0;padding:0;height:100%;width:100%;flex-direction:column}body::-webkit-scrollbar{display:none}::-webkit-scrollbar{width:6px}::-webkit-scrollbar-thumb{border-radius:3px;background-color:#e1e6ed}::-webkit-scrollbar-track{border-radius:10px}::-webkit-scrollbar-thumb:hover{background:#bac1cc}#root{height:100%;width:100%;display:flex}.window{display:flex;flex-direction:column;flex:1;max-height:100vh;justify-content:flex-start}.content{position:relative;background-color:#f8f9fd;flex:1}.content-area{display:block;width:100%;height:100%;padding:3% 15% 4% 15%}.full-width{max-width:100vw}.w-100{width:100%}input{border:1px solid #e1e6ed;box-sizing:border-box;border-radius:6px;padding-left:10px;height:2.75rem;font-size:.9375rem;line-height:1.25rem}input[id^=react-select]{height:auto}.react-select__input{height:auto}input:disabled{background-color:#f3f5f9}input[type=checkbox]{margin-right:10px;min-width:16px;width:16px;height:16px}input[type=radio]{margin-top:0;margin-bottom:0}input[type=file]{display:none}input[type=date]{width:fit-content}input:focus{outline:none}input:hover,textarea:hover{border:1px solid rgba(0,50,113,.2)}textarea{border:1px solid #e1e6ed;outline:none;border-radius:6px;padding-top:6px;padding-left:10px;font-size:.9375rem;line-height:1.25rem}input.second{width:20%}input.third{width:30%}input.shortened{width:40%}input.extended{width:70%}input.full{width:100%}select{border:1px solid #e1e6ed;box-sizing:border-box;border-radius:6px;padding-left:10px;height:2.75rem;font-size:.9375rem;line-height:1.25rem}select option{background-color:#f8f9fd;font-size:13px}select:disabled{background-color:#f3f5f9;color:#000}select.third{width:30%}select.shortened{width:40%}select.extended{width:70%}select.full{width:100%}select:focus{outline:none}select:hover{border:1px solid rgba(0,50,113,.2)}.unselectable{-moz-user-select:none;-webkit-user-select:none;-ms-user-select:none;user-select:none}button,.buttonElement{cursor:pointer;border:none;border-radius:6px;margin-left:5px;margin-right:5px}button:disabled{opacity:.5;cursor:auto !important}.transparent-btn{height:2.75rem;font-size:.9375rem;line-height:1.25rem;color:#003271;background:none;font-weight:600;padding:.75rem 1.5rem}.transparent-bordered-btn{height:2.75rem;font-size:.9375rem;line-height:1.25rem;color:#003271;background:none;font-weight:600;padding:.75rem 1.5rem;border:1px solid #e1e6ed !important}.alert-btn{height:2.75rem;font-size:.9375rem;line-height:1.25rem;color:#fff;background:#d92f58;font-weight:600;padding:.75rem 1.5rem}.transparent-alert-btn{height:2.75rem;font-size:.9375rem;line-height:1.25rem;color:#d92f58;background:none;font-weight:600;padding:.75rem 1.5rem;border:1px solid #d92f58 !important}.bordered-alert-btn{height:2.75rem;font-size:.9375rem;line-height:1.25rem;color:#d92f58;background:#fff;font-weight:600;padding:.75rem 1.5rem;border:1px solid #d92f58 !important}.solid-btn{height:2.75rem;font-size:.9375rem;line-height:1.25rem;color:#fff;background:#003271;font-weight:600;padding:.75rem 1.5rem;white-space:nowrap}.solid-light-btn{height:2.75rem;font-size:.9375rem;line-height:1.25rem;color:#fff;background:#3484f8;font-weight:600;padding:.75rem 1.5rem}.grey-btn{background:#f3f5f9;border-radius:4px !important;color:#003271;font-weight:600;font-size:.8125rem;padding:.75rem 1.5rem}.white-btn{height:2.75rem;background:var(--white);padding:.75rem 1.5rem;border-radius:6px;border:1px solid var(--grey-2);color:var(--blue);font-size:.9375rem;font-weight:600;line-height:1.25rem}.img-btn{border:0 !important;background:rgba(0,0,0,0) !important;padding:0;margin:0}label{font-weight:600;font-size:.8125rem;line-height:1.125rem;margin-bottom:8px}a{color:#3484f8}a,a:hover,a:visited,a:active{text-decoration:none}h1{font-size:2.25rem;line-height:2.75rem}h2{font-size:1.5rem;line-height:2rem}h3{font-size:1.25rem;line-height:1.5rem}h4{font-size:1.125rem;line-height:1.5rem}.error{border:1px solid #d92f58 !important}.error-text{font-size:.75rem;line-height:1rem;color:#d92f58;margin-top:3px;position:absolute}.error-text-relative{position:relative}.error-border{border:1px solid #d92f58 !important}.get-data-error{font-size:.8125rem;line-height:1.125rem;color:#878c94;font-weight:600;text-align:center;padding:42px 0}.asteriks{color:#d92f58}.required::after{content:" *";color:#d92f58}.page-title{font-size:2.25rem;line-height:2.75rem;font-weight:700;margin-bottom:1.875rem;margin-right:1rem}.page-title img{margin-right:20px}.block-title{font-size:1.25rem;line-height:1.5rem;font-weight:700;margin-top:0px}.block-sub-title{font-size:1.125rem;line-height:1.5rem;font-weight:600;margin-top:32px}.caption{font-weight:600;font-size:.75rem;line-height:1rem;color:#37465a}.block{padding:32px;background-color:#fff;box-shadow:0px 2px 8px rgba(4,23,46,.08);border-radius:6px;margin-bottom:16px}.block-delimeter{border:1px solid #e1e6ed;margin:0 -32px}.block .row{column-gap:24px}.field-title{font-size:.8125rem;line-height:1.125rem;font-weight:600;margin-bottom:8px}.flex{display:flex;column-gap:5px}.inline{display:flex;justify-content:start;align-items:center}.inline-between{display:flex;justify-content:space-between;align-items:center}.inline-center{display:flex;justify-content:center}.inline-center.vc{align-items:center}.inline-end{display:flex;justify-content:flex-end;align-items:center}.inline-start{display:flex;justify-content:flex-start;align-items:center}.inline-start-align-start{display:flex;justify-content:flex-start;align-items:flex-start}.flex-1{flex:1}.row{display:flex;justify-content:start;margin-top:20px;max-width:50%;row-gap:10px}.fit-content{max-width:fit-content}.shortened{max-width:40%}.extended{max-width:70%}.full{max-width:100%}.half{max-width:50%}.h-100{height:100%}.column{display:flex;flex-direction:column;flex:1}.column.mc{flex:0 0 auto}.column.quarter{flex:.25}.column.third{flex:.33}.column.half{flex:.5}.column.extended{flex:.75}.column.auto{flex:inherit}.column-start{display:flex;justify-content:center;align-items:flex-start}.vertically-centered{display:table}.vertically-centered *{display:table-cell;vertical-align:middle}.tbl{display:flex;flex-direction:column}.rowww{display:flex;min-height:58px;align-items:center;padding-left:16px}.rowww.headers{font-size:.75rem;line-height:1rem;margin-bottom:16px;color:#878c94;font-weight:600;text-align:start;user-select:none}.rowww.data{font-size:.9375rem;line-height:1.25rem;box-shadow:0px 2px 8px rgba(4,23,46,.08);background:#fff;margin-bottom:10px;font-weight:600;text-align:left;border-radius:6px}.cell{flex:1 1 0}.rowww .cell{padding:5px;box-sizing:border-box}.exit-cross{background:url(/images/exit-icon-92190c24ed50fe68ac9231734d5ec1da.png) no-repeat;background-size:cover;height:21px;width:21px;cursor:pointer}.back-arrow{margin-right:20px}.dots-options{padding:100% 10px}button.dots-icon:hover svg path{fill:#003271}.status{width:fit-content;border-radius:12px;padding:5px 10px 5px 10px !important;font-weight:600;font-size:.75rem;line-height:1rem;word-break:normal}.status.grey{color:#fff;background:#878c94}.status.brown{color:#764211;background:#fff4ea}.status.red{color:#d92f58;background:#f3f5f9}.status.green{color:#0ca967;background:#e7f6f0}.status.blue{color:#3484f8;background:#f3f5f9}.radio{margin-bottom:8px}.disabled{background-color:#f3f5f9;color:#545454}.no-margin{margin:0 !important}.no-y-margin{margin-top:0 !important;margin-bottom:0 !important}.no-x-margin{margin-left:0 !important;margin-right:0 !important}.no-y-padding{padding-top:0 !important;padding-bottom:0 !important}.no-x-padding{padding-left:0 !important;padding-right:0 !important}fieldset:disabled{border:none}.clickable{cursor:pointer}.react-select{flex:1}.infinite-scroll{padding:5px}.infinite-scroll .rowww:last-child{margin-bottom:0px}.spinner-layout{display:flex;justify-content:center}.block-selector{width:100%;height:40px;border-bottom:1px solid #bac1cc;margin:32px 0;display:flex;justify-content:start;column-gap:32px;font-size:18px;line-height:24px;color:#878c94}.block-selector div{user-select:none}.block-selector div:hover{cursor:pointer}.block-selector .selected{text-shadow:0 0 .05px;color:#003271;border-bottom:2px solid #003271}.comment-block__text{margin-left:10px;font-weight:600;font-size:18px;line-height:24px}.attachment-container .attachment{background:#f3f5f9;border-radius:4px !important;color:#003271;font-size:.9375rem;line-height:1.25rem;font-weight:600;padding:.75rem 1.5rem;cursor:pointer;width:fit-content;margin:0}.attachment-container .attachment__del-icon{width:2.5rem;cursor:pointer;margin-left:.3125rem}.attachment-container .attachment__del-icon:hover svg path{fill:#d92f58}.uppercase{text-transform:uppercase}.input__non-displayed{opacity:0;z-index:-1;position:absolute}.text__color_blue{color:#3484f8}.cursor__pointer{cursor:pointer}.file-wrapper{position:relative;cursor:pointer}.file-wrapper__input{position:absolute;top:0;left:0;width:100%;height:100%;display:block !important;opacity:0;z-index:10}.file-wrapper__label{position:relative}.horizontal-line{width:100%;height:1px;background:#e1e6ed}.default-image{object-fit:contain;width:100%;height:100%}.main-block{padding:32px;border-radius:24px;background:var(--white);box-shadow:0 8px 16px 0 var(--shadow)}:root{--blue: #003271;--light: #f8f9fd;--light-yellow: #fff573;--light-blue: #3484f8;--shadow: rgba(7, 14, 39, 0.04);--white: #ffffff;--grey-5: #37465a;--grey-4: #878c94;--grey-3: #bac1cc;--grey-2: #e1e6ed;--grey-1: #f3f5f9;--dunkel-blau: #263640;--black: #04172e;--dark-blue: #012657;--error: #d92f58}.p-8{padding:8px}.p-16{padding:16px}.p-32{padding:32px}.p-48{padding:48px}.gap-xxs{gap:4px}.gap-xs{gap:8px}.gap-md{gap:16px}.gap-lg{gap:24px}.gap-xlg{gap:32px}.gap-xxlg{gap:48px}.wrap{flex-wrap:wrap}.h1{font-family:Source Sans Pro,sans-serif;font-size:36px;font-style:normal;font-weight:700;line-height:44px}.h2{font-size:24px;font-weight:700;line-height:32px}.h3{font-size:20px;font-weight:700;line-height:24px}.h4{font-family:Source Sans Pro,sans-serif;font-size:18px;font-style:normal;font-weight:400;line-height:24px}.h4__bold{font-weight:600}.body{font-family:Source Sans Pro,sans-serif;color:var(--grey-5, #37465a);font-size:15px;line-height:20px;font-style:normal}.body__regular{font-weight:400}.body__semi-bold{font-weight:600}.body2{font-family:Source Sans Pro,sans-serif;font-size:13px;font-style:normal;line-height:18px;font-weight:600}.body2__regular{font-weight:400}.secondary{font-size:.8125rem;line-height:1.125rem;color:#878c94;font-weight:400;opacity:.8}.secondary:hover{opacity:1}.color-black{color:var(--black)}.color-grey-4{color:var(--grey-4)}.color-grey-5{color:var(--grey-5)}.color-light-blue{color:var(--light-blue)}.color-grey-3{color:var(--grey-3)}.color-blue{color:var(--blue)}.requests-creating-approving-sign table{display:block !important;overflow-x:auto !important}.requests-creating-approving-sign table span{white-space:pre-wrap}
.table-row{box-shadow:0px 2px 8px rgba(4,23,46,.08) !important;margin-bottom:10px !important;border-radius:6px !important}.table-row__position{font-weight:400;font-size:15px;line-height:20px}.table-row__initial{color:#3484f8;background:#f3f5f9}.table-row__active{color:#0ca967;background:#e5fcea}.table-row__revoked{color:#fff;background:#d92f58}.table-row__expired{color:#d92f58;background:#f3f5f9}
.excel-export{font-style:normal;font-weight:600;font-size:15px;line-height:20px;color:#003271;margin-bottom:80px;gap:8px}.excel-export img,.excel-export span{cursor:pointer}
.report-certificate-filters{margin-bottom:28px;gap:28px}.report-certificate-filters__period{flex:0;font-weight:600;font-size:15px;line-height:20px;color:#04172e}
.external-certificates-report-list .cell:nth-child(1){max-width:3%}.external-certificates-report-list .cell:nth-child(2){cursor:pointer;max-width:15%}.external-certificates-report-list .cell:nth-child(3){max-width:14%}.external-certificates-report-list .cell:nth-child(4){max-width:10%}.external-certificates-report-list .cell:nth-child(5){max-width:10%}.external-certificates-report-list .cell:nth-child(6){max-width:15%;word-break:break-all}.external-certificates-report-list .cell:nth-child(7){max-width:20%;word-break:break-all}.external-certificates-report-list .cell:nth-child(8){max-width:13%}.external-certificates-report-list__image{cursor:pointer;object-fit:contain;rotate:180deg}
.a582{height:4px;margin:24px 0;background:var(--grey-1);width:100%}
.qr-code-block{display:flex;justify-content:center;align-items:center;width:100%}.qr-code{min-width:300px;min-height:300px}
