* {
  box-sizing: border-box;
}

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

@font-face {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 300;
  src: url("/assets/fonts/roboto/roboto-eot/Roboto-Light.eot");
  src: local("Roboto Light"), local("Roboto-Light"), url("/assets/fonts/roboto/roboto-eot/Roboto-Light.eot?#iefix") format("embedded-opentype"), url("/assets/fonts/roboto/roboto-woff2/Roboto-Light.woff2") format("woff2"), url("/assets/fonts/roboto/roboto-woff/Roboto-Light.woff") format("woff"), url("/assets/fonts/roboto/roboto-ttf/Roboto-Light.ttf") format("truetype");
}
@font-face {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 400;
  src: url("/assets/fonts/roboto/roboto-eot/Roboto-Regular.eot");
  src: local("Roboto"), local("Roboto-Regular"), url("/assets/fonts/roboto/roboto-eot/Roboto-Regular.eot?#iefix") format("embedded-opentype"), url("/assets/fonts/roboto/roboto-woff2/Roboto-Regular.woff2") format("woff2"), url("/assets/fonts/roboto/roboto-woff/Roboto-Regular.woff") format("woff"), url("/assets/fonts/roboto/roboto-ttf/Roboto-Regular.ttf") format("truetype");
}
@font-face {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 500;
  src: url("/assets/fonts/roboto/roboto-eot/Roboto-Medium.eot");
  src: local("Roboto Medium"), local("Roboto-Medium"), url("/assets/fonts/roboto/roboto-eot/Roboto-Medium.eot?#iefix") format("embedded-opentype"), url("/assets/fonts/roboto/roboto-woff2/Roboto-Medium.woff2") format("woff2"), url("/assets/fonts/roboto/roboto-woff/Roboto-Medium.woff") format("woff"), url("/assets/fonts/roboto/roboto-ttf/Roboto-Medium.ttf") format("truetype");
}
@font-face {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 700;
  src: url("/assets/fonts/roboto/roboto-eot/Roboto-Bold.eot");
  src: local("Roboto Bold"), local("Roboto-Bold"), url("/assets/fonts/roboto/roboto-eot/Roboto-Bold.eot?#iefix") format("embedded-opentype"), url("/assets/fonts/roboto/roboto-woff2/Roboto-Bold.woff2") format("woff2"), url("/assets/fonts/roboto/roboto-woff/Roboto-Bold.woff") format("woff"), url("/assets/fonts/roboto/roboto-ttf/Roboto-Bold.ttf") format("truetype");
}
body {
  font-family: "Roboto", Arial, sans-serif;
}

h1, h2, h3, h4, h5, h6 {
  -moz-font-feature-settings: "lnum";
  -webkit-font-feature-settings: "lnum";
  font-feature-settings: "lnum";
}

a, a:hover, a:link, a:visited, a:active {
  text-decoration: none;
}

p {
  margin-top: 24px;
  line-height: 140%;
  margin-top: 1em;
  margin-bottom: 1em;
}

#wrapper {
  max-width: 100%;
  overflow-x: hidden;
}
@media screen and (max-width: 600px) {
  #wrapper {
    padding-bottom: 76px;
  }
}

#community-bets {
  padding: 18px 0px 32px;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 24px;
}

