@-webkit-keyframes invalid {
    from {
        background-color: red;
    }
    to {
        background-color: inherit;
    }
}

@-moz-keyframes invalid {
    from {
        background-color: red;
    }
    to {
        background-color: inherit;
    }
}

@-o-keyframes invalid {
    from {
        background-color: red;
    }
    to {
        background-color: inherit;
    }
}

@keyframes invalid {
    from {
        background-color: red;
    }
    to {
        background-color: inherit;
    }
}

.invalid {
    -webkit-animation: invalid 1s infinite;
    /* Safari 4+ */
    -moz-animation: invalid 1s infinite;
    /* Fx 5+ */
    -o-animation: invalid 1s infinite;
    /* Opera 12+ */
    animation: invalid 1s infinite;
    /* IE 10+ */
    text-align: center;
    vertical-align: middle !important;
}

.nombre_ellipsis {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}
.calle_ellipsis {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}
.searchTerm{
    padding: 5px;
    border: 3px solid #00B4CC;
    border-radius: 5px;
    width: 100%;
}
.searchTerm:focus{
    color: #00B4CC;
}
.btn-sm{
    font-size: 16px!important ;
}
.boton-sin-uso:hover{
       cursor: default;
}
.centrar{
    text-align: center;
    vertical-align: middle !important;
}
.table thead th {
    background-color: #fff;
}