/******************************
Flexbox Layout
*******************************/

.header, .navi, .sea-creature-container, .genus-details, .notes-container, .footer {
    display:-webkit-flex;
    display: flex;
}

.header {
    justify-content: space-between;
}

.navi {
    flex: 1;
    justify-content: flex-end;
}

.main-content {
    min-height: 300px;
}

.sea-creature-container {
    flex-direction: column;
    -webkit-align-items: center;
    align-items: center;
    -webkit-justify-content: center;
    justify-content: center;
}

.notes-container {
    justify-content: space-between;
    border-top: 1px solid #ECF0F1;
}

.footer {
    justify-content: center;
}

@media all and (min-width: 700px) {
    .sea-creature-container {
        flex-direction: row;
        -webkit-align-items: center;
        align-items: center;
        -webkit-justify-content: center;
        justify-content: center;
        margin: 30px;
    }
}

/******************************
Top Nav General Styling
*******************************/

body {
    margin: 0;
    color: #3a3a3a;
}

.search-bar {
    height: 50px;
    width: 100%;
    display: none;
}

.sea-search > input {
    width: 100%;
    padding: 10px 20px;
    font-size: 22px;
}

.search-input {
    border: none;
    margin: 0;
}

.header {
    padding: 10px 0;
    margin: 0 auto;
    /*background-color: #81B9BA;
    background: rgb(250, 142, 115);
    background: rgb(22, 44, 173);*/
    /*background: #dcf580;
    background: rgb(207, 11, 21);
    background: #0066CC;
    background-image: url("../../images/barra-encabezado.png");*/
    background: #940808;
}

.logo-icon {
    height: 11%;
    width: auto;
    margin-top: -5px;
    margin-left: 4%;
    position: absolute;
    /*margin-left: 10px;*/
}

.navi {
    list-style: none;
}

.navi {
    padding-top: 25px;
}

.navi li a {
    text-decoration: none;
    color: #3a3a3a;
    font-size: 12px;
    text-transform: uppercase;
    margin-right: 10px;
}

.navi li a:hover {
    color: #000;
}

.navi > li > a:focus, .nav > li > a:hover {
    background-color: transparent;
}

.navi li:last-child a {
    background: #eee;
    border-radius: 2px;
    transition: 200ms ease-in-out;
    padding: 8px 16px 7px;
}

.navi li:last-child a:hover {
    background: rgba(200, 200, 200, .5);
    color: #000;
}

.genus-name {
    margin-top: 30px;
    margin-bottom: 30px;
    text-align: center;
}

@media all and (min-width: 1030px) {
    .header {
        min-width: 768px;
    }

    .sea-creature-container {
        justify-content: flex-start;
    }

    .genus-name {
        text-align: left;
        margin-left: 60px;
    }

}

/******************************
BODY Styling
*******************************/
.genus-photo {
    width: 200px;
    height: 200px;
    border: 1px solid #000;
    background: url('../images/octopus-rubescens.jpg');
    border-radius: 50%;
    margin-bottom: 30px;
}

.genus-details-list, .notes-header {
    padding-left: 20px;
}

.genus-details-list > dt {
    text-transform: uppercase;
    padding-top: 10px;
}

.plus-btn {
    color: #fff;
    border: 1px solid #7A942E;
    border-radius: 50%;
    padding: 5px 7px;
    background-color: #8DB255;
    margin-right: 10px;
    margin-top: 20px;
}

.plus-btn:hover {
    background-color: #5B8930;
}

.cd-container {
    /* this class is used to give a max-width to the element it is applied to, and center it horizontally when it reaches that max-width */
    width: 90%;
    max-width: 768px;
    margin: 0 auto;
}

.cd-container::after {
    /* clearfix */
    content: '';
    display: table;
    clear: both;
}

/* --------------------------------

Main components

-------------------------------- */
#cd-timeline {
    position: relative;
    padding: 2em 0;
    margin-top: 2em;
    margin-bottom: 2em;
    margin-left: 10px;
}

#cd-timeline::before {
    /* this is the vertical line */
    content: '';
    position: absolute;
    top: 0;
    left: 18px;
    height: 100%;
    width: 4px;
    background: #d7e4ed;
}

