.popup {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(#000, 0.5);
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;

  &__content {
    background-color: #181434;
    text-align: center;
    max-width: 36rem;
    border-radius: 14px;
    overflow: hidden;
    display: flex;
    flex-direction: column;

    .logo {
      width: 10.7rem;
      height: 6rem;
      margin: 2.4rem auto 0;
    }

    p {
      font-weight: 300;
      font-size: 1.4rem;
      margin-top: 1.3rem;
      margin-bottom: 4rem;
      line-height: 1.6;
      padding: 0 3rem;
    }
  }

  &__link {
    display: inline-block;
    background-color: transparent;
    border: none;
    text-decoration: none;
    font-size: 1.6rem;
    line-height: 1.3;
    font-weight: 700;
    color: #7370f9;
    padding: 1.1rem 0;
    border-top: 1px solid rgba(252, 252, 244, 0.5);

    &_disabled {
      color: rgba(252, 252, 244, 0.5);
    }
  }
}
