
/*
    Cuerpo
*/

.ViewsGrid {
    display: grid;
    width: 100%;
    grid-template-rows: repeat(6, 1fr);
    height: 100%;
}

/*
    Fila media
*/

.FrameChanger {
    width: 40%;
    height: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.NavButton {
    color: black;
    background-color: white;
    border: 1px solid white;
    height: 20%;
    width: 25%;
    font-weight: bold;
    text-align: center;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.NavButton input{
    cursor: pointer;
    width: 100%;
    color: white;
    font-size: 16pt;
    background-color: transparent;
    border: 1px solid white;
    font-weight: lighter;
}
.NavButton2 {
     color: white;
     border: 1px solid white;
     height: 20%;
     width: 25%;
     font-weight: lighter;
     text-align: center;
     text-decoration: none;
     display: flex;
     flex-direction: column;
     justify-content: center;
 }

.NavButton2 input{
    cursor: pointer;
    width: 100%;
    color: white;
    font-size: 16pt;
    background-color: transparent;
    border: 1px solid white;
    font-weight: lighter;
}
.NavButton2:hover{
    font-weight: bold;
    transition: font-weight 0.1s;
}

/*
    Fila inferior
*/
.update-origen-content {
    height: 100%;
    grid-row-start: 2;
    grid-row-end: 3;
    display: flex;
    flex-direction: column;
    margin-left: 5%;
    margin-right: 5%;
}

.update-origen-content tr {
    border: 10px solid #1c4990;
}
/*Formulario*/
.ViewerForm {
    display: grid;
    grid-template-rows: 1fr 2fr 1fr 2fr 2fr;
    grid-template-columns: 1fr 2fr;
    row-gap: 10%;
    column-gap: 30%;
    margin-top: 5%;
    height: 100%;
}
.ViewerForm label {
    color: white;
    padding-bottom: 10px;
    font-weight: 300;
    font-size: 14pt;
    display: inline;
}
.ViewerForm select{
    height: 100%;
}
.ViewerData-1 {
    display: flex;
    flex-direction: column;
    grid-row: 1;
    grid-column: 1;
}
.ViewerData-2 {
    display: flex;
    flex-direction: column;
    grid-row: 2;
    grid-column: 1;
}

.ViewerData-3 {
    display: flex;
    flex-direction: column;
    grid-row: 3;
    grid-column: 1;
}
.ViewerData-4 {
    display: flex;
    flex-direction: column;
    grid-row: 4;
    grid-column: 1;
}
.ViewerData-4 input{
    height: 100%;
}
.ViewerData-4 input:focus{
    outline: none;
}
.ViewerData-5 {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    grid-row-start: 2;
    grid-row-end: 5;
    grid-column: 2;
}
.ViewerData-5 label{
    font-size: 30pt;
}
.ConsultButton {
    grid-row: 5;
    grid-column: 1;
    color: white;
    border: none;
    height: 40px;
    display: flex;
    align-self: center;
    margin: 0 10% 0 10% ;
}

.ConsultButton input{
    cursor: pointer;
    width: 100%;
    color: white;
    font-size: 14pt;
    background-color: transparent;
    border: none;
    font-weight: 400;

}
.ConsultButton input:hover{
    font-weight: bold;
    transition: font-weight 0.1s;
}

.ItinerarioBody{
    display: flex;
    grid-row-start: 4;
    grid-row-end: 7;
    height: 100%;
    flex-direction: column;
    margin-left: 5%;
    margin-right: 5%;
}
.ItinerarioTable {
    background-color: transparent;
    width: 100%;
    border-spacing: 0;
}
.ItinerarioTable th,td{
    width: 50%;
    text-align: center;
    color: white;
    background-color: #0a0a0a;
}
.ItinerarioTable caption{
    font-weight: 500;
    font-size: 14pt;
    color: white;
    text-align: center;
    background-color: transparent;
}
.ItinerarioData-5 {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: start;
    grid-row-start: 1;
    grid-row-end: 6;
    grid-column: 2;
}
.AvailablesTable {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: start;
    grid-row-start: 2;
    grid-row-end: 3;
}
@media (max-width: 500px) {
    .ItinerarioData-5{
        grid-row-start: 7 ;
        grid-row-end: 8;
        grid-column: unset;
    }
    .FrameChanger{
        width: 100%;
    }
}
