﻿.elipse {
    /*animation: orbit 40s linear infinite;*/
    /*position: absolute;*/
    border-style: solid;
    border-color: black;
    border-width: 0.1em;
    border-radius: 50%;
    position: center;
    /*posicion*/
    /*left: 2em;
    top: 15em;*/
    width: 50em;
    height: 10em;
}

.escala img {
    /*width: 100%;*/
    transition: all 300ms;
    /*position: relative;*/
}

.escala img:hover {
    transform: scale(1.50);
}
/**/
.background-alpha {
    background-color: #2f3245;
}
.background-beta {
    background-color: #dc4f53;
}
.shadow {
    -webkit-box-shadow: 1px 1px 6px 1px rgb(0 0 0 / 45%) !important;
    box-shadow: 1px 1px 6px 1px rgb(0 0 0 / 45%) !important;
    border-radius: 6px;
    /**/
    text-decoration: none;
    align-self: normal;
    display: flex;
    /*flex-direction: column;*/
    flex:1 1 21rem;
}
.selectcard{
    align-self: normal;
    display:flex;
    flex-direction:column;
}
.selectcard :hover {
    background-color: #5c5c5b;
    border-radius: 6px;
}
.color-alpha {
    color: #2f3245;
}
.color-beta {
    color: #dc4f53;
}
.top-nav {
    background-color: #FF4D4C;
    border-bottom: 1px solid #d6d5d5;
    justify-content: flex-end;
    height: 3.5rem;
    display: flex;
    align-items: center;
    color: white;
    box-shadow: 10px 0px 17px -4px rgba(0,0,0,0.5);
}

@media (max-width: 1200px){
    .titulo-img {
        display: none;
        
    }
    .top-nav {
        height: 10rem;
    }
}
@media (max-width: 640.98px){
    .top-nav:not(.auth) {
        display: none;
        height: 10rem;
        /*justify-content: space-between;
        display: inline-block;*/
    }
    .opciones{
        display:none;
    }
}
.profile{
    display:none;
}
@media (max-width: 641px){
    .profile{
        display:initial;
    }
}


/**/
/* Style The Dropdown Button */
.dropbtn {
    background-color: #4CAF50;
    color: white;
    padding: 16px;
    font-size: 16px;
    border: none;
    cursor: pointer;
}

/* The container <div> - needed to position the dropdown content */
.dropdown {
    position: relative;
    display: inline-block;
}

/* Dropdown Content (Hidden by Default) */
.dropdown-content {
    display: none;
    position: absolute;
    background-color: #f9f9f9;
    min-width: 250px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
    /*right: 0;*/
}

    /* Links inside the dropdown */
    .dropdown-content a {
        color: black;
        padding: 12px 16px;
        text-decoration: none;
        display: block;
    }

        /* Change color of dropdown links on hover */
        .dropdown-content a:hover {
            background-color: #f1f1f1
        }

/* Show the dropdown menu on hover */
.dropdown:hover .dropdown-content {
    display: block;
}

/* Change the background color of the dropdown button when the dropdown content is shown */
.dropdown:hover .dropbtn {
    background-color: #3e8e41;
}

/**/
.container-2 {
    float: left;
    display: inline;
    width: 100%;
    height: 100%;
    /*padding: 15px;*/
}

.box {
    float: left;
    width: 100%;
    height: 200px;
    border: 1px solid #ccc;
    /*margin-right: 15px;*/
}

#box1 {
    height: 20px;
    background-color: #F00;
}

#box2 {
    height: 30px;
    background-color: #4cc203;
}

#box3 {
    height: 50px;
    background-color: #00c4ff;
}
.input-group-append {
    cursor: pointer;
}

/*-- CSS param ellipse autocompletado --*/
.autocomplete {
    position: relative;
}

    .autocomplete .options {
        position: absolute;
        top: 40px;
        left: 0;
        background: white;
        width: 100%;
        padding: 0;
        z-index: 10;
        border: 1px solid #ced4da;
        border-radius: 0.5rem;
        box-shadow: 0 30px 25px 8px rgba(0, 0, 0, 0.1);
    }

    .autocomplete .option {
        display: block;
        padding: 0.25rem;
    }

        .autocomplete .option .option-text {
            padding: 0.25rem 0.5rem;
        }

        .autocomplete .option:hover {
            background: #1E90FF;
            color: #fff;
        }

        .autocomplete .option.disabled {
            background-color: lightgrey;
            cursor: not-allowed;
        }

            .autocomplete .option.disabled:hover {
                background: lightgrey;
                color: var(--bs-body);
            }
/*-- fin autocompletado --*/

