.cookies-container {
  display: block;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 20px;
  position: fixed;
  background-color: #fff;
  left: 0;
  bottom: 0;
  right: 0;
  z-index: 2000;
  padding: 12px;
  border-radius: 8px;
  border: 0px;
  box-shadow: 0px 0px 18px #184981;
  -moz-animation: fadein 1s;
  /* Firefox */
  -webkit-animation: fadein 1s;
  /* Safari and Chrome */
  -o-animation: fadein 1s;
  /* Opera */
}

@keyframes fadein {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@-moz-keyframes fadein {
  /* Firefox */
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@-webkit-keyframes fadein {
  /* Safari and Chrome */
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@-o-keyframes fadein {
  /* Opera */
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.cookies-content {
  display: flex;
  justify-content: center;
  justify-items: center;
  flex-direction: row;
  align-items: center;
}

.cookies-content a {
  text-decoration: none !important;
  font-weight: bold;
}

.cookies-save {
  display: flex;
  justify-content: center;
  align-items: center;
}

.close-btn {
  max-width: 150px;
  height: 35px;
  color: #fff;
  background: #184981;
  vertical-align: middle;
  font-size: 10px;
  padding: 10px 20px;
  margin: 0px 20px;
  text-transform: uppercase;
  border-radius: 8px;
  text-align: center;
}

.close-btn:hover {
  color: #fff;
  background-color: #10335a;
  text-decoration: none;
}

.cookies-titulo {
  color: #161c2d;
  margin: 0 0 10px 0;
}

.cookies-text {
  font-size: 12px;
  padding: 0px;
  text-align: center;
}

.cookies-text a {
  color: #184981;
  text-decoration: underline;
}

.cookies-text a:hover {
  color: #10335a;
  text-decoration: none;
}

/* Media Responsive */

@media (max-width: 1325px) {
  .cookies-container {
    max-width: 90%;
  }
  .cookies-text {
    display: inline;
  }
}

@media (max-width: 750px) {
  .cookies-content {
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  .close-btn {
    margin-top: 5px;
  }
}
