* {
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
}

.topreporte {
    background: white;
    padding-left: 50px;
    padding-right: 50px;
    padding-top: 10px;
    padding-bottom: 30px;
    width: 100%;
    box-sizing: border-box;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    position: relative;
    /*border-bottom: 5px solid rgb(39, 52, 139);*/
}

.topreporte::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 7px;
    /* Altura del "borde" */
    background: linear-gradient(to right, rgb(39, 52, 139), rgb(58, 170, 53));
}

.title {
    color: black;
}

.titulolista {
    width: 100%;
    text-align: center;
    font-size: 3rem;

}

#entries>div {
    width: 100%;
    display: flex;
    border: 1px solid rgb(58, 170, 53);
    border-radius: 20px;
    justify-content: space-between;
    align-items: center;
    padding-top: 10px;
    padding-bottom: 10px;
    padding: 20px;
    box-sizing: border-box;

    box-shadow: 10px 10px 9px -5px rgba(110, 110, 110, 0.75);
    -webkit-box-shadow: 10px 10px 9px -5px rgba(110, 110, 110, 0.75);
    -moz-box-shadow: 10px 10px 9px -5px rgba(110, 110, 110, 0.75);


    margin-bottom: 25px;

}

.fechapendientes {
    width: 20%;

}

.textopendientes {
    width: 100%;
    margin-bottom: 20px;
    min-height: 60px;
}

.textopendientes>p {
    width: 100%;
    height: auto;
}

#resueltos>div>.textopendientes {
    width: 80%;
}

#resueltos{
    display: flex;
    flex-direction: column-reverse;
}

.botonresolver {
    width: 15%;
    height: 50px;
    border-radius: 20px;
    border: 0px;
    background: rgb(39, 52, 139);
    color: white;
}

#resueltos>div {
    width: 100%;
    display: flex;
    box-sizing: border-box;

    border: 1px solid rgb(58, 170, 53);
    border-radius: 20px;
    justify-content: space-between;
    align-items: center;
    padding-top: 10px;
    padding-bottom: 10px;
    padding: 20px;
    box-sizing: border-box;

    box-shadow: 10px 10px 9px -5px rgba(110, 110, 110, 0.75);
    -webkit-box-shadow: 10px 10px 9px -5px rgba(110, 110, 110, 0.75);
    -moz-box-shadow: 10px 10px 9px -5px rgba(110, 110, 110, 0.75);

    margin-bottom: 25px;
}

.title {
    width: 100%;
}

#myForm {
    width: 100%;
    display: flex;
    justify-content: flex-end;
    flex-wrap: wrap;
}

#text {
    width: 100%;
    height: 200px;
    border-radius: 20px;
    box-sizing: border-box;
    padding: 10px;
    margin-bottom: 10px;
    resize: none;
}

#subirreporte {
    width: 10%;
    height: 50px;
    border-radius: 20px;
    border: 1px solid black;
    background-color: white;
}

.pendiente {
    width: 100%;
    display: flex;
    flex-wrap: wrap;

}

.inputTexto {
    width: 65%;
    border-radius: 20px;
    border: none;
    box-sizing: border-box;
    padding: 10px;
}

.miSelect {
    width: 15%;
    border-radius: 20px;
    border: none;
    box-sizing: border-box;
    padding: 10px;
}

.miFormulario {
    width: 100%;
    display: flex;
    justify-content: space-between;
    border: 3px solid rgb(58, 170, 53);

    border-radius: 20px;
    padding: 10px;
}




.notaclase{
    border-top: 3px solid rgb(58, 170, 53);
    width: 100%;
    padding-top: 20px;
}

.notaatendio{
    margin-bottom: 10px;
}


#loader{
    width: 100vw;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    background: white;
}



.lds-dual-ring,
.lds-dual-ring:after {
  box-sizing: border-box;
}
.lds-dual-ring {
  display: inline-block;
  width: 80px;
  height: 80px;
}
.lds-dual-ring:after {
  content: " ";
  display: block;
  width: 64px;
  height: 64px;
  margin: 8px;
  border-radius: 50%;
  border: 6.4px solid currentColor;
  border-color: currentColor transparent currentColor transparent;
  animation: lds-dual-ring 1.2s linear infinite;
}
@keyframes lds-dual-ring {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

