:root {
    /* --celeste: #7dbed9;
--azul: #00aff4; 
--verde: #00793b;*/
    --naranja: #f78f20;
    /* --azul-btn: #2e90bd;
--azul-btn-hv: #8fd0ee;
--verdeClaro: #00b19d;
--verdeHover: #00b19dbf; */
    --grisClaro: #f7f9fa;
    --fuente: "Nunito", sans-serif;
}

body {
    font-family: var(--fuente);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
    color: var(--gray-dark);
}

h1 {
    font-size: 40px;
    font-weight: 900;
}

h2 {
    font-size: 36px;
    font-weight: 700;
}

h3 {
    font-size: 30px;
    font-weight: 700;
}

h4 {
    font-size: 28px;
    font-weight: 500;
}

h5 {
    font-size: 24px;
    font-weight: 500;
}

h6 {
    font-size: 20px;
    font-weight: 400;
}

p {
    margin: 0;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.2;
}

.fuente-delgada {
    font-weight: 300;
}

.margin-bottom {
    margin-bottom: 10px;
}

.centrar-texto {
    text-align: center;
}

i {
    font-size: 18px;
}

.icon-modal {
    font-size: 25px;
}

.panel-opc {
    display: flex;
    flex-direction: column;
    padding: 20px;
    column-gap: 20px;
}

.botones,
.botones-separados {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.flex-right {
    display: flex;
    justify-content: right;
    column-gap: .5rem;
}

@media (min-width: 576px) {
    .botones {
        flex-direction: row;
        align-items: center;
    }

    .botones-separados {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }
}

@media (min-width: 768px) {
    .panel-opc {
        flex-direction: row;
    }

    .cont-form {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        column-gap: 2rem;
    }
}

.cont-amplio {
    grid-column: 1 / 3;
}

textarea {
    display: block;
    width: 100%;
    border: 1px solid rgb(206, 212, 218);
}

    .form-control:focus,
    textarea:focus {
        border: none;
        outline: 1px solid var(--naranja);
    }

.requerido {
    color: red;
}

.bloque {
    display: flex;
    justify-content: space-between;
}

.iconos-acciones {
    display: flex;
    column-gap: 0.5rem;
    max-width: 20px;
}

.ui-autocomplete, #ui-id-1 {
    z-index: 5000;
    position: absolute;
}


/* Tooltip container */
.tooltip {
    position: relative;
    display: inline-block;
    border-bottom: 1px dotted black; /* If you want dots under the hoverable text */
}

    /* Tooltip text */
    .tooltip .tooltiptext {
        visibility: hidden;
        width: 120px;
        background-color: #555;
        color: #fff;
        text-align: center;
        padding: 5px 0;
        border-radius: 6px;
        /* Position the tooltip text */
        position: absolute;
        z-index: 1;
        bottom: 125%;
        left: 50%;
        margin-left: -60px;
        /* Fade in tooltip */
        opacity: 0;
        transition: opacity 0.3s;
    }

        /* Tooltip arrow */
        .tooltip .tooltiptext::after {
            content: "";
            position: absolute;
            top: 100%;
            left: 50%;
            margin-left: -5px;
            border-width: 5px;
            border-style: solid;
            border-color: #555 transparent transparent transparent;
        }

    /* Show the tooltip text when you mouse over the tooltip container */
    .tooltip:hover .tooltiptext {
        visibility: visible;
        opacity: 1;
    }