﻿/**************************************************************
*
* Archivo CSS simple y no compilable. Introducir aquÃ­ cualquier
* modificaciÃ³n en CSS puro
*
**************************************************************/
@import url("https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;600;700&family=Ubuntu:wght@400;500;700&display=swap");
/***********************************************************
	TITULARES
***********************************************************/

h1, h2, h3, h4, h5, h6 {
    letter-spacing: -0.4px;
    text-rendering: optimizelegibility;
    font-weight: 500;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #4f4f4f;
}

h1 {
    font-size: 1.8rem !important;
}

@media (min-width: 64rem) {
    h1 {
        font-size: 2.2rem !important;
    }
}

h2 {
    font-size: 1.8rem !important;
}

@media (min-width: 64rem) {
    h2 {
        font-size: 2rem !important;
    }
}

h3 {
    font-size: 1.6rem !important;
}

@media (min-width: 64rem) {
    h3 {
        font-size: 1.8rem !important;
    }
}

h4 {
    font-size: 1.4rem !important;
}

@media (min-width: 64rem) {
    h4 {
        font-size: 1.6rem !important;
    }
}

h5 {
    font-size: 1.1rem !important;
    line-height: 1.3rem !important;
}

@media (min-width: 64rem) {
    h5 {
        font-size: 1.2rem !important;
        line-height: 1.4rem !important;
    }
}

h6 {
    font-size: 1rem !important;
    line-height: 1.2rem !important;
}

@media (min-width: 64rem) {
    h6 {
        font-size: 1.1rem !important;
        line-height: 1.3rem !important;
    }
}


/***********************************************************
   ui-autocomplete style
***********************************************************/
/*CG.20200214. ADAPTO LOS COMBOS Y EL TAMAÃ‘O DE PANEL DEL ITEMS*/
.ui-autocomplete {
    max-height: 200px;
    overflow-y: auto;
    /* prevent horizontal scrollbar */
    overflow-x: hidden;
    width: calc(var(--width-custom-combobox));
}
/* IE 6 doesn't support max-height
* we use height instead, but this forces the menu to always be this tall
*/
* html .ui-autocomplete {
    height: 200px;
    width: calc(var(--width-custom-combobox));
}

@media (min-width: 64rem) {
    .ui-autocomplete {
        max-height: 300px;
        overflow-y: auto;
        /* prevent horizontal scrollbar */
        overflow-x: hidden;
        width: calc(var(--width-custom-combobox));
    }
    /* IE 6 doesn't support max-height
    * we use height instead, but this forces the menu to always be this tall
    */
    * html .ui-autocomplete {
        height: 300px;
        width: calc(var(--width-custom-combobox));
    }
}

/*CG.20200214. ADAPTO LOS COMBOS Y EL TAMAÃ‘O DE PANEL DEL ITEMS*/
.ui-widget.ui-widget-content {
	border: 1px solid #c5c5c5;
}
.ui-widget-content {
	border: 1px solid #dddddd;
	background: #ffffff;
	color: #333333;
    
}
.ui-menu .ui-menu-item {
	margin: 0;
	cursor: pointer;
	/* support: IE10, see #8844 */
	list-style-image: url("data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7");
 
}

.ui-menu .ui-menu-item-wrapper {
	position: relative;
	padding: 3px 1em 3px .4em;

    width: calc(var(--width-custom-combobox));
    word-wrap: break-word;      /* IE*/
    white-space: -moz-pre-wrap; /* Firefox */
    white-space: pre-wrap;  
}

.combo-box-disabled {
    height:calc(1.5em + 1rem + 2px); background-color: #e9ecef;opacity: 1;
}



