/*Este archivo contiene los estilos necesarios apra el banner cookies*/

body {
  overflow-x: hidden !important;
}

#banner-cookies {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background-color: #222;
  color: #fff;
  display: none;
}

#toast-container {
  margin: 15px;
}
#toast-header {
  margin-bottom: 0px;
}

#toast-body {
  display: flex;
  flex-direction: column;
}

#button-container {
  position: absolute;
  top: 35%;
  right: 20px;
  z-index: 1;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}

@media (max-width: 768px) {
  #button-container {
    flex-direction: column;
  }
}

#btnDeny,
#btnConfig,
#btnAccept {
  border: 1px solid #fff;
  background: none;
  color: #fff;
  border-radius: 5px;
  padding: 10px 20px;
  margin-right: 10px;
}

#btnDeny:hover,
#btnConfig:hover {
  background: #6f7071;
}

#btnAccept {
  background-color: #fff;
  color: #007bff;
}

#btnAccept:hover {
  background: #403f3f5f;
  color: white;
}

#banner-cookies #toast-body p {
  max-width: 65%;
  color: white;
  text-align: justify;
  font-size: 11px !important;
  font-family: Arial, Helvetica, sans-serif;
}

#toast-body a:focus {
  color: #007bff;
}
#toast-body a:hover {
  color: #007bff;
}
