/* Estilos del modal */
.cookies.modal {
  display: block;
  position: fixed; /* Permanece en su lugar */
  z-index: 1; /* Se sienta encima de otros elementos */
  left: 0;
  top: 0;
  width: 100%; /* Ancho completo */
  height: 100%; /* Altura completa */
  overflow: auto; /* Habilita el desplazamiento si es necesario */
  background-color: rgb(0,0,0); /* Color de respaldo */
  background-color: rgba(0,0,0,0.4); /* Respaldo negro con opacidad */
}

/* Contenido del modal */
.cookies.modal .modal-content {
background-color: #d24a4a;
  filter: opacity(95%);
  font-size: 1.2rem;
  padding: 20px;
  /*margin: 15% auto;

  width: 40%;*/
}

/* Botón de cierre */
.cookies.modal .close {
  color: #aaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
}

.cookies.modal .close:hover,
.cookies.modal .close:focus {
  color: black;
  text-decoration: none;
  cursor: pointer;
}

/* Estilos de las pestañas */
.cookies.modal .tab {
  overflow: hidden;
  border: 1px solid #ccc;
}

.cookies.modal .tab button {
  background-color: inherit;
  float: left;
  border: none;
  outline: none;
  cursor: pointer;
  padding: 14px 16px;
  transition: 0.3s;
  color: white;
}

.cookies.modal .tab button:hover {
  background-color: #ddd;
}

.cookies.modal .tab button.active {
  background-color: #ccc;
}

.cookies.modal .tabcontent {
  display: none;
  padding: 6px 12px;
  border: 1px solid #ccc;
  border-top: none;
}

#acceptmyBtn, #closemyBtn {
  width: 100%;
}
.row.cookies {
  padding-top: 2em;
}
#acceptmyBtn, #closemyBtn {
  background-color: white;
  color: black;
  border: none;
}
#acceptmyBtn:hover, #closemyBtn:hover {
  background-color: #d24a4a;
  color: white;
  border: none;
}
#acceptmyBtn:active, #closemyBtn:active {
  background-color: #d24a4a;
  color: white;
  border: none;
}