* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: 'Lora', serif;
}

body {
    background-color: #eee;
    font-size: 20px;
}

.header {   
    width: 100%;
    height: 100px;
    background-image: linear-gradient(150deg, #000 10%, #438BFF 100%);
    display: flex;
    justify-content: right;
    align-items: center;
}

.div-grid {
    display: grid;
    margin: 15px;
    text-align: center;
}

.div-flex {
    display: flex;
    text-align: center;
    margin: 15px;
}

.container {
    width: 100%;
    height: 100%;
    position: absolute;
    background-color: #000;
    justify-content: center;
    align-items: center;
    display: grid;
}

.row-index {
    width: 80%;
    height: 80%;
    margin: 10%;
    padding: 5%;
    position: absolute;
    background-color: #ffffff;
    display: block grid;
}

.col-index-1 {
    width: 100%;
    height: 30%;
    text-align: center;
}

.col-index-2 {
    width: 100%;
    height: 60%;
    display: grid;
    text-align: center;
}

.col-index-3 {
    width: 100%;
    height: 10%;
    text-align: center;
}

.input-text {
    width: 90%;
    height: 40px;
    margin-left: 5%;
    outline: none;
    padding-left: 5px;
    border-color: #000 5px;
    border-radius: 15px;
}

.input-form {
    width: 120px;
    height: 40px;
    margin: 5px;
    outline: none;
    padding: 3px;
    border-color: #000 5px;
    border-radius: 15px;
}

.button {
    width: 80%;
    height: 40px;
    margin-left: 10%;
    border: solid 2px #438BFF;
    border-radius: 10px;
    background-color: #438BFF;
    color: #fff;
    outline-color: none;
    transition: all 0.3s ease-out;
}

.button:hover {
    background-color: #333;
}

form {
    width: 100%;
    height: 100%;
    position: relative;
}

.label-index {
    font-size: 12px;
}

.div-opcion {
    width: 50%;
    height: 120px;
    display: grid;
    background-color: #fff;
    color: #333;
    border: solid 2px;
    border-color:#333;
    border-radius: 5px;
    margin: 5px;
    padding: 3px;
    transition: all 0.3s ease-out;
    align-items: center;
    justify-content: center;
}

.div-opcion:hover {
    background-color: #333;
    border-color: #fff;
    color: #fff;
}

.img-menu {
    width: 50px;
    height: 50px;
}

.img-exit {
    width: 50px;
    height: 50px;
    margin-right: 20px;
    transition: all 0.3s ease;
}

.img-exit:hover {
    width: 55px;
    height: 55px;
    margin-right: 18px;
    box-shadow: 5px 5px 5px #438BFF;
}

.input-clientes {
    width: 100%;
    height: 40px;
    margin-top: 10px;
    margin-bottom: 10px;
    outline: none;
    padding-left: 10px;
    border: 1px solid #000;
    border-radius: 15px;
    box-shadow: 5px 10px 5px #BEBEBE;
}

.form-clientes {
    background-color: #eee;
    display: grid;
    justify-content: center;
}

.large-clientes {
    width: 120px;
}

.div-clientes {
    width: 100%;
    height: 40px;
    display: flex;
    justify-content: space-between;
    padding-top: 15px;
}

.input-textarea {
    resize: vertical;
    height: 70px;
    padding-top: 6px;
}

.div-busqueda {
    width: 100%;
    height: 180px;
    margin-top: 20px;
    overflow: auto;
    text-align: center;
    background: #fff;
}

.div-res {
    background-color: #fff;
    width: 100%;
    height: 60px;
    padding-top: 20px;
    font-size: 16px;
    transition: all 0.3s ease-out;
}

.div-res:hover {
    background-color: #BEBEBE;
}

.img-cargando {
    width: 50px;
    height: 50px;
}

.a-res {
    color: #000;
    text-decoration: none;
    transition: all 0.3s ease-out;
}

.a-res:hover {
    color: #438BFF;
}

.label-estado {
    width: 100%;
    height: 30px;
    background: #fff;
    border-radius: 15px;
}

.div-historial {
    background: #000;
    width: 100%;
    height: 400px;
    padding: 5px;
}

.container-historial {
    width: 100%;
    height: 200px;
    background: #438BFF;
}