/*************************************************
    COLOR ESTADO
*************************************************/
.text-red,
.cestel-subtitulo-pagina.text-red {
    color: #DC3545 !important; }

.text-green,
.cestel-subtitulo-pagina.text-green {
    color: #7AB021 !important; }

.codeNormal,
.cestel-subtitulo-pagina.codeNormal {
    color: #57953B !important;
}

.codeBaja,
.cestel-subtitulo-pagina.codeBaja {
    color: #E31010 !important;
}

.codeDesaparecido,
.cestel-subtitulo-pagina.codeDesaparecido {
    color: #FF8100 !important;
}

.codePerrera,
.cestel-subtitulo-pagina.codePerrera {
    color: #9A1515 !important;
}


/***********************************
	ESTADOS DE SOLICITUD
************************************/
.estado-solicitud{
    font-size: 1.5em;
    letter-spacing: -0.5px;
    font-weight: 500;
}

@media (min-width: 48rem) {
    .estado-solicitud{
        font-size: 1.8em;
        letter-spacing: -0.5px;
        font-weight: 500;
    }
}

.estado-aceptada {
    color: #57953B;
}

.estado-rechazada {
    color: #D01D24;
}

.estado-pendiente {
    color: #F4861E;
}

.estado-devuelta {
    color: #0076C0;
}

.estado-modificada {
    color: #9253C4;
}

.estado-encurso {
    color: #44A3E0;
}


.news-background{
    /*background-color:lightgray;*/
    /*margin-left:-30px;
    margin-right:-30px;*/
    width:inherit;
    padding:10px 0 40px 0;
    margin-bottom:50px;
    margin-top:50px;
}


/*************************************************
    LOADING PANEL
**************************************************/
.modalBackground {
    background-color: #f3f3f3;
    filter: alpha(opacity=60);
    opacity: 0.6;
    /*z-index: 100050 !important;*/
}

.updateProgress {
    padding-top: 20px;
    background-color: transparent;
    position: absolute;
    width: 400px;
    height: 180px;
    text-align: center;
    vertical-align: middle;
    /*z-index: 100200 !important;*/
}

    .updateProgress span {
        color: #36454F;
        font-size: 1.2rem;
        letter-spacing: -0.5px;
        font-weight: 500;
    }

/* imagen spinner loading*/
.imagen_loading {
    width: 50px !important;
    margin-bottom: 10px;
}

@media (min-width: 32.5rem) {
    .imagen_loading {
        width: 100px !important;
        margin-bottom: 30px;
    }
}

.texto_loading {
    color: #36454F;
    font-size: 1rem !important;
    letter-spacing: -0.5px;
    font-weight: 500;
}

@media (min-width: 32.5rem) {
    .texto_loading {
        color: #36454F;
        font-size: 1.2rem !important;
        letter-spacing: -0.5px;
        font-weight: 500;
    }
}


/***********************************************************
   Radio y CheckBox Style
***********************************************************/
.radio input[type="radio"],
.checkbox input[type="checkbox"],
.radio input.radio,
.checkbox input.checkbox {
    margin-top: 4px;
    margin-left: 0;
}

    .checkbox input[type="checkbox"] + label,
    .checkbox input.checkbox + label,
    .radio input[type="radio"] + label,
    .radio input.radio + label {
        padding-left: 4px;
        display: inline; 
        font-weight:400 !important;
    }



.radio.radiobuttonlist input[type="radio"],
.checkbox.checkboxlist input[type="checkbox"],
.radio.radiobuttonlist input.radio,
.checkbox.checkboxlist put.checkbox {
    margin-left: 0;
}

    .checkbox.radiobuttonlist input[type="checkbox"] + label,
    .checkbox.radiobuttonlist input.checkbox + label .radio.radiobuttonlist input[type="radio"] + label,
    .radio.radiobuttonlist input.radio + label {
        padding-left: 4px;
        display: inline;
        margin-bottom: 0.2rem;
        margin-left: 0.9rem;
        font-weight:400 !important;
    }


.radio.radiobuttonlistHorizontal input[type="radio"],
.checkbox.radiobuttonlistHorizontal input[type="checkbox"] {
    margin-left: 4px;
    display: inline-block;
}

.radio.radiobuttonlistHorizontal label,
.checkbox.radiobuttonlistHorizontal label {
    margin-bottom: 0rem;
    margin-left: 0rem;
    display: inline-block;
    font-weight:400 !important;
}

@media (min-width: 32.5rem) {
    .radio.radiobuttonlistHorizontal input[type="radio"],
    .checkbox.radiobuttonlistHorizontal input[type="checkbox"] {
        margin-left: 4px;
        display: inline-block;
    }

    .radio.radiobuttonlistHorizontal label,
    .checkbox.radiobuttonlistHorizontal label {
        margin-bottom: 0rem;
        margin-left: 0rem;
        display: inline-block;
        font-weight:400 !important;
    }
}
.checkbox-space input[type="checkbox"] {
    margin: 10px !important;
    vertical-align: middle;
    display: inline;
}


/*************************************************
    FONT SIZES
*************************************************/

.font-size-big1 {
    font-size: 0.85rem !important;
}

.font-size-big2 {
    font-size: 0.9rem !important;
}

.font-size-big3 {
    font-size: 0.95rem !important;
}

.font-size-big4 {
    font-size: 1rem !important;
}

.font-size-small1 {
    font-size: 80% !important;
}

.font-size-small2 {
    font-size: 90% !important;
}

@media (min-width: 48rem) {
    .font-size-big1 {
        font-size: 0.9rem !important;
    }

    .font-size-big2 {
        font-size: 1rem !important;
    }

    .font-size-big3 {
        font-size: 1.1rem !important;
    }

    .font-size-big4 {
        font-size: 1.2rem !important;
    }

    
}


/*************************************************
    HEIGHT
*************************************************/
.min-height100 {
    min-height:100px !important;
}

.min-height200 {
    min-height:200px !important;
}

.min-height300 {
    min-height:300px !important;
}



/*************************************************
    WIDHT
*************************************************/

.width32 {
    width: 32px !important;
}
.width48 {
    width: 48px !important;
}
.width64 {
    width: 64px !important;
}
.width50 {
    width: 50px !important;
}
.width100 {
    width: 100px !important;
}
.width120 {
    width: 120px !important;
}
.width150 {
    width: 150px !important;
}
.width200 {
    width: 200px !important;
}
.width250 {
    width: 250px !important;
}
.width300 {
    width: 300px !important;
}
.width350 {
    width: 350px !important;
}
.width50-p{
    width:50%;
}


.table > th .max-width50,
.table > td .max-width50,
.table.max-width50,
.max-width50 {
    max-width: 50px !important;
}
.table > th .max-width100,
.table > td .max-width100,
.table .max-width100,
.max-width100 {
    max-width: 100px !important;
}
.table > th .max-width150,
.table > td .max-width150,
.table .max-width150,
.max-width150 {
    max-width: 150px !important;
}

.table > th .max-width200,
.table > td .max-width200,
.table .max-width200,
.max-width200 {
    max-width: 200px !important;
}

.table > th .max-width250,
.table > td .max-width250,
.table .max-width250,
.max-width250 {
    max-width: 250px !important;
}
.table > th .max-width300,
.table > td .max-width300,
.table .max-width300,
.max-width300 {
    max-width: 300px !important;
}
.table > th .max-width350,
.table > td .max-width350,
.table .max-width350,
.max-width350 {
    max-width: 350px !important;
}
.table > th .max-width400,
.table > td .max-width400,
.table .max-width400,
.max-width400 {
    max-width: 400px !important;
}

.min-width100 {
    min-width: 100px !important;
}
.min-width200 {
    min-width: 200px !important;
}
.min-width300 {
    min-width: 300px !important;
}

.flotando {
    float: left;
    width: 100%;
    display: inline;
    margin-top: 2px;
    margin-bottom: 3px;
}

/************************************************************
    COLORES (https://www.color-hex.com/color-names.html)
*************************************************************/

.color-chartreuse4 {
    color: #458b00 !important;
}

.color-paleturquoise4 {
    color:#668b8b !important;
}

.color-lightsteelblue4 {
    color:#6e7b8b !important;
}

.color-lightblue4 {
    color:#68838b !important;
}

.color-cyan4 {
    color:#008b8b !important;
}

.color-cadetblue {
    color:#519ea0 !important;
}

.color-darkorange{
    color:#ff8c00 !important;
}

/******************************************************************************************/
/*.espacio96. clase que posiciona elementos de asignaciÃ³n de veterinario en ficha clÃ­nica*/
/******************************************************************************************/
.espacio96 {
    height:0px !important;
    display:block;
}

@media (min-width: 48rem) {
    .espacio96 {
        height: 156px !important;
        display: block;
    }
}

@media (min-width: 64rem) {
       .espacio96 {
        height:96px !important;
        display:block;
    }
}


.securenone,
input[type=text].securenone{
    -webkit-text-security: none;
}

.secure,
input[type=text].secure{

    -webkit-text-security: disc;
    font: bold 100% "Lucida Sans Unicode",sans-serif;
}


input[type=text].big {
    height: calc(1.5em + 1rem + 2px);
    padding: .5rem .875rem;
    font-size: 1.1rem;
    font-weight: 400;
    line-height: 1.4;
    color: #6d6d6d;
}

input[type="text"].big:disabled,
input[type="text"].big.aspNetDisabled {
    width: 100%;
    height: calc(1.5em + 1rem + 2px);
    padding: .5rem .875rem;
    font-size: 1.1rem;
    font-weight: 400;
    line-height: 1.4;
    color: #6d6d6d;
}


textarea.big {
    padding: .5rem .875rem;
    font-size: 1.1rem;
    font-weight: 400;
    line-height: 1.4;
    color: #9ba3a3;
}

textarea.big:disabled,
textarea.big.aspNetDisabled
 {
    padding: .5rem .875rem;
    font-size: 1.1rem;
    font-weight: 400;
    line-height: 1.4;
    color: #7e7e7e;
}

textarea.noresize {
  resize: none;
}




.ajax__fileupload_selectFileButton {
    color: var(--brand);
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
}



/***************************************************************
   MODAL EN <div id="coverScreen" class="modal-lockon"></div>
****************************************************************/
/*
.modal {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 9999 !important;
    display: none;
    overflow: hidden;
    outline: 0;
}*/

.modal-lockon {
    display: block;
    visibility: visible;
    position: absolute;
    z-index: 9999 !important;
    top: 0px;
    left: 0px;
    width: 105%;
    height: 105%;
    background-color: white;
    vertical-align: bottom;
    padding-top: 20%;
    filter: alpha(opacity=50);
    opacity: 0.5;
    font-size: large;
    color: blue;
    font-style: italic;
    font-weight: 400;
    background-image: url("../img/ajax_loading.gif");
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-position: center;
}
/*************************************************
    FIN LOADING PANEL
**************************************************/

.cestel-main2 {
    flex: 1 0 auto;
    padding: 0px 50px 80px 50px;
}

@media (max-width: 767px) {
    .cestel-main2 {
        flex: 1 0 auto;
        padding: 0px 20px 50px 20px;
    }
}


#cajacookies {
    background-color: black;
    filter: alpha(opacity=80);
    opacity: 0.8;
    padding-bottom: 30px;
    padding-top: 5px;
    margin-bottom: 0px;
    position: fixed;
    /*FGI 2020-11-19 -> Ponemos la caja de aceptar cookies en la parte de arriba */
    /*bottom: 0px;*/
    width: 100%;
    z-index: 10000 !important;
}

    #cajacookies .aviso {
        padding-left: 40px;
        padding-right: 40px;
        color: white;
        font-size: medium;
        text-align: center;
    }

