.cookies-msg{
  width: 60%;
  background-color: #232323;
  position: fixed;
  bottom: 5%;
  left: 50%;
  transform: translate(-50%);
  border-radius: 10px;
  z-index: 999;
  display: none;
}

.cookies-msg.mostrar{
  display: block;
}

.cookies-msg .cookies-txt{
  display: flex;
  align-items: center;
  text-align: justify;
  padding: 20px;
}

.cookies-msg .cookies-btn{
  margin-left: 30px;
}

.cookies-msg .cookies-btn button{
  background-color: #0d6efd;
  color: #fff;
  font-weight: 700;
  font-size: 18px;
  padding: 10px 40px;
  cursor: pointer;
  transition: .2s;
}

.cookies-msg .cookies-btn button:hover{
  transform: scale(0.9);
}