@font-face {
    font-family: "Quicksand-Regular";
    src: url(Quicksand-Regular.ttf);
}
/*Propiedades Genericas o clases*/

* {
    margin: 0px;
    padding: 0px;
    font-size: 18px;
    text-decoration: none;
    list-style-type: none;
}
/* Body */

body {
    margin: 0px;
    padding: 0px;
    background-color: #fff;
    font-style: normal;
}
/*Clases para texto*/

/*Texto pequeño*/

.text_small {
    text-decoration: none;
    display: block;
    font-size: 14px;
}
/*Texto normal*/

.text_normal {
    text-decoration: none;
    display: block;
    font-size: 17px;
}
/*Texto grande*/

.text_big {
    text-decoration: none;
    display: block;
    font-size: 20px;
}
/*Texto extra grande*/

.text_xbig {
    text-decoration: none;
    display: block;
    font-size: 24px;
}
/*Texto enorme*/

.text_large {
    text-decoration: none;
    display: block;
    font-size: 30px;
}
/*Texto muy enorme*/

.text_xlarge {
    text-decoration: none;
    display: block;
    font-size: 50px;
}
/*Texto negrilla*/

.text_bold {
    font-weight: bold;
}
/*Alineaciones de texto*/

.text_left {
    text-align: left;
}
.text_center {
    text-align: center;
}
.text_right {
    text-align: right;
}
.text_justify {
    text-align: justify;
}
/*Texto con link*/

.text_link:hover {
    color: #374A8E;
    transition: 0.4s;
    cursor: pointer;
}
.text_link2 {
    color: #fff;
}
.text_link2:hover {
    color: #374A8E;
    transition: 0.4s;
    cursor: pointer;
}
/*Colores del texto*/

.text_color1 {
    color: #fff;
}
.text_color2 {
    color: #374A8E;
}
@font-face {
    src: url(LemonMilklightitalic.otf);
    font-family: "Lemon/Milk";
}
.fuente1 {
    src: url(LemonMilklightitalic.otf);
    font-family: "Lemon/Milk";
    font-weight: normal;
}
@font-face {
    src: url(OpenSans-Regular.ttf);
    font-family: "open sans";
}
.fuente2 {
    src: url(OpenSans-Regular.ttf);
    font-family: "open sans";
    font-weight: normal;
}
@font-face {
    src: url(Signika-Regular.ttf);
    font-family: "Signika";
}
.fuente3 {
    src: url(Signika-Regular.ttf);
    font-family: "Signika";
    font-weight: normal;
}
/*Botones*/

.buttom_create {
    /*Boton azul*/
    font-size: 16px;
    border-radius: 5px;
    color: #fff;
    font-weight: bold;
    background-color: #03A9F4;
    padding: 9px;
}
.buttom_create:hover {
    background-color: #0277BD;
    color: #fff;
    transition: 0.5s;
}
.buttom_edit {
    /*Boton verde*/
    font-size: 16px;
    border-radius: 5px;
    color: #fff;
    font-weight: bold;
    background-color: #4CAF50;
    padding: 9px;
}
.buttom_edit:hover {
    background-color: #388E3C;
    color: #fff;
    transition: 0.5s;
}
.buttom_delete {
    /*Boton rojo*/
    font-size: 16px;
    border-radius: 5px;
    color: #fff;
    font-weight: bold;
    background-color: #FF5722;
    padding: 9px;
}
.buttom_delete:hover {
    background-color: #D84315;
    color: #fff;
    transition: 0.5s;
}
.buttom_asig {
    /*Boton naranja*/
    font-size: 16px;
    border-radius: 5px;
    color: #fff;
    font-weight: bold;
    background-color: #FF9800;
    padding: 9px;
}
.buttom_asig:hover {
    background-color: #EF6C00;
    color: #fff;
    transition: 0.5s;
}
.buttom_page {
    font-size: 16px;
    border-radius: 5px;
    color: #4C4C4C;
    font-weight: bold;
    background-color: #fff;
    border-radius: 50px;
    margin: 5px;
    padding: 9px;
    padding-left: 16px;
    padding-right: 16px;
    border: solid 1px #E0E0E0;
}
.buttom_page:hover {
    background-color: #E0E0E0;
    color: #4C4C4C;
    transition: 0.5s;
}
/* Propiedades de las tablas */

table {
    margin: auto;
    background-color: white;
    text-align: left;
    border-collapse: collapse;
    width: 910px;
    left: 0%;
}
th, td {
    padding: 10px;
    border-right: solid 1px #F5F5F5;
}
thead {
    background-color: #298CBA;
    border-bottom: solid 1px #fff;
    color: white;
    text-align: center;
}
tr:nth-child(even) {
    background-color: #E0E0E0;
}
tr:hover td {
    background-color: #4DD0E1;
    color: white;
}
select {
    height: 47px;
    width: 529px;
    font-size: 17px;
    text-align: center;
    color: #757575;
    font-weight: bold;
    border-radius: 4px;
    background-color: #fff;
    border: 1px solid #c4c4c4c4;
    overflow: hidden;
    src: url(OpenSans-Regular.ttf);
    font-family: "open sans";
    font-weight: normal;
}