.custom-input {
    border: 1px solid #d1d5db; /* Color de borde */
    border-radius: 5px; /* Bordes redondeados */
    padding: 10px; /* Espacio interno */
    font-size: 14px; /* Tamaño de fuente */
    width: 100%; /* Ancho completo */
    outline: none; /* Sin borde azul en enfoque */
    transition: border-color 0.3s; /* Efecto de transición en el borde */
}
/* estilo para form*/
.form-container-2 {
    background-color: #ffffff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.1);
    font-family: Arial, sans-serif;
    max-width: 800px;
    margin: auto;
    border-left: 5px solid #007bff;
}

    .form-container-2 label {
        font-weight: bold;
        color: #007bff;
    }

    .form-container-2 .form-control {
        border: 1px solid #d1d5db;
        border-radius: 5px;
        padding: 8px 10px;
        font-size: 1rem;
        background-color: #f9fafb;
        transition: border-color 0.3s ease;
    }

        .form-container-2 .form-control:focus {
            border-color: #007bff;
            box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
        }

.row-2 {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.col-md-4, .col-md-2 {
    flex: 1;
    padding: 0 10px;
}

.btn-search-2 {
    background-color: #007bff;
    color: white;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
    font-size: 1.2rem;
}

    .btn-search-2:hover {
        background-color: #0056b3;
    }

.status-2 {
    font-weight: bold;
    color: #28a745;
    font-size: 1.1rem;
}

.search-icon-2 {
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.deshabilitado {
    pointer-events: none; /* Bloquea interacciones */
    opacity: 0.5; /* Visualmente muestra que está deshabilitado */
}
/**/
.title-container {
    background-color: #f0f4f8;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    font-family: Arial, sans-serif;
    max-width: 800px;
    padding: 15px 20px;
    border-radius: 5px;
    margin-bottom: 20px;
    text-align: center;
    margin: auto;
}

.form-container {
    background-color: #f0f4f8;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    font-family: Arial, sans-serif;
    /*max-width: 800px;*/
    margin: auto;
}

    .form-container label {
        font-weight: bold;
        color: #333;
    }

    .form-container .form-control {
        border: 1px solid #ccc;
        border-radius: 5px;
        padding: 8px 10px;
        font-size: 1rem;
    }

.row {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.col-md-4, .col-md-2 {
    flex: 1;
    padding: 0 10px;
}

.btn-search {
    background-color: #007bff;
    color: white;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
    font-size: 1.2rem;
}

.status {
    font-weight: bold;
    color: #28a745;
    font-size: 1.1rem;
}

.search-icon {
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.custom-select {
    appearance: none;
    background-color: #f8f9fa;
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 24 24"><path fill="black" d="M10 7l5 5-5 5z"/></svg>'); /* Icono de flecha hacia la derecha */
    background-repeat: no-repeat;
    background-position: right 10px center;
    background-size: 30px;
    padding-right: 35px;
    border: 2px solid #ced4da;
    border-radius: 8px;
    height: 40px;
    font-size: 16px;
    transition: background-image 0.3s ease; /* Transición suave */
}

    .custom-select:focus {
        background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 24 24"><path fill="black" d="M7 10l5 5 5-5z"/></svg>'); /* Icono de flecha hacia abajo */
    }

.custom-select2 {
    appearance: none; /* Quita el estilo por defecto del navegador */
    background-color: #f8f9fa; /* Fondo para que resalte */
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="12" height="12" viewBox="0 0 24 24"><path d="M7 10l5 5 5-5z"/></svg>'); /* Icono de flecha abajo */
    background-repeat: no-repeat;
    background-position: right 10px center; /* Posiciona el icono a la derecha */
    background-size: 25px; /* Tamaño del icono */
    /*padding-right: 25px;*/ /* Espacio para el icono */
    border: 1px solid #ced4da;
    border-radius: 4px;
}

.high-zindex {
    z-index: 2000 !important; /* Asegura que el select tenga un z-index alto */
}

/*.select2-container {
    z-index: 2000 !important;*/ /* Hace que Select2 tenga prioridad sobre el modal */
/*}

.select2-dropdown {
    z-index: 9999 !important;*/ /* Coloca el dropdown sobre el modal */
/*}*/

/* Cambiando stilo del tooltip */
.tooltip .tooltip-inner {
    background-color: #4a90e2; /* Color de fondo */
    color: white; /* Color del texto */
    font-size: 16px; /* Tamaño del texto */
    font-weight: bold; /* Negrita */
    border-radius: 8px; /* Bordes redondeados */
    padding: 8px 12px;
}
/* ----- */
.tooltip-azul .tooltip-inner {
    background-color: #4a90e2;
    color: white;
    font-size: 16px;
    font-weight: bold;
    border-radius: 8px;
    padding: 8px 12px;
}

/* Forza el z-index del select2 por debajo del modal */
.select2-container {
    z-index: 1050 !important;
}

.select2-dropdown {
    z-index: 1049 !important;
}

/* Asegura que sweetalert esté al frente */
.swal2-container {
    z-index: 2000 !important;
}
