.tltip {
  position: relative;
  width: 22px;
  height: 22px;
  background-repeat: no-repeat;
  background-position: center center;
  display: block;
  float: left;
  margin-right: 10px; }
  .tltip:hover {
    cursor: pointer; }

.tltip__block {
  width: 100%;
  position: absolute;
  z-index: 1000;
  max-width: 550px; }
  .tltip__block::after {
    content: '';
    display: block;
    width: 25px;
    height: 25px;
    background: #fff;
    margin-left: 50%;
    position: relative;
    top: -13px;
    left: -12px;
    -webkit-box-shadow: 4px 4px 4px rgba(0, 0, 0, 0.25);
            box-shadow: 4px 4px 4px rgba(0, 0, 0, 0.25);
    -webkit-transform: rotate(45deg);
        -ms-transform: rotate(45deg);
            transform: rotate(45deg);
    border: 1px solid #b8b8b8;
    border-left-style: none;
    border-top-style: none; }

.tltip__wrapper {
  background: #fff;
  padding: 20px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border: 1px solid #b8b8b8;
  border-radius: 8px;
  -webkit-box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
          box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
  position: relative; }

.tltip__scroll {
  max-height: 520px;
  overflow-y: scroll; }

.tltip__logo {
  width: 128px;
  height: 128px;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover; }

.tltip__description {
  padding: 20px 0 0; }

.tltip__link {
  padding: 10px 0; }

.tltip__prefix {
  margin-right: 10px; }

.tltip__value {
  color: #2A73E1; }
  .tltip__value:hover {
    color: #2A73E1;
    text-decoration: underline; }

.tltip__close {
  position: absolute;
  right: 5px;
  top: 5px;
  width: 24px;
  text-align: center;
  line-height: 24px;
  font-size: 24px; }

@media (min-width: 992px) {
  .tltip__block::after {
    margin-left: 70px;
    left: 0; }
  .tltip__info {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    gap: 20px; }
  .tltip__logo {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 128px;
            flex: 0 0 128px; }
  .tltip__description {
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
    padding: 0; }
  .tltip__rows {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    gap: 0;
    padding-top: 5px; }
  .tltip__link {
    padding: 5px 0; }
    .tltip__link:last-child {
      padding-bottom: 0; }
  .tltip__column {
    -webkit-box-flex: 1;
        -ms-flex: 1 0 50%;
            flex: 1 0 50%; }
    .tltip__column + .tltip__column {
      text-align: right; } }
