.ntc-bubble {
  display: none;
  position: absolute;
  width: 420px;
    color: black;
  top: 90%;
  left: 50%;
  margin-top: 10px;
  padding: 24px;
  border: 1px solid #ededed;
  border-radius: 8px;
  background: #fff;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-weight: lighter;
  font-size: 16px;
  text-align: center;
  box-shadow: 0 10px 24px rgba(0,0,0,.05);
  transform: translateX(-50%);
  box-sizing: border-box;
  z-index: 100;
    transition: opacity 0.15s ease-in-out;
}
.ntc-bubble:before,
.ntc-bubble:after {
  content: '';
  display: block;
  position: absolute;
  width: 0;
  height: 0;
  top: -10px;
  left: 50%;
  border-width: 0 14px 10px;
  border-style: solid;
  border-color: transparent;
  border-bottom-color: #fff;
  transform: translateX(-50%);
}
.ntc-bubble:before {
  margin-top: -1px;
  border-bottom-color: #ededed;
}
.ntc-bubble--visible {
  display: block;
}
.ntc-bubble * {
  font-family: inherit;
  box-sizing: inherit;
}
.ntc-text {
  margin: 0;
}
.ntc-link {
  color: #408bb1;
  text-decoration: none;
}
.ntc-buttons {
  display: flex;
  margin-top: 15px;
  justify-content: space-between;
}
.ntc-btn {
  display: inline-block;
  margin-top: 5px;
  padding: 9px 23px;
  border-radius: 3px;
  background-color: #dfecf1;
  font-size: 13px;
  color: #046799;
  text-decoration: none;
  transition: background-color .1s ease-in-out;
}
.ntc-btn.single {
    width: 100%;
}
.ntc-btn:hover {
  background-color: rgba(223,236,241,.8);
}
.ntc-btn:active {
  background-color: rgba(223,236,241,.6);
}
.ntc-btn--dark {
  background-color: #046799;
  color: #fff;
}
.ntc-btn--dark:hover {
  background-color: rgba(4,103,153,.9);
}
.ntc-btn--dark:active {
  background-color: rgba(4,103,153,.8);
}
.ntc-not_show_again {
  display: block;
  margin: 15px 0 0;
  font-size: 12px;
  color: #717171;
  text-align: left;
}
.ntc-not_show_again input {
  margin: 0 7px 0 0;
  vertical-align: -10%;
}