@media only screen and (min-width: 768px) {
    #cd-timeline {
        margin-top: 3em;
        margin-bottom: 3em;
    }

    #cd-timeline::before {
        left: 50%;
        margin-left: -2px;
    }

    .notes-container {
        justify-content: center;
        border-top: 1px solid #ECF0F1;
    }

    .notes-header {
        padding-right: 30px;
    }

    .plus-btn {
        margin-top: 25px;
    }
}

.cd-timeline-block {
    position: relative;
    margin: 2em 0;
}

.cd-timeline-block:after {
    content: "";
    display: table;
    clear: both;
}

.cd-timeline-block:first-child {
    margin-top: 0;
}

.cd-timeline-block:last-child {
    margin-bottom: 0;
}

@media only screen and (min-width: 768px) {
    .cd-timeline-block {
        margin: 4em 0;
    }

    .cd-timeline-block:first-child {
        margin-top: 0;
    }

    .cd-timeline-block:last-child {
        margin-bottom: 0;
    }
}

.cd-timeline-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    box-shadow: 0 0 0 4px white, inset 0 2px 0 rgba(0, 0, 0, 0.08), 0 3px 0 4px rgba(0, 0, 0, 0.05);
}

.cd-timeline-img img {
    display: block;
    width: 100%;
    height: auto;
    position: relative;
    left: 50%;
    top: 50%;
    margin-left: -20px;
    margin-top: -20px;
}

.cd-timeline-img.cd-picture {
    background: #75ce66;
}

.cd-timeline-img.cd-movie {
    background: #c03b44;
}

.cd-timeline-img.cd-location {
    background: #f0ca45;
}

@media only screen and (min-width: 768px) {
    .cd-timeline-img {
        width: 60px;
        height: 60px;
        left: 50%;
        margin-left: -30px;
        /* Force Hardware Acceleration in WebKit 
        -webkit-transform: translateZ(0);
        -webkit-backface-visibility: hidden;*/
    }

    .cd-timeline-img img {
        margin-left: -30px;
        margin-top: -30px;
    }

    .cssanimations .cd-timeline-img.is-hidden {
        visibility: hidden;
    }

    .cssanimations .cd-timeline-img.bounce-in {
        visibility: visible;
        -webkit-animation: cd-bounce-1 0.6s;
        -moz-animation: cd-bounce-1 0.6s;
        animation: cd-bounce-1 0.6s;
    }
}

@-webkit-keyframes cd-bounce-1 {
    0% {
        opacity: 0;
        -webkit-transform: scale(0.5);
    }

    60% {
        opacity: 1;
        -webkit-transform: scale(1.2);
    }

    100% {
        -webkit-transform: scale(1);
    }
}

@-moz-keyframes cd-bounce-1 {
    0% {
        opacity: 0;
        -moz-transform: scale(0.5);
    }

    60% {
        opacity: 1;
        -moz-transform: scale(1.2);
    }

    100% {
        -moz-transform: scale(1);
    }
}

@keyframes cd-bounce-1 {
    0% {
        opacity: 0;
        -webkit-transform: scale(0.5);
        -moz-transform: scale(0.5);
        -ms-transform: scale(0.5);
        -o-transform: scale(0.5);
        transform: scale(0.5);
    }

    60% {
        opacity: 1;
        -webkit-transform: scale(1.2);
        -moz-transform: scale(1.2);
        -ms-transform: scale(1.2);
        -o-transform: scale(1.2);
        transform: scale(1.2);
    }

    100% {
        -webkit-transform: scale(1);
        -moz-transform: scale(1);
        -ms-transform: scale(1);
        -o-transform: scale(1);
        transform: scale(1);
    }
}

.cd-timeline-content {
    position: relative;
    margin-left: 60px;
    margin-right: 10px;
    background: #eee;
    border-radius: 0.25em;
    padding: 1em;
    box-shadow: 0 3px 0 #d7e4ed;
}

.cd-timeline-content:after {
    content: "";
    display: table;
    clear: both;
}

.cd-timeline-content h2 {
    color: #303e49;
    margin-top: 10px;
}

.cd-timeline-content p {
    font-size: 13px;
}

.cd-timeline-content .cd-date {
    font-size: 13px;
    font-size: 0.8125rem;
}

.cd-timeline-content .cd-date {
    display: inline-block;
}

.cd-timeline-content p {
    margin: 1em 0;
    line-height: 1.6;
}

