/* Utility Classes */

.bg-auralis {
  background-image: url("../images/auralis.png");
  background-size: cover;
  background-repeat: no-repeat;
}

.center-image {
  display: block;
  margin-left: auto;
  margin-right: auto;
}


.text-left {
  text-align: left;
  justify-self: start;
}

.text-center {
  text-align: center;
  justify-self: center;
}


.tooltip {
  position: relative;
  display: inline-block;
}

.tooltip .tooltiptext {
  visibility: hidden;
  width: 400px;
  background-color: #fff;
  color: #000;
  text-align: center;
  border-radius: 6px;
  padding: 5px 0;
  position: absolute;
  z-index: 1;
  top: -8px;
  left: 50%;
  transform: translate(-50%, -100%);
  margin-bottom: 5px;
}

.tooltip:hover .tooltiptext {
  visibility: visible;
}

.outlined-white
{
  background-color: transparent;
  border: 2px solid #ffffff;
  color: #ffffff
}

.outlined-white:hover
{
  background-color: #282828;
  border: 2px solid #282828;
}

.info-indicator
{
  background-color: #FFFFFF;
  color: #000000;
  border-radius: 50%;
  padding: 0px;
  font-size:14px;
  font-weight:normal;
}

.info-indicator:hover
{
  background-color: transparent;
  border: 2px solid #FFFFFF;
  color: #FFFFFF
}

/* Tooltip should still trigger normally */
.feature-card.no-hover .tooltip:hover .tooltiptext,
.card-shell.no-hover .tooltip:hover .tooltiptext {
  visibility: visible;
}