.journey-atol {
  position: relative;
  margin: 10px 0 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  cursor: help;
}

.journey-atol__logo {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}

.journey-atol__label {
  font-size: 11px;
  font-weight: 800;
  color: #008009;
  border-bottom: 1px dotted currentColor;
}

.journey-atol__tip {
  position: absolute;
  bottom: calc(100% + 10px);
  z-index: 6;
  width: min(220px, calc(100% + 8px));
  padding: 10px 12px;
  border-radius: 8px;
  background: #104443;
  color: #fff;
  font-size: 12px;
  line-height: 1.4;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.15s ease;
}

.journey-atol__tip::after {
  content: "";
  position: absolute;
  bottom: -5px;
  width: 10px;
  height: 10px;
  background: #104443;
  transform: rotate(45deg);
}

.journey-atol:hover .journey-atol__tip,
.journey-atol:focus .journey-atol__tip,
.journey-atol:focus-visible .journey-atol__tip {
  opacity: 1;
  visibility: visible;
}
