.politica_de_privacidade {
  position: fixed;
  bottom: 20px;
  z-index: 99999;
  left: 0;
  right: 0;
  display: none;
  grid-template-columns: 3fr 1fr;
  grid-gap: 40px;
  align-items: center;
  width: 80vw;
  margin: 0 auto;
  padding: 20px;
  font-family: "Roboto", sans-serif;
  background: #ffffff;
  box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.05);
  border-radius: 5px;
  box-sizing: border-box;
  font-size: 14px;
  color: #394053;
  transition: all ease 1s;
}

.politica_de_privacidade.efeito {
  display: grid;
  animation-name: bounceInUp;
  animation-duration: 1s;
}

.politica_de_privacidade.active {
  transform: translate(0, 200px);
}

.politica_de_privacidade p {
  margin-bottom: 0;
  line-height: 21px;
}

.politica_de_privacidade a {
  text-decoration: none;
  color: #076ce2;
}

.politica_de_privacidade button {
  background: var(--color_primary);
  border: none;
  border-radius: 5px;
  height: 40px;
  font-weight: 700;
  font-size: 14px;
  line-height: 16px;
  text-transform: uppercase;
  color: #fff;
  cursor: pointer;
  transition: all ease 0.3s;
  font-family: "Roboto", sans-serif;
}
.politica_de_privacidade button:hover {
  background: transparent;
  border: 2px solid var(--color_primary);
  color: var(--color_primary);
}

@-webkit-keyframes bounceInUp {
  from,
  60%,
  75%,
  90%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    -moz-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    -ms-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    -o-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 3000px, 0);
    -moz-transform: translate3d(0, 3000px, 0);
    -ms-transform: translate3d(0, 3000px, 0);
    -o-transform: translate3d(0, 3000px, 0);
    transform: translate3d(0, 3000px, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0);
    -moz-transform: translate3d(0, -20px, 0);
    -ms-transform: translate3d(0, -20px, 0);
    -o-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0);
  }
  75% {
    -webkit-transform: translate3d(0, 10px, 0);
    -moz-transform: translate3d(0, 10px, 0);
    -ms-transform: translate3d(0, 10px, 0);
    -o-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0);
  }
  90% {
    -webkit-transform: translate3d(0, -5px, 0);
    -moz-transform: translate3d(0, -5px, 0);
    -ms-transform: translate3d(0, -5px, 0);
    -o-transform: translate3d(0, -5px, 0);
    transform: translate3d(0, -5px, 0);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    -o-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@media (max-width: 628px) {
  .politica_de_privacidade.efeito {
    display: flex;
    flex-direction: column;
  }

  .politica_de_privacidade button {
    padding: 0 10px;
  }
}
