.feature-text-container {
  position: relative;
  display: inline-block !important;
}
@media (min-width: 992px) {
  .feature-text-container .feature-text.modifier--show-underline {
    display: inline;
    transition: all 0.3s;
    cursor: pointer;
    position: relative;
  }
  .feature-text-container .feature-text.modifier--show-underline .v-tooltip {
    bottom: 40px;
  }
}
@media (min-width: 1200px) {
  .feature-text-container .feature-text.modifier--show-underline {
    margin-bottom: 5px;
  }
  .feature-text-container .feature-text.modifier--show-underline:not(.modifier--has-popup) {
    border-bottom: 1px dashed #58595b;
  }
  .feature-text-container .feature-text.modifier--show-underline:not(.modifier--has-popup):hover {
    border-bottom-style: solid;
  }
  .feature-text-container .feature-text.modifier--show-underline.modifier--has-popup .tooltip-element__label {
    border-bottom: 1px dashed #58595b;
    display: inline;
    line-height: 1;
  }
  .feature-text-container .feature-text.modifier--show-underline.modifier--has-popup:hover .tooltip-element__label {
    border-bottom-style: solid;
  }
}
.feature-text-container .feature-text--bold {
  font-family: 'Montserrat', sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  letter-spacing: normal;
  font-weight: 800;
}
.feature-text-container .feature-popup {
  position: absolute;
  left: 50%;
  top: -10px;
  opacity: 0;
  background-color: #ffffff;
  padding: 10px;
  z-index: 2;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  transition: all 0.3s;
  width: 250px;
  transform: translate(-50%, -100%);
}
.feature-text-container .feature-popup::before {
  content: '';
  position: absolute;
  z-index: 1;
  background-color: #ffffff;
  width: 10px;
  height: 10px;
  display: block;
  transform: rotate(45deg) translate(-50%, 100%);
  transform-origin: center;
  left: 50%;
  bottom: 0;
  box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}
