.blog-signup-popup {
  width: 100%;
  padding: 24px;
  padding-top: 16px;
  background-color: #D9C2FF;
  border-radius: 0;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  height: fit-content;
  opacity: 0;
  transform: translate3d(-20px, 0px, 0px);
  transition: 0.5s cubic-bezier(0.37, 0.01, 0, 0.98);
}

.blog-signup-popup.visible-popup {
  opacity: 1;
  transform: none;
  transition: 0.5s cubic-bezier(0.37, 0.01, 0, 0.98);
}

.blog-signup-popup.no-toc {
  bottom: 0;
}

.blog-signup-popup .header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}

.blog-signup-popup .close {
  padding: 0;
}

.blog-signup-popup .close::after{
  display: inline-block;
  content: "\00d7";
  font-size: 24px;
  transition: color 0.15s ease-in-out;
  -webkit-transition: color 0.15s ease-in-out;
  -moz-transition: color 0.15s ease-in-out;
  -ms-transition: color 0.15s ease-in-out;
  -o-transition: color 0.15s ease-in-out;
}

.blog-signup-popup .close:hover::after{
  color: rgb(32, 21, 21);
}

.blog-signup-popup p {
  font-size: 16px;
  margin-bottom: 24px;
  display: none;
}

.blog-signup-popup a {
  border-radius: 3px;
  color: #ffffff;
  background-color: #050607; /* gray-1100 */
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -ms-border-radius: 3px;
  -o-border-radius: 3px;
  padding: 0.25em 1.8em;
  font-weight: 600;
  line-height: 1.5;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out,      -webkit-box-shadow 0.15s ease-in-out;
  -webkit-transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out,      -webkit-box-shadow 0.15s ease-in-out;
  -moz-transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out,      -webkit-box-shadow 0.15s ease-in-out;
  -ms-transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out,      -webkit-box-shadow 0.15s ease-in-out;
  -o-transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out,      -webkit-box-shadow 0.15s ease-in-out;
}

.blog-signup-popup a:hover {
  /* background-color: #050607; gray-1100 */
  box-shadow: 0 1px 1px 0 rgba(57, 60, 68, .1),0 10px 20px 0 rgba(57, 60, 68, .2);
  -webkit-box-shadow: 0 1px 1px 0 rgba(57, 60, 68, 0.1),0 10px 20px 0 rgba(57, 60, 68, .2);
}

@media screen and (min-width: 30em) { /* 480px */
  .blog-signup-popup p {
    display: block;
  }
}

@media screen and (min-width: 61.5625em) {
  .blog-signup-popup {
    width: 300px;
    border-radius: 3px;
    bottom: 20px;
    left: auto;
    right: auto;
  }

  .blog-signup-popup.no-toc {
    bottom: calc(50% - 104px);
    right: 20px;
  }
}