@media (max-width: 767px) {
    #cajacookies .aviso {
        padding-left: 5px;
        padding-right: 5px;
        color: white;
        font-size: medium;
        text-align: center;
    }
}



.label-plaintext-compacto {
    display: block;
    background: #f6f6f6 !important;
    padding: 8px;
    min-height: 35px;
}

.label-compacto {
    font-weight: 500;
    font-size:85%;
}


@media only screen and (max-width: 768px) {
    .form-control {
        width: 100%;
        height: calc(1.5em + 1rem + 2px);
        padding: .4rem .6rem;
        font-size: .8rem;
        font-weight: 400;
        line-height: 1;
    }
}


/********************************************************
   TOOLTIP JQUERY UI CUSTOM CLASS COMBOS INTELIGENTES
*********************************************************/
.ui-tooltip, .arrow:after {
    background-color:white;
    border: 2px solid #c5c5c5;
}

.ui-tooltip {
    padding: 8px 15px;
    color: red;
    border-radius: 20px;
    font-size: .8rem;
    text-transform: uppercase;
    box-shadow: 0 0 7px #6d6d6d;
}

.arrow {
    width: 70px;
    height: 16px;
    overflow: hidden;
    position: absolute;
    left: 50%;
    margin-left: -35px;
    bottom: -16px;
}

    .arrow.top {
        top: -16px;
        bottom: auto;
    }

    .arrow.left {
        left: 20%;
    }

    .arrow:after {
        content: "";
        position: absolute;
        left: 20px;
        top: -20px;
        width: 25px;
        height: 25px;
        box-shadow: 6px 5px 9px -9px black;
        -webkit-transform: rotate(45deg);
        -ms-transform: rotate(45deg);
        transform: rotate(45deg);
    }

    .arrow.top:after {
        bottom: -20px;
        top: auto;
    }



