:root {
    --popOverTime: 5s;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.mavenoid-speech-bubble {
  position: fixed;
  bottom: 110px;
  right: 10px;
  background: #ffffff;
  border-radius: 0.4em;
  z-index: 1000;
  width: auto;
  min-width: 222px;
  height: 76px;
  border-radius: 20px;
  filter: drop-shadow(0px 4px 40px rgba(0, 0, 0, 0.12));
  animation: fadeIn 0.3s cubic-bezier(0.33, 1, 0.68, 1) var(--popOverTime) forwards;
  opacity: 0;
  cursor: pointer;
}

@media screen and (max-width: 420px) {
  .mavenoid-speech-bubble {
    right: 9px;
    bottom: 100px;
  }
}

.mavenoid-speech-bubble.closing {
  animation: fadeIn 0.3s cubic-bezier(0.33, 0, 0.68, 0) reverse;
}

.mavenoid-speech-bubble > * {
  animation: fadeIn 0.3s cubic-bezier(0.33, 0, 0.68, 0) reverse;
}

.mavenoid-speech-bubble-text {
  margin-left: 28px;
  margin-right: 46px;
  line-height: 44px;

  color: #3d3d3c;
  font-family: "HQ-Mavenoid", "sans-serif";
  font-style: normal;
  font-size: 20px;
  font-weight: 600;
  cursor: pointer;
}

@media screen and (max-width: 420px) {
  .mavenoid-speech-bubble-text {
    font-size: 16px;
  }
}

.mavenoid-speech-bubble:after {
  content: "";
  position: absolute;
  right: 25px;
  top: 76px;
  width: 0;
  height: 0;
  border-left: 13.5px solid transparent;
  border-right: 13.5px solid transparent;
  border-top: 12px solid #ffffff;
}

@media screen and (max-width: 420px) {
  .mavenoid-speech-bubble:after {
    right: 25px;
    bottom: 94px;
  }
}

.js-mavenoid-close-speech-bubble {
  position: relative;
  width: 16px;
  height: 16px;
  margin-left: auto;
  margin-right: 0;
  top: 16px;
  right: 15px;
  cursor: pointer;
}
.js-mavenoid-close-speech-bubble:after {
  content: "";
  height: 20px;
  border-left: 1px solid #3d3d3c;
  position: absolute;
  transform: rotate(45deg);
  left: 8px;
}

.js-mavenoid-close-speech-bubble:before {
  content: "";
  height: 20px;
  border-left: 1.2px solid #3d3d3c;
  position: absolute;
  transform: rotate(-45deg);
  left: 8px;
}
