#entry {
  &.hide {
    display: none;
  }
}

.fallback {
  display: none;
  justify-content: center;
  align-items: center;
  height: 100%;
  box-sizing: border-box;

  &__content {
    $imgHeight: 193px;
    $imgIndent: 25px;

    text-align: center;

    @media screen and (min-height: 370px) {
      padding-top: $imgHeight - $imgIndent;
      background: url(227be59634f216887911033805325b6f.svg) top center/160px no-repeat;
    }

    @media screen and (min-height: 570px) {
      $imgIndent: 35px;
      padding-top: $imgHeight + $imgIndent;
      background-size: auto;
    }
  }

  &__title {
    font-size: 24px;
    font-weight: bold;
    color: #333;
    margin: 0;
  }

  &__paragraph {
    font-size: 16px;
    line-height: 1.5;
    color: #949aa1;
    margin: 10px auto;
    max-width: 290px;
  }

  &__links {
    margin-top: 30px;

    .browser-link {
      margin: 7px 12.5px;
    }
  }

  &.show {
    display: flex;
  }
}

.browser-link {
  width: 176px;
  border-radius: 2px;
  box-sizing: border-box;
  background-color: #0c87f2;
  padding: 9px 10px 9px 40px;
  position: relative;
  display: inline-block;
  vertical-align: middle;
  font-size: 16px;
  color: #fff;
  text-align: center;

  &:before {
    content: '';
    position: absolute;
    top: 0;
    left: 1px;
    bottom: 0;
    margin: auto 0;
    width: 39px;
    height: 38px;
    border-radius: 2px;
    background-color: #fff;
    background-position: center center;
    background-repeat: no-repeat;
  }

  &_chrome {
    &:before {
      background-image: url(bb79905dfc53402d63e91341fadf31fd.svg);
    }
  }

  &_safari {
    display: none;

    &:before {
      background-image: url(c0cff42ff563ebd5352315e5e29d5c03.svg);
    }

    &.show {
      display: inline-block;
    }
  }

  &_firefox {
    &:before {
      background-image: url(f55ffa021153f78b4779ae57ad0af141.svg);
    }
  }
}

