body{
    margin: 0px;
    padding: 0px;
    width: 100%;
    height: 100%;
    background-color: #E3C382
}
h1 {
    text-align: center;
}
.login, .mini_modal{
    background-color: white;
    padding: 8px;
    border-radius: 8px;
    width: 400px;
    margin: 0 auto;
}
.error{
    color: red;
    font-size: 16px;
}
li {
    padding: 6px;
    background-color: chocolate;
    font-size: 30px;
    width: 500px;
    margin: 12px auto;
    cursor: pointer;
    border-radius: 6px;
    text-align: center;
    display: flex;    
    flex-wrap: wrap;
    justify-content: space-between;
}
li:hover{
    background-color: rgb(211, 128, 69);
}
li i {
    background-color: aqua;
    padding: 6px;
    cursor: pointer;
    border-radius: 6px;
}

/*FORM styles*/
.form_class{
    background-color: white;
    padding: 8px;
    border-radius: 8px;
}
.form-inline{
    /*display: flex;
    flex-grow: inherit;*/
}
.form-group{
    float: left;
}   
#anio, #caja, #num_inventario,
#asunto, #causa, #actor,
#demandado, #lugar, #imagenes,
#anio1, #anio2{
    /*float: left;*/
    width: 100px !important;
}
.form-inline label {
    line-height: 54px;
    display: inline-block;
    width: auto;
}
.form-inline label.text_big{
    width: auto;
}
.form-group{
    margin-right: 8px;
}
.btn {
    height: 30px;
    border-radius: 4px;
}
.add_record{
    position: fixed;
    bottom: 50px;
    right: 50px;
    border-radius: 30px;
    width: 60px;
    height: 60px;
    font-size: 50px;
    background-color: aqua;
    color: black;
    text-align: center;
    line-height: 50px;
    font-weight: bolder;
    cursor: pointer;
}
.modal{
    position: fixed;
    top: 2.5%;
    left: 2.5%;
    width: 95%;
    height: 95%;
    max-height: 95%;
    margin: 0px;
    padding: 10px;
    border-radius: 8px;
    background-color: white;
    border: solid 4px black;
    display: block;
}
.table-sortable {
    background-color: white;
    margin-top: 16px;
    border-radius: 4px;
}
table {
    width: 100%;
    min-width: 1000px;
}
.field_edit{
    display: flex;
}
.field_edit:nth-child(even){
    background-color: beige;
}
.label_edit{
    width: 150px;
}
.add_modal, .save_modal,  .view_modal{
    display: none;
}
.close_modal{
    border-radius: 15px;
    width: 30px;
    height: 30px;
    line-height: 20px;
    font-size: 20px;
    font-weight: bolder;
    text-align: center;
    position: absolute;
    right: 10px;
    top: 10px;
    cursor: pointer;
    background-color: aquamarine;
}
.field_wrap > label  {
    display: flex;
}
.field_wrap > label > div {
    padding: 10px;
    width: 200px;
    font-size: 24px;
    text-align: right;
}
::placeholder {
    color: rgb(75, 75, 75);
    opacity: 1; /* Firefox */
    padding: 5px 10px;
}
input, textarea{
    background-color: rgb(202, 202, 202) !important;
    color: black;
    padding: 5px 10px;
}
.ext_item:hover{
    background: white;
}
.clicable{
    cursor: pointer;
}
.ext_item{
    display: flex;
    justify-content: space-between;
}
.ext_item > div {
    background-color: rgb(141, 177, 177);
    margin: 2px;
    padding: 3px;
}
.gs-table-container{
    overflow: auto;
}
.gs-table-body tr:nth-child(even){
    background-color: beige;
}
.loading {
    background-color: white;
    width: 200px;
    height: 200px;
    margin: 0 auto;
    position: fixed;
    border-radius: 20px;
    text-align: center;
    top: calc(50% - 100px);
    left: calc(50% - 100px);
    padding-top: 25px;
    border: 2px solid rgb(78, 30, 3);
    display: none;
}
.loading_externos {
    display: none;

}
.loading_externos img{
    margin-left: calc(50% - 75px);
}