#utekapopup{
	position: fixed;
	top: 0;
	left: 0;
	width: 2px;
	height: 2px;
	z-index: 99999;
	display: none;
}
body{
	--uteka-viewport-height: 100vh;
}
    @keyframes uteka-popup-backdrop {
      from {
        opacity: 0;
      }

      to {
        opacity: 1;
      }
    }

    ._uteka_body_hidden {
      overflow: hidden;
    }

    .uteka-widget-popup {
      position: fixed;
      top: 0;
      right: 0;
      bottom: 0;
      left: 0;
      z-index: 999999;
      -webkit-animation: uteka-popup-backdrop 0.2s both ease-out;
      animation: uteka-popup-backdrop 0.2s both ease-out;
    }

    .uteka-widget-popup__backdrop {
      position: absolute;
      top: 0;
      right: 0;
      bottom: 0;
      left: 0;
      background-color: rgba(29, 29, 33, 0.75);
    }

    .uteka-widget-popup__body {
      display: inline-block;
      width: 100%;
      height: 100%;
      overflow: auto;
      white-space: nowrap;
      text-align: center;
      -webkit-overflow-scrolling: touch;
    }

    .uteka-widget-popup__body::before {
      display: inline-block;
      height: 100%;
      vertical-align: middle;
    }

    .uteka-widget-popup__container {
      box-shadow: 0 8px 16px rgb(0 0 0 / 12%);
      position: relative;
      z-index: 101;
      display: inline-block;
      white-space: normal;
      text-align: left;
      vertical-align: middle;
      background-color: #fff;
      pointer-events: all;
      overflow: hidden;
    }

    .uteka-widget-popup__close {
      position: absolute;
      right: 16px;
      top: 16px;
      font-size: 24px;
      width: 28px;
      text-align: center;
      height: 28px;
      line-height: 1;
      cursor: pointer;
    }

    .uteka-widget {
      /* Минимально поддерживаемые размеры виджета: 320x520. */
      width: 100%;
      outline: 1px solid #e0e0e0;
    }

    .uteka-widget__container {
      margin: 0 auto;
      padding: 0 16px;
    }

    .uteka-widget iframe {
      width: 100vw;
      height: calc(var(--uteka-viewport-height) - 57px);
      border: none;
      min-width: 320px;
      min-height: 440px;
    }

    .uteka-widget-header {
      background: #fff;
      border-bottom: 1px solid #e0e0e0;
    }

    .uteka-widget-header__inner {
      position: relative;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      height: 56px;
    }

    .uteka-widget-header__title {
      width: 230px;
      height: 24px;
      background: url('https://widget.uteka.ru/static/img/widgets/title_2@mobile.svg') no-repeat;
      background-position: center;
    }

    .uteka-widget-header__logo {
      height: 16px;
    }

    .uteka-widget-header__logo img {
      height: 100%;
    }

    .uteka-widget-header__close {
      position: absolute;
      top: 0;
      right: -8px;
      bottom: 0;
      z-index: 5;
      width: 32px;
      height: 32px;
      margin: auto;
      background: url('https://widget.uteka.ru/static/img/widgets/close_2.svg') no-repeat center;
    }

    @media (min-width: 600px) {
      .uteka-widget-popup__body::before {
        content: '';
      }

      .uteka-widget-popup__container {
        margin: 24px 8px;
        border-radius: 8px;
      }

      .uteka-widget__container {
        padding: 0 20px;
      }

      .uteka-widget iframe {
        width: 520px;
        max-height: 660px;
      }
    }

    @media (min-width: 768px) {
      .uteka-widget__container {
        padding: 0 40px;
      }

      .uteka-widget iframe {
        width: 710px;
      }
    }

    @media (min-width: 1024px) {
      .uteka-widget__container {
        padding: 0 44px;
      }

      .uteka-widget iframe {
        width: 920px;
      }
    }

    @media (min-width: 1440px) {
      .uteka-widget__container {
        max-width: 1440px;
        padding: 0 60px;
      }

      .uteka-widget iframe {
        width: 1240px;
      }

      .uteka-widget-header__inner {
        flex-direction: row;
      }

      .uteka-widget-header__title {
        width: 264px;
        height: 24px;
        background-image: url('https://widget.uteka.ru/static/img/widgets/title_2.svg');
      }

      .uteka-widget-header__logo {
        position: absolute;
        top: 0;
        bottom: 0;
        left: 0;
        height: 32px;
        margin: auto;
      }
    }
  