.loading-overlay{
    position: fixed;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background: rgba(255,255,255,0.8);
    z-index:9999;

    display:flex;
    justify-content:center;
    align-items:center;
}
.btn-info {
    color: black;
    background-color: #E7BE1D/*#7BAE3D*//*#5bc0de*/;
    border-color: goldenrod /*#6A9D2C*/ /*#46b8da*/;
    font-size: large;
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus,
.btn-info:active,
.btn-info.active,
.open > .dropdown-toggle.btn-info {
    color: #fff;
    background-color: maroon/*#0a0*/ /*#31b0d5*/;
        border-color: maroon /*#269abc*/;
}

.ui-datepicker-month
{
    color: black;
}

.ui-datepicker-year
{
    color: black;
}
.ui-dialog {
    border-radius: 0px;
}
.ui-dialog,.ui-widget, .ui-widget-content, .ui-corner-all, .foo, .ui-draggable, .ui-resizable, .ui-resizable-handle, .ui-resizable-n
{
    background-color: #E7BE1D !important; 
    border-color: #E7BE1D !important
}
.ui-dialog-buttonpane{
    background-color: #E7BE1D;
}
.ui-dialog-titlebar {
    border-radius: 0px;
    display: none;
    background-color: #E7BE1D;
}
.ui-dialog.ui-widget-content { background: #E7BE1D; }

h1 { text-transform: uppercase; font-weight: bolder; }

input, select, textarea, .intl-tel-input
{
    margin-top: 10px;
}

.well
{
    background-color: white;
    border: none;
    border-radius: 0px;
    -webkit-box-shadow: none;
    box-shadow: none;
}


.modalContainer {
    display: none;
    position: fixed;
    z-index: 1;
    padding-top: 100px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgb(0,0,0);
    background-color: rgba(0,0,0,0.4);
}

.modalContainer .modal-content {
    background-color: #fefefe;
    margin: auto;
    padding: 20px;
    border: 1px solid lightgray;
    border-top: 10px solid #E7BE1D;
    width: 50%;
}

.modalContainer .close {
    color: #aaaaaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
}

.modalContainer .close:hover,
.modalContainer .close:focus {
    color: #000;
    text-decoration: none;
    cursor: pointer;
}

/* estilos para la barra de estado */
/* STEP BAR */

.stepper-wrapper{
display:flex;
justify-content:space-between;
align-items:flex-start;
position:relative;
margin:40px 0;
}

.step-track {
    position: absolute;
    top: 15px;
    height: 4px;
    background: #dcdcdc;
    z-index: 0;
    transition: all .35s ease;
}

/* .stepper-wrapper::before{
content:"";
position:absolute;
top:15px;
left:0;
width:100%;
height:4px;
background:#dcdcdc;
z-index:0;
} */

.step-progress{
position:absolute;
top:15px;
left:0;
height:4px;
background:#E7BE1D;
z-index:1;
width:0;
transition:all .35s ease;
}

.step-item{
position:relative;
display:flex;
flex-direction:column;
align-items:center;
flex:1;
z-index:2;
text-align:center;
}

.step-counter{
width:30px;
height:30px;
border-radius:50%;
background:#6c757d;
color:white;
display:flex;
align-items:center;
justify-content:center;
font-size:14px;
font-weight:bold;
}

.step-item.completed .step-counter{
background:#E7BE1D;
}

.step-item.active .step-counter{
background:maroon;
}

.step-name{
font-size:12px;
margin-top:8px;
height:32px;
display:flex;
align-items:flex-start;
justify-content:center;
}

/* móvil */

@media (max-width:768px){

.step-name{
display:none;

}

}

/* estilos globales para las aplicaciones */
.form-control:focus{
    border-color: rgb(63, 61, 61);
    box-shadow: 0 0 0 0.1rem rgb(148, 67, 67);
}
.form-select:focus{
    border-color: rgb(63, 61, 61);
    box-shadow: 0 0 0 0.1rem rgb(148, 67, 67);
}

/* estilos para la aplicacion 4 */
/* estilos para la aplicacion 4 */

.accordion-button{

    border:1px solid #dee2e6;

}

/* estado abierto */
.accordion-button:not(.collapsed){

    background-color:rgb(148, 67, 67);
    color:white;
    border-color:rgb(148, 67, 67);

}

/* flecha blanca cuando está abierto */
.accordion-button:not(.collapsed)::after{

    filter: brightness(0) invert(1);

}

/* flecha negra cuando está cerrado */
.accordion-button.collapsed::after{

    filter: brightness(0);

}

.accordion-button:focus{

    box-shadow:none;

}