.community-bets-item {
  width: calc(50% - 12px);
  padding: 16px;
  border-radius: 8px;
  background-color: #fff;
  border: 2px solid #fff;

  display: flex;
  flex-direction: row;
  flex-wrap: wrap;

  cursor: pointer;
}
  .community-bets-item:hover {
    background-color: #D5E8FB;
    border-color: #D5E8FB;
  }

  .community-bets-item.selected {
    border-color: #115CAD;
  }

  .community-bets-item:hover .community-bets-item-cta-button {
    background-color: #1471D4;
    border-color: #1471D4;
    color: #fff;
  }
  .community-bets-item-icon {
    width: 100px;
    height: 100px;
    margin-right: 12px;

    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }
    .community-bets-item-icon-image {
      width: 100%;
    }

  .community-bets-item-content {
    width: calc(100% - 112px);
  }
    .community-bets-item-content-name {
      font-weight: 500;
      font-style: Medium;
      font-size: 14px;
      line-height: 16px;
      letter-spacing: 0%;
      margin-bottom: 12px;
    }
    .community-bets-item-content-text {
      font-weight: 500;
      font-style: Medium;
      font-size: 12px;
      line-height: 14px;
      letter-spacing: 0%;
      color: #1A2C3E;
      display: flex;
    }
    .community-bets-item-content-text-left, .community-bets-item-content-text-right {
      width: 50%;
      margin-bottom: 12px;
    }

    .community-bets-item-content-text-headline {
      font-weight: 400;
      font-style: Regular;
      font-size: 12px;
      line-height: 14px;
      letter-spacing: 0%;
      color: #66727E;
    }
    .community-bets-item-content-text-tickets {

    }
    
    .community-bets-item-content-data {

    }
    .community-bets-item-content-data-bar {
      background-color: #F5F5F5;
      border-top-right-radius: 8px;
      border-bottom-right-radius: 8px;
      position: relative;
      height: 16px;
      width: 100%;
      margin-bottom: 4px;
    }
    .community-bets-item-content-data-bar-fullness {
      height: 16px;
      border-top-right-radius: 8px;
      border-bottom-right-radius: 8px;
      position: absolute;
      top: 0px;
      left: 0px;


      display: flex;
      align-items: center;
      justify-content: flex-end;

    }
    .community-bets-item-content-data-bar-value {
      position: relative;
      z-index: 1;

      font-weight: 400;
      font-style: Regular;
      font-size: 12px;
      line-height: 14px;
      letter-spacing: 0%;
      text-align: right;

      padding-right: 8px;
      color: #fff;
    }

    .bar-value-low {
      color: #000;
      position: absolute;
      left: calc(100% + 8px);
    }

    .community-bets-item-content-data-info {
      font-weight: 400;
      font-style: Regular;
      font-size: 12px;
      line-height: 14px;
      letter-spacing: 0%;
      color: #66727E;

    }
  .community-bets-item-cta {
    width: 100%;
  }
  .community-bets-item-cta-info {
    margin-top: 12px;
    margin-bottom: 4px;
    color: #1A2C3E;
    font-weight: 400;
    font-style: Regular;
    font-size: 12px;
    line-height: 14px;
    letter-spacing: 0%;

  }
  .community-bets-item-cta-button {
    width: 100%;
    background-color: #F5F5F5;
    border: 1px solid #D6D8DA;
    border-radius: 4px;
    text-align: center;

    font-weight: 500;
    font-style: Medium;
    font-size: 14px;
    line-height: 16px;
    letter-spacing: 0%;
    text-align: center;
    color: #115CAD;
    padding: 5.5px 0px;

  }


  /* Chrome, Safari, Edge, Opera */
input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
input[type=number] {
  -moz-appearance: textfield;
}


  .bet-calculator {
    width: 500px;
    padding: 16px;
    background-color: #fff;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
    box-shadow: 0px 11px 15px 0px #00000033;
    box-shadow: 0px 9px 46px 0px #0000001F;
    box-shadow: 0px 24px 38px 0px #00000024;
    z-index: 3;

    
    position: fixed;
    left: 50%;
    transform: translateX(-50%) translateY(100%);
    bottom: 0px;
    transition: transform 0.5s ease-in-out;

  }
  .bet-calculator.show {
    transform: translateX(-50%) translateY(0);
  }
  .bet-calculator-input-wrapper {
    position: relative;
    margin-top: 12px;
  }
    .bet-calculator-input-label {
      color: #1A2C3E;
      background-color: #fff;
      padding: 0 4px;
      font-family: Roboto;
      font-weight: 400;
      font-style: Regular;
      font-size: 12px;
      line-height: 14px;
      letter-spacing: 0%;

      position: absolute;
      left: 12px;
      top: -7px;
    }
    .bet-calculator-input {
      border: 1px solid #949CA5;
      border-radius: 4px;
      width: 100%;
      height: 40px;
      padding: 0 14px;

      font-family: Roboto;
      font-weight: 400;
      font-style: Regular;
      font-size: 16px;
      line-height: 19px;
      letter-spacing: 0%;
      vertical-align: middle;
      color: #1A2C3E;

    }
    .bet-calculator-input-currency {
      position: absolute;
      right: 10px;
      top: 50%;
      color: #66727E;
      transform: translateY(-50%);
      pointer-events: none;
      font-family: Roboto;
      font-weight: 400;
      font-size: 16px;
      line-height: 100%;
      letter-spacing: 0px;
      text-align: right;
    }

  .bet-calculator-info{
    padding: 8px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #D6D8DA;
  }
    .bet-calculator-label {
      font-family: Roboto;
      font-weight: 500;
      font-style: Medium;
      font-size: 14px;
      line-height: 16px;
      letter-spacing: 0%;
      vertical-align: middle;
      color: #1A2C3E;
    }
    .bet-calculator-output {
      font-family: Roboto;
      font-weight: 500;
      font-style: Medium;
      font-size: 20px;
      line-height: 23px;
      letter-spacing: 0%;
      text-align: right;
      vertical-align: middle;
      color: #1A2C3E;
    }

    .btn-calculator {
      width: 100%;
      margin-top: 16px;
    }

    .main-content {
  background-color: #eff3f5;
}