.subheading {
    background:#36454F;
    color:#ffffff;
}

    .subheading:hover {
        background: #6e7b8b;
        color: #ffffff;
    }


/********************************************************
   INPUT CLEARABLE
*********************************************************/

.clearable {
    background: #fff url(/img/mJotv.gif) no-repeat right -10px center;
    border: 1px solid #999;
    padding: 3px 18px 3px 4px; /* Use the same right padding (18) in jQ! */
    border-radius: 3px;
    transition: background 0.4s;
}

    .clearable.x {
        background-position: right 5px center;
    }
    /* (jQ) Show icon */
    .clearable.onX {
        cursor: pointer;
    }
    /* (jQ) hover cursor style */
    .clearable::-ms-clear {
        display: none;
        width: 0;
        height: 0;
    }
/* Remove IE default X */

.blink_me {
    animation: blinker 1s linear infinite;
}

@keyframes blinker {
    50% {
        opacity: 0;
    }
}

.disabled {
    pointer-events: none;
    opacity: 0.6;
}



:root {
    --footer-primary-color: #00237e;
    --footer-secondary-color: #fcb040;
    --footer-accent-color: #98cb46;
    --footer-main-dark-color: #1c2339;
}


/***************************************************
    FOOTER - siamel public style
***************************************************/
footer {
    background: #EDF0F2;
    color: #111111;
    font-size: 0.9rem;
    font-family: "Open Sans", sans-serif;
}

    footer a {
        color: #111111;
    }

        footer a:hover {
            color: #FCB040;
        }

    footer .footer-logo {
        text-align: center;
        max-width: 210px;
        height: auto;
    }

        footer .footer-logo:after {
            background: #CCCCCC;
            content: "";
            position: absolute;
            height: 48px;
            top: 10px;
            width: 1px;
            right: 28px;
        }


