@import url("https://fonts.googleapis.com/css2?family=Cabin:wght@700&family=Roboto:wght@700&display=swap");
.croco-upgrade-container {
  padding: 8px 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: -0.002em;
  font-weight: 700;
  color: #ffffff;
  background-color: #0F172A;
}

.croco-upgrade-popup {
  position: fixed;
  z-index: 2;
  right: 0;
  bottom: 20px;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
  padding: 20px 32px;
  font-family: "Cabin", sans-serif;
  font-size: 20px;
  line-height: 28px;
  font-weight: 700;
  color: #ffffff;
  text-align: center;
  background-color: #0F172A;
  border-radius: 20px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  -webkit-transition: opacity 0.4s ease, visibility 0.4s ease;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}
.croco-upgrade-popup .btn {
  padding: 10px 16px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-family: inherit;
  font-size: 16px;
  line-height: 20px;
  font-weight: 700;
  letter-spacing: 0;
  border-radius: 100px;
  text-decoration: none;
  white-space: nowrap;
  color: #ffffff;
  text-transform: none;
  background-color: #0DC167;
  background-clip: border-box;
  -webkit-transition: 0.25s ease;
  transition: 0.25s ease;
  cursor: pointer;
}
.croco-upgrade-popup .btn:hover {
  color: #0F172A;
  background-color: #ffffff;
}
.croco-upgrade-popup.show {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
@media (min-width: 576px) {
  .croco-upgrade-popup {
    right: 40px;
    width: auto;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 26px;
    text-align: left;
  }
}

.croco-upgrade-container .btn-link,
.croco-upgrade-popup .btn-link {
  position: relative;
  color: #6C99F9;
}
.croco-upgrade-container .btn-link::after,
.croco-upgrade-popup .btn-link::after {
  content: "";
  position: absolute;
  bottom: 4px;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #6C99F9;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
.croco-upgrade-container .btn-link:hover::after,
.croco-upgrade-popup .btn-link:hover::after {
  opacity: 0;
}

.croco-upgrade-popup .btn-link::after {
  bottom: 2px;
}