.cd-timeline-content .cd-date {
    float: left;
    padding: .8em 0;
    opacity: .7;
}

.cd-timeline-content::before {
    content: '';
    position: absolute;
    top: 16px;
    right: 100%;
    height: 0;
    width: 0;
    border: 7px solid transparent;
    border-right: 7px solid white;
}

@media only screen and (min-width: 768px) {
    .cd-timeline-content h2 {
        font-size: 25px;
        font-size: 2rem;
    }

    .cd-timeline-content .cd-date {
        font-size: 14px;
        font-size: 0.875rem;
    }
}

@media only screen and (min-width: 768px) {
    .cd-timeline-content {
        margin-left: 0;
        padding: 1.6em;
        width: 45%;
    }

    .cd-timeline-content::before {
        top: 24px;
        left: 100%;
        border-color: transparent;
        border-left-color: white;
    }

    .cd-timeline-content .cd-date {
        position: absolute;
        width: 100%;
        left: 122%;
        top: 6px;
        font-size: 16px;
        font-size: 1rem;
    }

    .cd-timeline-block:nth-child(even) .cd-timeline-content {
        float: right;
    }

    .cd-timeline-block:nth-child(even) .cd-timeline-content::before {
        top: 24px;
        left: auto;
        right: 100%;
        border-color: transparent;
        border-right-color: white;
    }

    .cd-timeline-block:nth-child(even) .cd-timeline-content .cd-date {
        left: auto;
        right: 122%;
        text-align: right;
    }

    .cssanimations .cd-timeline-content.is-hidden {
        visibility: hidden;
    }

    .cssanimations .cd-timeline-content.bounce-in {
        visibility: visible;
        -webkit-animation: cd-bounce-2 0.6s;
        -moz-animation: cd-bounce-2 0.6s;
        animation: cd-bounce-2 0.6s;
    }
}

@media only screen and (min-width: 768px) {
    /* inverse bounce effect on even content blocks */
    .cssanimations .cd-timeline-block:nth-child(even) .cd-timeline-content.bounce-in {
        -webkit-animation: cd-bounce-2-inverse 0.6s;
        -moz-animation: cd-bounce-2-inverse 0.6s;
        animation: cd-bounce-2-inverse 0.6s;
    }
}

@-webkit-keyframes cd-bounce-2 {
    0% {
        opacity: 0;
        -webkit-transform: translateX(-100px);
    }

    60% {
        opacity: 1;
        -webkit-transform: translateX(20px);
    }

    100% {
        -webkit-transform: translateX(0);
    }
}

@-moz-keyframes cd-bounce-2 {
    0% {
        opacity: 0;
        -moz-transform: translateX(-100px);
    }

    60% {
        opacity: 1;
        -moz-transform: translateX(20px);
    }

    100% {
        -moz-transform: translateX(0);
    }
}

@keyframes cd-bounce-2 {
    0% {
        opacity: 0;
        -webkit-transform: translateX(-100px);
        -moz-transform: translateX(-100px);
        -ms-transform: translateX(-100px);
        -o-transform: translateX(-100px);
        transform: translateX(-100px);
    }

    60% {
        opacity: 1;
        -webkit-transform: translateX(20px);
        -moz-transform: translateX(20px);
        -ms-transform: translateX(20px);
        -o-transform: translateX(20px);
        transform: translateX(20px);
    }

    100% {
        -webkit-transform: translateX(0);
        -moz-transform: translateX(0);
        -ms-transform: translateX(0);
        -o-transform: translateX(0);
        transform: translateX(0);
    }
}

@-webkit-keyframes cd-bounce-2-inverse {
    0% {
        opacity: 0;
        -webkit-transform: translateX(100px);
    }

    60% {
        opacity: 1;
        -webkit-transform: translateX(-20px);
    }

    100% {
        -webkit-transform: translateX(0);
    }
}

@-moz-keyframes cd-bounce-2-inverse {
    0% {
        opacity: 0;
        -moz-transform: translateX(100px);
    }

    60% {
        opacity: 1;
        -moz-transform: translateX(-20px);
    }

    100% {
        -moz-transform: translateX(0);
    }
}

