/* Color Code and vars*/
:root {
  /* Slate */
  --crazy-light-slate: #f9fbfb;
  --extra-light-slate: #dff4fa;
  --light-slate: #c5dbe1;
  --slate: #96b2ba;
  /* Blue */
  --super-light-blue: #f1fbfc;
  --extra-light-blue: #b1e9fd;
  --light-blue: #62dbff;
  --blue: #00c5ff;
  --extra-dark-blue: #2c6678;
  /* Green */
  --super-light-green: #d3fae0;
  --extra-light-green: #b5f4cb;
  --light-green: #6af6a3;
  --green: #00e85f;
  --extra-dark-green: #02a344;
  /* Orange */
  --super-light-orange: #fde5d1;
  --extra-light-orange: #ffd4b4;
  --light-orange: #ffb371;
  --orange: #ff9f4a;
  --extra-dark-orange: #d86804;
  /* Red */
  --super-light-red: #fbdbda;
  --extra-light-red: #fdb5b3;
  --light-red: #ff9090;
  --red: #fe7474;
  --extra-dark-red: #b82222;
  /* Misc */
  --toggle-transition-time: 0.5s;
  --av-medium: "AvenirNextProMedium";
  --av-demi: "AvenirNextProDemi";
  --av-bold: "AvenirNextProBold";
}
.weight-600 {
  font-weight: 600;
}
.weight-700 {
  font-weight: 700;
}
.display-none {
  display: none;
}
.display-block {
  display: block;
}
.display-block-important {
  display: block !important;
}
.visible {
  visibility: visible;
}
.invisible {
  visibility: hidden;
}
.av-medium {
  font-family: var(--av-medium);
}
.av-demi {
  font-family: var(--av-demi);
}
input::placeholder {
  color: var(--light-slate);
  opacity: 1;
}
.input-warning {
  border-color: var(--red) !important;
}

.tooltip-container {
  width: fit-content;
  margin: 0;
}
.tooltip {
  display: none;
  transition: visibility 0s linear 0.2s, opacity 0.2s linear;
  position: absolute;
  padding: 0.938rem;
  border-radius: 0.313rem !important;
  cursor: default;
  font-family: var(--av-medium);
  text-align: left;
  line-height: 140%;
  font-size: 0.875rem;
  -moz-border-radius: 0.188rem;
  -webkit-border-radius: 0.188rem;
  border-radius: 0.188rem;
  box-shadow: 0rem 0rem 1.25rem 1rem rgb(197 219 225 / 20%);
  background: white repeat-x;
  z-index: 9999;
}
.tooltip .tooltip-triangle {
  position: absolute;
  width: 0rem;
  height: 0rem;
  border-left: 0.938rem solid transparent;
  border-right: 0.938rem solid transparent;
  border-top: 1.125rem solid white;
  margin-top: 0.3rem;
  padding-bottom: 1rem;
}
.tooltip a {
  color: inherit;
}
.tooltip p {
  margin: 0;
}
.blue-button {
  border: 0.125rem solid var(--blue);
  border-radius: 6.281rem;
  font-family: "AvenirNextProDemi";
  padding: 0.625rem 1.25rem;
  color: white;
  background: var(--blue);
  font-size: 1.1rem;
}
.blue-button:disabled {
  border: 0.125rem solid var(--light-slate) !important;
  background: var(--light-slate) !important;
  cursor: default;
}
.content {
  background-color: #F3FDFD;
}
.company_image img {
  background-color: white;
  border-radius: 1.5rem;
}
.question--select-competitors-button {
  padding: 1.25rem 1.75rem;
}
.gauge__cover {
  z-index: 1;
  background-color: inherit;
  color: var(--extra-dark-blue);
  position: absolute;
  font-size: 6rem;
  bottom: 0;
  font-family: "AvenirNextProMedium";
  transform: translateX(-50%);
  box-sizing: border-box;
  display: flex;
  line-height: 1;
  justify-content: center;
  border-radius: 50%;
  left: 50%;
  padding-bottom: 0%;
  align-items: flex-end;
  bottom: -1.25rem;
}

.big_number {
  margin-bottom: 1.8rem;
  font-family: var(--av-demi);
}
.company_info h3 {
  font-family: var(--av-bold);
}
.tab-circle.right div {
  display:inline-block;
}
.growth_stage h3 {
  font-variant: all-small-caps;
  font-family: var(--av-bold);
  font-weight: 700 !important;
}
.growth_stage .growth_stage_description {
  width: 80%;
  font-size: 0.813rem;
  font-weight: 300;
  line-height: 1.125rem;
  margin-top: -0.625rem;
  font-family: var(--av-medium);
}
.growth_stage .growth_stage_description.stage_determined {
  width: 56%;
}
.score_header {
  font-family: var(--av-bold);
  font-weight: 700;
}
.tab-icon--active,
.tab-icon--inactive {
  display: none;
}
.star-1 {
  animation: twinkle 3s linear infinite;
}
.star-2 {
  animation: twinkle 2s linear infinite;
}
.star-3 {
  animation: twinkle 1s linear infinite;
}
/* Animations */
@keyframes twinkle {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
