.buy-now-cta {
	position: fixed;
	left: 30px;
	bottom: 70px;
	transform-origin: center;
	text-decoration: none;
	font-family: 'Muli', 'Helvetica Neue', Arial, sans-serif;
	font-weight: normal;
	font-size: 12px;
	text-transform: uppercase;
	color: #ffffff;
	background: rgba(22, 22, 22, 0.66);
  border: 1px solid rgba(255, 255, 255, 0.35);
  backdrop-filter: blur(3px);
	-webkit-backdrop-filter: blur(8px);
	padding: 14px 36px;
	border-radius: 999px;
	box-shadow: 0 20px 45px rgba(15, 23, 42, 0.25);
	z-index: 2000;
	transition: transform 0.35s ease, box-shadow 0.35s ease, color 0.25s ease, background 0.25s ease;
	letter-spacing: 0.22em;
}

.buy-now-cta::before {
	content: "";
	position: absolute;
	top: -12px;
	bottom: -12px;
	left: -60px;
	right: -12px;
}

.buy-now-cta:visited,
.buy-now-cta:focus,
.buy-now-cta:active {
	color: transparent;
	outline: none;
}

.buy-now-cta:hover,
.buy-now-cta:focus-visible {
	box-shadow: 0 25px 55px rgba(15, 23, 42, 0.35);
	color: #ffffff;
	background: rgba(22, 22, 22, 0.91);
  border: 1px solid rgba(255, 255, 255, 0.35);
  backdrop-filter: blur(3px);
  letter-spacing: 0.22em;
}

@media screen and (max-width: 991px) {
  .buy-now-cta {
    display: inline-flex;
    position: fixed;
    left: 50%;
    bottom: 24px;
    top: auto;
    transform: translateX(-50%);
    transform-origin: center;
    padding: 14px 28px;
	color: #ffffff;
	width: 80%;
    justify-content: center;
  }

  .buy-now-cta::before {
	content: none;
  }

  .buy-now-cta:visited,
  .buy-now-cta:focus,
  .buy-now-cta:active {
	color: #ffffff;
  }

  .buy-now-cta:hover {
	transform: translateX(-50%);
  }
}
