:root {
    --card-color: black;
    --background-color: rgba(121, 151, 179, 0.6);
    --border-color: linear-gradient(to right,
            white 0%,
            var(--background-color));
    --border-avatar-color: var(--background-color);

}

body {
    background: var(--background-color);
    font-optical-sizing: auto;
    font-style: normal;
    font-family: sans-serif;
}

.luzCard {
    background: var(--border-color);
    float: right;
    width: 40px;
    height: 40px;
    padding: 2px;
    border-radius: 50%;
    margin-top: 5px;
    position: relative;

}

#luz {
    background: transparent;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    border-radius: 50%;
}

.fondo {
    /*   color: rgba(24, 59, 214, 0.182); */
    min-height: 30rem;
    width: 100%;
    height: 100%;
    padding-top: 1rem;
    background: linear-gradient(rgba(121, 151, 179, 0.6), rgba(166, 188, 218, 0.6)), url('/img/bg.jpg');
    /*  background: url('/img/bg.jpg') no-repeat center center; */
    background-size: cover;
    -moz-background-size: cover;
    -webkit-background-size: cover;
    -o-background-size: cover;
    background-attachment: fixed;
}

.avatar {
    border: 1px solid var(--border-avatar-color);
    border-radius: 50%;
    object-fit: cover;
    object-position: center;
}

.avatar-s {
    height: 48px;
    width: 48px;
}

.avatar-m {
    height: 96px;
    width: 96px;
}

.avatar-l {
    height: 128px;
    width: 128px;
}

.miCarrusel img {
    max-height: 400px;

    border-radius: 10px;
}

.foto {
    height: 200px;
    width: 200px;
    border: 1px solid black;

}

.modal {
    display: none;
    /* Hidden by default */
    position: fixed;
    z-index: 10;
    padding-top: 10%;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.75);
}

.pinchable:hover {
    cursor: pointer !important;
}

/* Modal Content */
.modal-content {
    background-color: #fefefe;
    margin: auto;
    padding: 20px;
    border: 1px solid #888;
    width: 80%;
}

.close {
    margin: 0px;
    color: #918e8e;
    font-size: 28px;
    font-weight: bold;
}

.close:hover,
.close:focus {
    color: #000;
    text-decoration: none;
    cursor: pointer;
}

.footer div {
    color: rgba(255, 255, 255, .75);
}

.footer a {
    color: rgba(255, 255, 255, .75);
}

.copyleft {
    display: inline-block;
    transform: rotate(180deg);
}

.SVG-white-logo{
    filter: invert(100%) sepia(40%) saturate(55%) hue-rotate(151deg) brightness(115%) contrast(87%);
}


.etiquetaGoogle {
    background-color: rgba(245, 222, 179, 0.452);
    top: 35px;
    position: relative;
}

.blink_me {
    animation: blinker 1s linear infinite;
}

/* Contenedor del input y sugerencias */
#nifInput {
  width: 300px;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 16px;
}
/* Lista de sugerencias */
.sugerencias-lista {
  list-style: none;
  padding: 0;
  margin-top: 0;
  width: 300px;
  max-height: 200px;
  overflow-y: auto;
  border: 1px solid #ccc;
  border-top: none;
  border-radius: 0 0 5px 5px;
  box-shadow: 0px 4px 8px rgba(0,0,0,0.1);
  position: absolute;
  background-color: white;
  z-index: 1000;
}
/* Cada elemento de la lista */
.sugerencias-lista li {
  padding: 10px;
  cursor: pointer;
  border-bottom: 1px solid #eee;
  transition: background-color 0.2s ease;
}

/* Último sin borde */
.sugerencias-lista li:last-child {
  border-bottom: none;
}

/* Hover o foco */
.sugerencias-lista li:hover {
  background-color: #f0f0f0;
}


@keyframes blinker {
    50% {
        opacity: 0;
    }
}