.cookie-consent-banner {
  position: fixed;
  /*bottom: 0;*/
  left: 0;
  z-index: 2147483645;
  box-sizing: border-box;
  width: 100%;
  background-color: #fff;
}


.cookie-consent-banner__inner {
  max-width: 960px;
  margin: 0 auto;
  padding: 32px 0;
}

.cookie-consent-banner__copy {
  margin-bottom: 16px;
  /*Estava muito colado à esquerda, então juntei isto:*/
  padding-left: 10px;
}

.cookie-consent-banner__actions {
    /*Estava muito colado à esquerda, então juntei isto:*/
    padding-left: 10px;
}


.cookie-consent-banner__header {
  margin-bottom: 8px;
  /*Comentar para usar a por defeito:*/
  /*font-family: "CeraPRO-Bold", sans-serif, arial;*/
  font-weight: normal;
  font-size: 16px;
  line-height: 24px;
}

.cookie-consent-banner__description {
  /*font-family: "CeraPRO-Regular", sans-serif, arial;*/
  font-weight: normal;
  color: #838F93;
  font-size: 16px;
  line-height: 24px;
}

.cookie-consent-banner__cta {
  box-sizing: border-box;
  display: inline-block;
  min-width: 130px;
  padding: 11px 13px;
  /*Quanrto maior, mais redonda as bordas são:*/
  border-radius: 20px;

  background-color: #2CE080;

  color: #FFF;
  text-decoration: none;
  text-align: center;
  /*font-family: "CeraPRO-Regular", sans-serif, arial;*/
  font-weight: normal;
  font-size: 16px;
  line-height: 20px;
  /*Para dar mais espaço em relação ao botão da direita:*/
  margin-right: 50px;
  /*Para depois em mobile os botões não ficarem colados um abaixo do outro:*/
  margin-bottom: 12px;
}

/*IMPORTANTE: este button só é importante enquanto temos o register com um base diferente do principal. Quando o register passar para o tema principal, podemos apagar este button:*/
button:not(:disabled), [type="button"]:not(:disabled), [type="reset"]:not(:disabled), [type="submit"]:not(:disabled) {
    cursor: pointer;
}


.cookie-consent-banner__cta--secondary {
  padding: 9px 13px;

  border: 1px solid #3A4649;
  /*Para ficar mais redondo:*/
  border-radius: 20px;

  background-color: transparent;

  color: #0e1111;

  font-size: 13px;
}

.cookie-consent-banner__cta:hover {
  background-color: #20BA68;
  color: #fff;
}

.cookie-consent-banner__cta--secondary:hover {
  border-color: #838F93;

  background-color: transparent;

  color: #414a4c;
}

.cookie-consent-banner__cta:last-child {
  margin-left: 16px;
}