.blog-floating-cta-container {
  position: fixed;
  max-width: 250px;
  right: 25px;
  top: 20%;
  padding: 0;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-items:center;
}
.blog-floating-cta-container img {
  object-fit: contain;
}
.mobile {
  display: none;
}
.desktop: {
  display: block;
}
.float-cta-close-button {
  cursor: pointer;
  position: absolute;
  top: -25px;
  right: 0px;
  background: #D9D9D9 0% 0% no-repeat padding-box;
  opacity: 1;
  width: 25px;
  height: 25px;
  border-radius: 50%;
}

.float-cta-close-button span {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-weight: bold;
}

@media only screen and (max-width: 998px) {
  .blog-floating-cta-container {
    max-width: 100%;
    min-height: 80px;
    max-height: 120px;
    bottom: 0px;
    left: 0;
    right: 0;
    top: auto;
  }
  .desktop {
    display: none;
  }
  .mobile {
    display: block;
  }
  .blog-floating-cta-container img {
    max-height: 120px;
    width: auto;
  }
}

@media only screen and (max-width: 360px) {
  .blog-floating-cta-container {
    padding: 0;
  }
}
