.cookie-head{
	font-size:1.2em;
	font-width: bold;
	margin-bottom: 5px;
}
.okookie-modal {
    display: none; /* Oculto por defecto */
    position: fixed; /* Fijo en la pantalla */
    z-index: 10; /* AsegÃºrate de que estÃ© sobre otros elementos */
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto; /* Permite scroll si es necesario */
    background-color: rgb(0,0,0); /* Fondo oscuro */
    background-color: rgba(0,0,0,0.4); /* Negro con transparencia */
}

.okookie-modal-content {
    background-color: #fefefe;
    margin: 7% auto; /* 15% desde el top y centrado horizontalmente */
    padding: 20px;
    border: 1px solid #888;
    width: 80%; /* PodrÃ­as ajustar esto segÃºn tus necesidades */
}
.btnbootstrap {
    display: inline-block;
    font-weight: 400;
    line-height: 1.5;
    text-align: center;
    text-decoration: none;
    vertical-align: middle;
    cursor: pointer;
    border: 1px solid transparent;
    padding: .5rem 1rem;
    font-size: 1em;
    border-radius: .3rem;
    margin: 0.2rem;
    width: 30%; /* Ajusta el ancho de los botones */
}

#okookie-accept {
	background-color: #fb5e06;
	color: #fff;
	border-color: #000;
	border-radius: 10px;
	width: 50%;
}

#okookie-settings-btn {
    background-color: #fff;
    color: #000;
    border-color: #000;
	border-radius: 10px;
    width: 25%;
}

#okookie-reject {
    background-color: #fff;
    color: #000;
    border-color: #000;
	border-radius: 10px;
    width: 25%;
}

.button-container {
    display: flex;
    justify-content: space-between;
    gap: 1rem; /* Ajusta el espacio entre los botones */
}

/* The Modal (background) */
.modal {
  display: none; /* Hidden by default */
  position: fixed; /* Stay in place */
  z-index: 1000; /* Sit on top */
  left: 0;
  top: 0;
  width: 100%; /* Full width */
  height: 100%; /* Full height */
  overflow: auto; /* Enable scroll if needed */
  background-color: rgb(0,0,0); /* Fallback color */
  background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
}

/* Modal Content/Box */
.modal-content {
  position: relative; /* Asegura que el posicionamiento de los hijos sea respecto a este contenedor */
  background-color: #fff;
  margin: 7% auto;
  padding: 20px;
  width: 800px;
  max-width: 800px;
  border-radius: 15px;
  height: auto;
  top: 20px;
}
.content{
	overflow: scroll!important;
}
/* The Close Button */
.close {
  color: #aaa;
  position: absolute; /* Posiciona absolutamente dentro de su contenedor relativo */
  top: 10px; /* Espacio desde la parte superior del contenedor */
  right: 10px; /* Espacio desde el lado derecho del contenedor */
  font-size: 28px;
  font-weight: bold;
}

.close:hover,
.close:focus {
  color: black;
  text-decoration: none;
  cursor: pointer;
}
       .collapsible {
            background-color: #252525;
            color: white;
            cursor: pointer;
            width: 100%;
            border: none;
            text-align: left;
            outline: none;
            font-size: 15px;
            margin-bottom: 3px;
            border-radius: 10px;
            height: 47px;
            padding-left: 10px;
            transition: background-color 0.3s ease; /* TransiciÃ³n para el color de fondo */
        }

        .active, .collapsible:hover {
            background-color: #000;
        }

        .content {
            padding: 0 18px;
            overflow: hidden;
            background-color: #f1f1f1;
            color: #000;
            max-height: 0; /* Inicialmente oculto */
            transition: max-height 0.3s ease; /* TransiciÃ³n para la altura mÃ¡xima */
            margin-bottom: 5px;
            border-radius: 10px;
        }

        /* AÃ±ade un estilo para mostrar el contenido cuando estÃ¡ activo */
        .active + .content {
            max-height: 500px; /* Ajusta la altura mÃ¡xima segÃºn tus necesidades */
        }