@keyframes cd-bounce-2-inverse {
    0% {
        opacity: 0;
        -webkit-transform: translateX(100px);
        -moz-transform: translateX(100px);
        -ms-transform: translateX(100px);
        -o-transform: translateX(100px);
        transform: translateX(100px);
    }

    60% {
        opacity: 1;
        -webkit-transform: translateX(-20px);
        -moz-transform: translateX(-20px);
        -ms-transform: translateX(-20px);
        -o-transform: translateX(-20px);
        transform: translateX(-20px);
    }

    100% {
        -webkit-transform: translateX(0);
        -moz-transform: translateX(0);
        -ms-transform: translateX(0);
        -o-transform: translateX(0);
        transform: translateX(0);
    }
}

/******************************
FOOTER Styling
*******************************/

.footer {
    padding: 15px;
    /*background: #E9D4B7;*/
    background: #940808;
    font-size: 1.3em;
    margin-top: 40px;
}

.footer-text {
    /*color: #3a3a3a;*/
    color: white;
}

.footer-text > a {
    /*color: #3a3a3a;*/
    color: white;
}

.heart {
    /*color: red;*/
    color: rgb(129, 190, 255);
}


/******************************
ICONS
*******************************/

.icon-container
{      
    border-style: ridge;  
    border-color: white;
    vertical-align: middle;
    text-align: center; 
    width: 95px; 
    height: 110px; 
    padding: 2px 2px 2px 2px; 
    float: left; 
    margin: 10px 10px 10px 25px;  
}
.icon-container:hover
{
    border-style: ridge;
    background-color: #1F456E;
    /*border-style: dashed;*/
}

.container-menu-text
{       
    border-style: dashed;
    border-color: white;
    vertical-align: middle;
    width: 220px; 
    height: 110px; 
    padding: 40px 2px 2px 2px; 
    float: left; 
    margin: 10px 10px 10px 25px;  
}

.container-menu-text:hover
{
    border-style: dashed;
}

.container-menu-text p{
    font-family: arial;
    font-size: 15px;
    line-height: 125%;
    color: #6B6E6F;
}

.container-menu-text a{
    
    color: #91101d;
    text-decoration: underline;
    font-weight: bold;
    font-size: 18px;
    
}

.container-menu-text a:hover{
    /*color: #19B9E1;*/
    color: #91101d;
}

.form {
    padding: 20px 5px 20px 30px;
    width: 600px;
    text-transform: uppercase;
    
}

.red {
    color: red;
    font-weight: bold;
    padding-left: 5px;
}

.green
{
    color: green;
}

.blue
{
    color: blue;
}

.message{
    font-weight: bold;
    margin: 10px 0px opx 10px;
}

.logo {
    float: right;
    border: 1px solid #000;
    border-radius: 50%;
}

.actions a{
    list-style: none;
    text-decoration: none;
    color: #3a3a3a;
    font-size: 14px;
    text-transform: capitalize;
    text-align: center;
}

.actions a:hover{
    color: #000;    
}

/* CLASE PARA LA TABLA DE ADMISSION */
.admission table td{
    width: 300px;
    /*color: #6B6E6F;*/
}

.admission table b{
    text-decoration-line: underline;
    text-transform: uppercase;
}

.col{
    height: 85px; 
    width: 270px;
}
.col3{
    height: 65px; 
    width: 270px;
    float: right;
    padding-right: 25px;
}

/* CLASE PARA LA TABLA DE PROFILE DE ESTUDIANTE */
.registroEstudiantes table {
    border: 5px groove rgb(185, 183, 183);
    font-size: 13px;
    width: 100%;
}

.registroEstudiantes table th{    
    height: 40px;
    text-align: center;
    border: 3px groovergb(185, 183, 183);
    font-weight: bold;
}

.registroEstudiantes table tr{
    height: 35px;
    border: 3px groove rgb(185, 183, 183);
}

.registroEstudiantes table td{
    border: 3px groove rgb(185, 183, 183);
    padding: 4px;
}

/*PUPUP*/
#formPopup1, #formPopup2 {
    visibility: hidden;
    opacity: 0;
    margin-top: -300px;
    margin-bottom: 100%;
 }
