/* Para a Borda não ser ocultada em cima e na esquerda na barra pesquisa */
fieldset.scheduler-border-nav {
    border: 1px groove #00BFFF !important;
    padding: 0 0.3em 0.1em 0.5em !important;
    margin: 0 0 -0.7em 0 !important;
    /* -0.7 deixa sem espaço no final*/
    -webkit-box-shadow: 0px 0px 0px 0px #000;
    box-shadow: 0px 0px 0px 0px #000;
    border-radius: 5px;
    border-width: 2px !important;
    /* border-top-width: 2px !important; */
}

fieldset.scheduler-border {
    border: 1.1px groove #00BFFF !important;
    padding: 0 0.3em 0.1em 0.5em !important;
    margin: 0 0 -0.7em 0 !important;
    /* -0.7 deixa sem espaço no final*/
    -webkit-box-shadow: 0px 0px 0px 0px #000;
    box-shadow: 0px 0px 0px 0px #000;
    border-radius: 5px;
}

fieldset > legend {
    font-size: 1em !important;
    font-family: "century schoolbook";
    font-weight: bold !important;
    text-align: left !important;
    width: auto;
    padding: 0 10px;
    border-bottom: none;
}


/*Simular o Disabled original mas que não dê problema no django*/

/****  Deve ser incluido a Classe disabledX e readonly
           Para que tenha o Efeito desejado
           Para remover os Atrubutos $('#idinput').removeAttr('disabledX readonly')
           para add os 2 atrubutos   $('#idinput').attr({'disabledX': '', 'readonly': ''})
*/

*[disabledX] {
    background-color: #e9ecef !important;
    pointer-events: none !important;
    opacity: 0.9 !important;
}

input[disabledX]::-webkit-outer-spin-button, input[disabledX]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Firefox */

input[disabledX][type=number] {
    -moz-appearance: textfield;
}