.first-page-popup {
  background: rgba(47, 85, 104, 0.8);
  box-sizing: border-box;
  left: 0;
  margin: auto;
  max-width: 630px;
  padding: 15px 30px 20px;
  position: fixed;
  right: 0;
  top: 190px;
  width: calc(100% - 40px);
  z-index: 1000;
}
.first-page-popup .close-btn {
  cursor: pointer;
  position: absolute;
  right: 7px;
  top: 7px;
}
.first-page-popup a {
  text-decoration: none;
}
.first-page-popup a svg {
  display: block;
  margin: 0 auto 12px;
}
.first-page-popup a p {
  color: #fff;
  font-family: "Open Sans";
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  margin: 0 0 20px;
  text-align: center;
}

.inline-hover-tooltip {
  display: inline-block;
  position: relative;
}
.inline-hover-tooltip:hover .text {
  opacity: 1;
}
.inline-hover-tooltip .inline-hover-button {
  background-color: #c59634;
  border-radius: .4444444444rem;
  color: #fff;
  cursor: help;
  display: inline-block;
  font-size: 0.8rem;
  height: 20px;
  line-height: 20px;
  text-align: center;
  width: 20px;
}
.inline-hover-tooltip .text {
  background-color: #2e5368bf;
  border-radius: 10px;
  color: #fff;
  font-size: 0.85em;
  left: 0;
  line-height: 1.3em;
  max-width: 320px;
  opacity: 0;
  position: absolute;
  pointer-events: none;
  padding: 0.8em 1.5em;
  top: calc(100% + 5px);
  transition: 0.3s;
  width: 320px;
}