.main-content h2 {
  font-family: Roboto;
  font-weight: 700;
  font-style: Bold;
  font-size: 32px;
  line-height: 45px;
  letter-spacing: 0%;
  text-align: center;
  padding-bottom: 12px;
}

h1 {
  font-size: 44px;
  font-weight: 700;
}

header {
  background-color: #167be8;
}
header img {
  height: 36px;
  margin: 12px 0px;
}

main {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  color: #fff;
  position: relative;
  z-index: 1;
}
main .container {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  flex-wrap: nowrap;
  height: 100%;
}
main .hero {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}
main .hero-content {
  padding: 100px 0px 172px;
  width: 45%;
}
main .hero-content-text {
  font-size: 20px;
  margin-bottom: 46px;
}
@media screen and (max-width: 800px) {
  main .hero-content {
    width: 100%;
    padding: 32px 0px 150px;
  }
}
@media screen and (max-width: 600px) {
  main .hero-content {
    padding: 32px 0px 50px;
  }
  main .hero-content .btn {
    display: none;
  }
}
main .hero-image {
  width: 55%;
  position: relative;
}
main .hero-image-content {
  left: 20px;
  height: 100%;
  width: 100%;
  position: absolute;
  background-size: cover;
  background-position: top left;
}
@media screen and (max-width: 800px) {
  main .hero-image {
    display: none;
  }
}

.points {
  background-color: #eff3f5;
  margin-top: -85px;
  padding-bottom: 64px;
}
@media screen and (max-width: 600px) {
  .points {
    padding-bottom: 40px;
  }
}
@media screen and (max-width: 600px) {
  .points .container {
    padding: 0;
  }
}
.points-card {
  background-color: #ffffff;
  color: #66727e;
  border: 1px solid #d6d8da;
  border-radius: 8px;
  text-align: center;
  filter: drop-shadow(0px 11px 15px rgba(0, 0, 0, 0.2)) drop-shadow(0px 9px 46px rgba(0, 0, 0, 0.12)) drop-shadow(0px 24px 38px rgba(0, 0, 0, 0.14));
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: row;
}
@media screen and (max-width: 600px) {
  .points-card {
    flex-direction: column;
    padding: 24px 16px;
    filter: none;
    border: 0;
  }
}
.points-item {
  width: 33%;
  padding: 32px 32px;
  border-right: 1px solid #d6d8da;
  color: #66727e;
  flex-grow: 2;
}
.points-item:last-child {
  border-right: none;
}
@media screen and (max-width: 600px) {
  .points-item {
    width: 100%;
    padding: 0px;
    border-right: 0;
    display: flex;
  }
}
.points-item-image {
  width: 48px;
  height: 48px;
  margin-bottom: 12px;
}
@media screen and (max-width: 600px) {
  .points-item-image {
    width: 40px;
    height: 40px;
    margin-bottom: 0px;
    margin-right: 12px;
  }
}
@media screen and (max-width: 600px) {
  .points-item-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
  }
}
.points-item-content-headline {
  font-size: 16px;
  font-weight: 500;
  color: #1a2c3e;
  margin-bottom: 12px;
}
@media screen and (max-width: 600px) {
  .points-item-content-headline {
    margin-bottom: 8px;
  }
}
.points-item-content-text {
  font-size: 14px;
}
@media screen and (max-width: 600px) {
  .points-item-content-text {
    margin-top: 0;
  }
}