.footer-widget-area {
    padding: 80px 0 24px;
}

    .footer-widget-area .footer-widget {
        margin-bottom: 32px;
    }

        .footer-widget-area .footer-widget .footer-logo {
            margin-bottom: 15px;
        }

    .footer-widget-area .footer-widget-header h3 {
        position: relative;
        font-size: 20px;
        margin-bottom: 6px;
        padding-bottom: 12px;
        font-weight: 600;
        display: block;
        color: #FFFFFF;
    }

        .footer-widget-area .footer-widget-header h3 span {
            font-style: 400;
            color: #555555;
        }

    .footer-widget-area .textwidget {
        clear: both;
    }

    .footer-widget-area .fa-contact {
        display: inline-block;
        text-align: center;
        width: 36px;
        height: 36px;
        line-height: 38px;
        font-size: 14px;
        background: #FCB040;
        color: #FFFFFF;
        margin-right: 6px;
        text-align: center;
        margin-top: 8px;
        position: absolute;
        -webkit-border-radius: 4px;
        -moz-border-radius: 4px;
        border-radius: 4px;
        -webkit-background-clip: padding-box;
        -moz-background-clip: padding;
        background-clip: padding-box;
    }

        .footer-widget-area .fa-contact + p {
            padding-left: 48px;
        }

    .footer-widget-area .footer-widget + .footer-widget {
        margin-top: 24px;
    }

    .footer-widget-area li {
        line-height: 32px;
    }

