﻿/*body {
    font-family: Roboto, sans-serif;
    font-size: 12px;
}*/

label {
    display: block;
}

input[type='text'] {
    width: 100%;
    font-size: 10px;
    font-size: 1.5em;
    padding: 5px 10px;
}

.sticky {
    position: sticky;
    top: 10px;
}

h3 {
    margin-top: 30px;
}

.alphabet {
    display: block;
    width: 100%;
}

    .alphabet button {
        font: inherit;
        color: currentColor;
        cursor: pointer;
        display: inline-block;
        position: relative;
        width: 40px;
        height: 40px;
        line-height: 40px;
        font-size: 20px;
        margin: 0 10px 10px 0;
        border: 1px #000 solid;
        background: #EEE;
        padding: 0;
        box-shadow: 0;
        transition: all 0.3s ease-in-out;
        outline: 0;
    }

    .alphabet:focus {
        outline: 0;
    }

    .alphabet button:hover {
        /*background-color: #FFF;*/
        font-weight: bold;
    }

    .alphabet button.active {
        background-color: #444;
        font-weight: bold;
        color: #FFF;
        box-shadow: 0px 0px 0px 2px #FFF inset;
    }

.glossario {
    display: block;
    width: 100%;
    clear: both;
}

    .glossario .letter {
        display: none;
        width: 100%;
        clear: both;
        text-align: justify;
        padding-bottom: 30px;
    }

        .glossario .letter.active {
            display: block;
        }

    .glossario h3 {
        font-size: 16px;
        font-weight: 300;
        text-transform: uppercase;
        margin-bottom: 5px;
    }

        .glossario h3.found {
            font-weight: bold;
        }

    .glossario span.found {
        background-color: red;
    }


.hidden-by-search {
    display: none !important;
}

/*parA ADT*/
.btn-adt {
    color: #fff; /* texto blanco para contraste */
    background-color: #004197;
    border-color: #004197;
}

    .btn-adt:hover {
        color: #fff;
        background-color: #00367e; /* un tono un poco más oscuro */
        border-color: #004197;
    }

    .btn-adt:focus,
    .btn-adt.focus {
        color: #fff;
        background-color: #004197;
        border-color: #004197;
        box-shadow: 0 0 0 0.25rem rgba(0, 65, 151, 0.4);
    }

    .btn-adt:disabled,
    .btn-adt.disabled {
        color: #fff;
        background-color: #004197;
        border-color: #004197;
        opacity: 0.65;
    }

    .btn-adt:not(:disabled):not(.disabled):active,
    .btn-adt:not(:disabled):not(.disabled).active {
        color: #fff;
        background-color: #00306d;
        border-color: #00306d;
    }