.services {
  background-color: #eff3f5;
  padding-bottom: 64px;
}
.services h2 {
  color: #000;
  font-size: 32px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 32px;
}
.services-items {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
.services-item {
  width: 49%;
  margin: 1%;
  overflow: hidden;
  border-radius: 8px;
}
.services-item:nth-child(odd) {
  margin-left: 0;
}
.services-item:nth-child(even) {
  margin-right: 0;
}
@media screen and (max-width: 860px) {
  .services-item {
    width: 100%;
    margin: 6px 0px;
  }
}
.services-item-check {
  background-image: url(/assets/images/card-background.svg);
  background-position: right;
  background-repeat: no-repeat;
  background-size: contain;
  height: 100%;
}
.services-item-container {
  padding: 32px;
  display: flex;
}
@media screen and (max-width: 860px) {
  .services-item-container {
    padding: 20px;
  }
}
.services-item-container-content {
  width: 70%;
}
@media screen and (max-width: 1000px) {
  .services-item-container-content {
    width: 100%;
  }
}
.services-item-container-content h3 {
  font-size: 24px;
  font-weight: 500;
  color: #fff;
  margin-bottom: 24px;
}
.services-item-container-content p {
  font-size: 16px;
  font-weight: 400;
  color: #fff;
}
.services-item-container-image {
  padding-left: 10px;
  width: 30%;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 1000px) {
  .services-item-container-image {
    display: none;
  }
}
.services-item-container-image img {
  max-width: 100%;
}
.services-cta {
  padding: 22px 16px;
  margin: 1% 0;
  background-color: #fff;
  border-radius: 8px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width: 600px) {
  .services-cta {
    display: none;
  }
}
.services-cta-text {
  font-size: 16px;
  font-weight: 400;
  line-height: 18.75px;
  text-align: left;
  padding-right: 10px;
}
.services-mobile {
  max-width: 100%;
  width: 100%;
  margin: 6px 0px;
  overflow: hidden;
  border-radius: 8px;
  display: none;
}
@media screen and (max-width: 600px) {
  .services-mobile {
    display: flex;
    order: -1;
  }
}

a.services-item {
  transition: opacity 0.4s;
}
a.services-item:hover {
  opacity: 0.87;
}

.fifty {
  padding: 32px 0;
}
@media screen and (max-width: 600px) {
  .fifty {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}
.fifty-item {
  padding: 32px 0;
  display: flex;
  flex-direction: row;
  align-items: center;
  flex-wrap: wrap;
}
@media screen and (max-width: 600px) {
  .fifty-item {
    max-width: 500px;
  }
}
.fifty-item:nth-child(even) img {
  order: 2;
}
.fifty-item-image {
  width: 50%;
  max-width: 100%;
  padding: 0px 68px;
}
@media screen and (max-width: 1024px) {
  .fifty-item-image {
    padding: 0px 32px;
  }
}
@media screen and (max-width: 600px) {
  .fifty-item-image {
    width: 100%;
    order: 1;
    padding: 0px;
  }
}
.fifty-item-content {
  width: 50%;
  padding-left: 32px;
}
@media screen and (max-width: 1024px) {
  .fifty-item-content {
    padding-left: 19px;
  }
}
@media screen and (max-width: 600px) {
  .fifty-item-content {
    width: 100%;
    order: 2;
    padding-left: 0px;
  }
}
.fifty-item-content h2 {
  color: #000;
  font-size: 24px;
  font-weight: 700;
  line-height: 34px;
  text-align: left;
  margin-bottom: 40px;
}
@media screen and (max-width: 800px) {
  .fifty-item-content h2 {
    margin-bottom: 16px;
  }
}
.fifty-item-content-text {
  max-width: 400px;
  color: #66727E;
  font-size: 16px;
  font-weight: 400;
  line-height: 22px;
  text-align: left;
  margin-bottom: 40px;
}
@media screen and (max-width: 600px) {
  .fifty-item-content-text {
    max-width: 100%;
  }
}

.container {
  max-width: 1280px;
  padding: 0px 20px;
  margin: auto;
}

.btn, a.btn {
  padding: 14px 22px;
  text-transform: uppercase;
  font-size: 16px;
  line-height: 18px;
  font-weight: 500;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border-radius: 4px;
  border: none;
  cursor: pointer;
  box-shadow: rgba(0, 0, 0, 0.14) 0px 2px 4px, rgba(0, 0, 0, 0.12) 0px 3px 4px, rgba(0, 0, 0, 0.2) 0px 1px 5px;
  transition: background-color 0.3s ease 0s;
}
.btn-primary, a.btn-primary {
  background-color: #ff8e13;
  color: #fff;
}
.btn-primary:hover, a.btn-primary:hover {
  background: #ffa13e;
}

.footer-app {
  background-color: #4f5f6d;
  color: rgba(255, 255, 255, 0.7);
  padding: 40px 0;
  position: relative;
  overflow: hidden;
}
@media screen and (max-width: 600px) {
  .footer-app {
    color: #fff;
  }
}
.footer-app .container {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  justify-content: space-between;
}
.footer-app-content {
  width: 50%;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 860px) {
  .footer-app-content {
    width: 60%;
  }
}
@media screen and (max-width: 600px) {
  .footer-app-content {
    width: 100%;
  }
}
.footer-app-content h2 {
  font-family: Roboto;
  font-size: 32px;
  font-weight: 700;
  line-height: 45px;
  color: #fff;
}
.footer-app-content a {
  color: #99d5ff;
  transition: color 0.25s;
}
.footer-app-content a:hover {
  color: #ff8e13;
}
.footer-app-content-download {
  margin-top: 32px;
  display: flex;
  align-items: center;
}
.footer-app-content-download-qr {
  margin-right: 32px;
}
@media screen and (max-width: 600px) {
  .footer-app-content-download-qr {
    display: none;
  }
}
.footer-app-content-download-buttons {
  display: flex;
  flex-direction: column;
}
@media screen and (max-width: 600px) {
  .footer-app-content-download-buttons {
    flex-direction: row;
  }
}
.footer-app-content-download-buttons svg {
  margin: 8px 0px;
}
@media screen and (max-width: 600px) {
  .footer-app-content-download-buttons svg {
    margin: 0px 16px 0px 0px;
  }
}
.footer-app-image {
  width: 50%;
  padding-left: 36px;
  position: relative;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 860px) {
  .footer-app-image {
    width: 40%;
    align-items: flex-start;
  }
}
@media screen and (max-width: 600px) {
  .footer-app-image {
    width: 100%;
    height: 100%;
    opacity: 0.08;
    position: absolute;
    left: 30%;
    top: -10px;
  }
}
.footer-app-image img, .footer-app-image source {
  max-width: 100%;
}
@media screen and (max-width: 860px) {
  .footer-app-image img, .footer-app-image source {
    position: absolute;
    max-width: none;
    max-height: 100%;
  }
}

footer {
  padding: 25px 0px;
  background-color: #394b5b;
  color: rgba(255, 255, 255, 0.7);
  font-size: 12px;
  font-weight: 400;
  line-height: 14.06px;
  text-align: left;
}
footer .container {
  display: flex;
  align-items: center;
}
footer .zh {
  width: 24px;
  fill: rgba(255, 255, 255, 0.7);
  margin-right: 16px;
  flex-shrink: 0;
}
footer a, footer .cookieSettings {
  color: #99d5ff;
  transition: color 0.25s;
  cursor: pointer;
}
footer a:hover, footer .cookieSettings:hover {
  color: #ff8e13;
}

.arrow {
  display: none;
}
.arrow a {
  padding: 10px;
}
@media screen and (max-width: 600px) {
  .arrow {
    padding: 6px 0px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .arrow-bounce {
    width: 24px;
    height: 24px;
    fill: #fff;
    animation: anim-bounce 2s infinite;
  }
}

@keyframes anim-bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-30px);
  }
  60% {
    transform: translateY(-15px);
  }
}
.cta-sticky {
  display: none;
}
@media screen and (max-width: 600px) {
  .cta-sticky {
    width: 100%;
    height: 76px;
    background-color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    z-index: 10;
    bottom: 0px;
    left: 0px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
  }
  .cta-sticky .btn {
    width: 90%;
  }
}