.footer-widget-area-bg {
    clear: both;
}

.footer-contents {
    padding: 32px 0;
}

    .footer-contents .copyright-text {
        line-height: 24px;
    }

ul.footer-link {
    margin-top: 10px;
    clear: both;
    float: right;
}

    ul.footer-link li {
        display: inline-block;
        position: relative;
        margin-right: 24px;
    }

        ul.footer-link li:after {
            content: '';
            position: absolute;
            width: 6px;
            height: 6px;
            background: #FCB040;
            top: 13px;
            right: -16px;
        }

        ul.footer-link li:last-child {
            margin-right: 0px;
        }

            ul.footer-link li:last-child:after {
                display: none;
            }

@media only screen and (max-width: 767px) {

    footer .footer-logo {
        text-align: center;
        max-width: 190px;
        height: auto;
    }
}


.text-dark-color {
    color: #111111 !important;
}

    .text-dark-color a {
        color: #111111 !important;
    }

        .text-dark-color a:hover {
            color: #FCB040 !important;
        }

ul.custom-bullet-list {
    list-style-type: none;
    margin-bottom: 16px;
}

    ul.custom-bullet-list li {
        padding-left: 26px;
        line-height: 32px;
        position: relative;
    }

        ul.custom-bullet-list li:before {
            position: absolute;
            content: '';
            display: inline-block;
            width: 8px;
            height: 8px;
            /*background: transparent;*/
            background: #FCB040;
            border: 1px solid #FCB040;
            margin: 0 11px 0 0;
            position: absolute;
            top: 12px;
            left: 6px;
            /* -webkit-border-radius: 100%;
        -moz-border-radius: 100%;
        border-radius: 100%;*/
            -webkit-background-clip: padding-box;
            -moz-background-clip: padding;
            background-clip: padding-box;
        }

.border-top-1-dark {
    border-top: 2px solid #dddddd;
}

/***************************************************
    END-FOOTER - siamel public style
***************************************************/

.text-bold{
    font-weight:bold !important;
}

/*CONTAINER FRM PUBLICOS*/
.container-public {
    width: 100%;
    padding-top: 130px !important;
    max-width: 1200px;
    margin: 0 auto;
    background-color: white;
}

    .container-public .texto-aviso {
        font-size: 1rem;
        line-height: 1.1rem;
        text-align: justify;
    }

@media (max-width: 993px) {
    .container-public {
        padding-top: 10px !important;
    }
}




ul.list1 {
    margin: 0;
    list-style-type: circle;
    padding-left: 20px;
}


/*ul.list1 li {
        display: block;
        list-style-type: circle;
        padding-left: 20px;
    }*/


.texto-icono {
    font-size: 1rem;
    display: block;
}

.table.table-radio {
    font-size: .85rem;
}

    .table.table-radio th, .table.table-radio td {
        padding: .2rem;
        vertical-align: top;
        border-top: 0px none;
    }

@media (max-width: 768px) {
    .table {
        font-size: .7rem;
    }

    .table-responsive {
        padding: 0px;
    }

    .table th, .table td {
        padding: .4rem;
        vertical-align: top;
        border-top: 1px solid #eee
    }

    .table.table-radio {
        font-size: .8rem;
    }

        .table.table-radio th, .table.table-radio td {
            padding: .2rem;
            vertical-align: top;
            border-top: 0px none;
        }



    .labelPaginado {
        font-size: 0.75rem !important;
    }
}