#formPopup1:target, #formPopup2:target {   
    visibility:visible;
    opacity: 1;
    background-color: rgba(0,0,0,0.8);
    position: fixed;
    top:0;
    left:0;
    right:0;
    bottom:0;
    margin:0;    
    z-index: 999;
    transition:all 1s;
    /*width: 450px;
    height: 300px;
    padding-top: 20px;
    color: #ECF0F1;*/
 }
 .popup-contenedor {
    position: relative;
    margin:0.1% 18% 0 18%;
    padding:3% 0% 3% 3.5%;
    background-color: #fafafa;
    color:#333;
    border-radius: 15px;
    width:64%;
 }
a.popup-cerrar {
    position: absolute;
    top:3px;
    right:3px;
    background-color: #333;
    padding:7px 10px;
    font-size: 20px;
    text-decoration: none;
    line-height: 1;
    color:#fff;
    vertical-align: middle;
    border-radius: 15px;
 }

 .tablePagos {
    width: 100%;
 }
 
 .thTablePagos{
      border: 2px solid #a5d4ef;
      height: 35px;
      color: #91101d;
      padding-left: 10px;
 }
 
 .trTablePagos{
      border: 10px solid #a5d4ef;
      height: 35px;
 }
 
 .trEspacioTablePagos{
      border: 10px solid #a5d4ef;
      background-color: #a5d4ef;
      height: 15px;
 }
 
 .tdTablePagos {
    border: 2px solid #a5d4ef;
    padding-left: 10px;
     padding-right: 10px;
 }

 .iconosGrandes
{ 
    width: 70%; 
    height: 70%;     
}

.container-menu-icons
{       
    border-style: dashed;
    border-color: white;
    vertical-align: middle;
    width: 135px; 
    height: 135px; 
    padding: 2px 2px 2px 2px; 
    float: left;
    margin: 20px 20px 30px 20px;
    text-align: center;
}


.container-menu-icons:hover
{
    /*border-style: dashed;
    border-style: ridge;*/
    width: 135px;
    background-color: rgb(189, 189, 226);
}

.container-menu-icons a
{
    font-family: arial;
    font-size: 15px;
    line-height: 125%;
    color: #6B6E6F;
}

.container-menu-icons p{
    
    color: #91101d;
    text-decoration: underline;
    font-weight: bold;
    font-size: 18px;
    text-align: center;
    
}


/******************************
Menu properties
*******************************/

/**** General styles ****/

nav ul{
    list-style: none;
    padding: 0;
}

nav li{
    line-height: 3.3rem; /*Declaro la altura de los li en general*/
    position: relative;/*Le ponemos en relative porque es el que contiene los submenus*/
    z-index: 1;
    /*
    border-right-style: solid;
    border-width: .1rem;*/
}

nav li ul{
    position: absolute;/*El position absolute hace que se salga de la maquetacion que lo contiene*/
    
}
nav a{
    /*color: rgb(13, 84, 216); /*Color de texto de los li*/
    color: rgb(250, 250, 250);
    display: block; /*Porque quiero que ocupe todo el alto*/
    padding: 0 .8em;/*Le doy padding derecho e izquierdo alto no porque lo hace el line-height*/
    text-decoration: none;
    transition: .4s;
}

nav a:hover{
    /*background: rgb(107, 174, 175);
    background: #990211;*/
    /*background: #690707;*/

    /*background: #e60f0f;*/
    background:#1F456E;

    color: rgb(250, 250, 250);
    text-decoration: none;
    border-radius: 8px;
}

/*nav li ul{
    display: none;
}

nav li:hover > ul{
    display: block;
}*/

/**** First level style ****/
nav > ul{
    /*background: #81B9BA;/*Color de fondo de menu
    background:  rgb(207, 11, 21);*/
    background: #940808;
    /*overflow: hidden;*/
    display: table; /*Es mejor que el overflow*/
    width: 100%;
}

nav > ul > li{
    float: left;
}

/**** Second level style ****/
nav li li{
    /*background: #81B9BA;*/
    background: #940808;
    max-height: 0;/*Que su altura maxima sea 0 para que no despliegue hacia abajo*/
    overflow: hidden;/* Oculto por completo despues del segundo nivel*/
    transition: all .4s;
    border-radius: 8px;
    width: 251px;
}

nav li:hover > ul > li{
    max-height: 500px;
    overflow: visible;
    
}

nav > ul > li > ul{
    top: 102%;    
}

/**** Tercer level style ****/
nav ul ul ul{
    /*right: 100.4%;*/
    left: 100.5%;
    top: 0;
}
 