@media screen and (max-width: 600px) {
  #tscl-dialog {
    bottom: 76px !important;
  }
}

.services-item-blue {
  background: linear-gradient(90deg, #00a2fd 0%, #0265c5 100%);
}
.services-item-blue-light {
  background: linear-gradient(90deg, #3596f4 0%, #06bcf5 100%);
}
.services-item-green {
  background: linear-gradient(90deg, #00B0BB 0%, #314795 100%);
}
.services-item-orange {
  background: linear-gradient(90deg, #d97c49 0%, #3257b8 100%);
}

.fifty-section:nth-child(even) {
  background-color: #eff3f5;
}


  @media screen and (max-width: 760px) {
    .main-content .container {padding: 0 8px;}
    .community-bets-item { width: 100%;}
    .community-bets-item-content {
      flex-grow: 1;
      width: calc(100% - 112px);
    }
  }

  @media screen and (max-width: 600px) {
    .bet-calculator { width: 100%;}
    
  }

  @media screen and (max-width: 600px) {
  .cta-sticky {
    padding: 0 16px;
    width: 100%;
    height: 76px;
    background-color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    z-index: 10;
    bottom: 0px;
    left: 0px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
  }
  .cta-sticky.no-shadow {
    box-shadow: none;
  }
  .cta-sticky .btn {
    width: 100%;
  }
}