@media (max-width: 515px) {
    .table {
        font-size: .55rem;
    }

    .table-responsive {
        padding: 0px;
    }

    .table th, .table td {
        padding: .4rem;
        vertical-align: top;
        border-top: 1px solid #eee;
    }

    .table.max-width100 {
        max-width: 80px !important;
    }

    .table.max-width150 {
        max-width: 100px !important;
    }

    .table.max-width200 {
        max-width: 100px !important;
    }

    .table.max-width250 {
        max-width: 100px !important;
    }

    .table.max-width300 {
        max-width: 100px !important;
    }

    .table.max-width350 {
        max-width: 100px !important;
    }

    .table.max-width400 {
        max-width: 100px !important;
    }

    .table.table-radio {
        font-size: .7rem;
    }

        .table.table-radio th, .table.table-radio td {
            padding: .2rem;
            vertical-align: top;
            border-top: 0px none;
        }

    /*.table.table-radio td:nth-child(3) {
        }*/

    .texto-icono {
        display: none;
    }

    h6 {
        font-size: 0.9rem !important;
        line-height: 1rem !important;
    }

    .labelPaginado {
        font-size: 0.75rem !important;
    }

    .cestel-faux-input {
        display: flex;
        align-items: center;
        min-height: calc(1.5em + 1rem + 2px);
        padding: 0.5rem 0.5rem;
        border: 1px solid #ced4da;
    }
}




/********************************************************
    USADO EN LAS FASES FRMALTA 
*********************************************************/
.submenu-alta {
    padding: 0;
    margin: 0;
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
}

    .submenu-alta li {
        display: flex;
        align-items: center;
        margin-top: 8px;
        margin-left: 10px;
        cursor: pointer;
    }

.submenu-alta2 {
    padding: 0;
    margin: 0;
    list-style: none;
    flex-wrap: wrap;
}

    .submenu-alta2 li {
        display: flex;
        margin-top: 0px;
        margin-left: 0px;
        cursor: pointer;
    }


@media (max-width: 515px) {
    .submenu-alta {
        padding: 0;
        margin: 0;
        list-style: none;
        display: block;
        flex-wrap: wrap;
        align-items: flex-end;
    }
}


.busca-chip-group {
    width: 400px !important;
    display: flex;
}

input[type=text].busca-chip {
    width: 200px !important;
    height: calc(1.5em + 1rem + 2px);
    padding: .5rem .875rem;
    font-size: 1.1rem;
    font-weight: 400;
    line-height: 1.4;
    color: #6d6d6d;
}

.busca-chip-group input[type="text"].aspNetDisabled {
    width: 200px !important;
    height: calc(1.5em + 1rem + 2px);
    padding: .5rem .875rem;
    font-size: 1.1rem;
    font-weight: 400;
    line-height: 1.4;
    color: #6d6d6d;
}



@media(max-width:450px) {

    .busca-chip-group {
        width: 280px !important;
        display: flex;
    }

        .busca-chip-group .input-group-append {
            min-width: 40px;
        }

            .busca-chip-group .input-group-prepend .btn,
            .busca-chip-group .input-group-append .btn {
                position: relative;
                z-index: 2;
                min-width: 40px;
                padding: 0.3rem 0.4rem;
            }

    input[type=text].busca-chip {
        width: 150px !important;
        height: 40px;
        padding: .2rem .6rem;
        font-size: 1rem;
        font-weight: 400;
        line-height: 1.2;
        color: #6d6d6d;
    }

    .busca-chip-group input[type="text"].aspNetDisabled {
        width: 150px !important;
        height: 40px;
        padding: .2rem .6rem;
        font-size: 1rem;
        font-weight: 400;
        line-height: 1.2;
        color: #6d6d6d;
    }
}



@media(max-width:320px) {

    .busca-chip-group {
        width: 250px !important;
        display: flex;
    }

        .busca-chip-group .input-group-append {
            min-width: 40px;
        }

            .busca-chip-group .input-group-prepend .btn,
            .busca-chip-group .input-group-append .btn {
                position: relative;
                z-index: 2;
                min-width: 40px;
                padding: 0.2rem;
            }

    input[type=text].busca-chip {
        width: 130px !important;
        height: 40px;
        padding: .2rem .4rem;
        font-size: 0.9rem;
        font-weight: 400;
        line-height: 1rem;
        color: #6d6d6d;
    }

    .busca-chip-group input[type="text"].aspNetDisabled {
        width: 130px !important;
        height: 40px;
        padding: .2rem .4rem;
        font-size: 0.9rem;
        font-weight: 400;
        line-height: 1rem;
        color: #6d6d6d;
    }
}

