@charset "iso-8859-1";

@font-face {
    font-family: Roboto;
    src: url('../Fuentes/Roboto/Roboto-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;

}

@font-face {
    font-family: HelveticaCondensed;
    src: url('../Fuentes/Helvetica/HelveticaNeueLTStd-Roman.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

body {
    /*display: none;*/
}

html,body {
    margin: 0;
    padding: 0;
    font-family: HelveticaCondensed;
}

.columnLink {
    height: inherit;
    float: right;
    padding: 0;
    margin: 0;
    width: 50%;
    background-color: #9f2241;
    border-bottom-left-radius: 10px;
    display: table;
}

.columnLinkPortal {
    height: inherit;
    float: right;
    padding: 0;
    margin: 0;
    width: 50%;
    background-color: #0280B0;
    border-bottom-left-radius: 10px;
    display: table;
}

.columnLink2 {
    height: inherit;
    float: right;
    padding: 0;
    margin: 0;
    width: 50%;
    background-color: #9f2241;
    border-bottom-right-radius: 10px;
    display: table;
}

.columnLink3 {
    height: inherit;
    float: right;
    padding: 0;
    margin: 0;
    width: 39%;
    background-color: #bc955b;
    border-bottom-left-radius: 10px;
    display: table;
}

.columnLink3Portal {
    height: inherit;
    float: right;
    padding: 0;
    margin: 0;
    width: 40%;
    background-color: #9FCF5F;
    border-bottom-left-radius: 10px;
    display: table;
}

.columnLink4Portal {
    height: inherit;
    float: right;
    padding: 0;
    margin: 0;
    width: 60%;
    background-color: #9f2241;
    border-bottom-right-radius: 10px;
    display: table;        
}


.columnLink4 {
    height: inherit;
    float: right;
    padding: 0;
    margin: 0;
    width: 61%;
    background-color: #9f2241;
    border-bottom-right-radius: 10px;
    display: table;        
}

.contentLink {
    display: table-cell;
    vertical-align: middle;
    text-align: center;
}

a.white:link {
    color: #ffffff;
    text-decoration: none;
    font-size: 14px;
    display: block;
    line-height: 35px;
}

a.white:visited {
    color: #ffffff;
    text-decoration: none;
    font-size: 14px;
}

a.white:active {
    color: #ffffff;
    text-decoration: none;
    font-size: 14px;
}

a.white:hover {
    color: #ffffff;
    text-decoration: none;
    font-size: 14px;
}

.hvr-float-shadow{
    -webkit-transition-duration: 0.2s;
    transition-duration: 0.2s;
}

.hvr-float-shadow:hover, .hvr-float-shadow:focus, .hvr-float-shadow:active {
    -webkit-transform: translateY(-3px);
    transform: translateY(-3px);
}

@media only screen and (max-width: 400px){
    .columnLink3 {
        width: 28%;
    }

    .columnLink4 {
        width: 72%;
    }
}

@media only screen and (max-height: 30px){
    a.white:link {
        line-height: 30px;
        font-size: 13.5px;
    }
}

.tooltipContrasena{
    transition: .5s;
    width: 0;
    overflow: hidden;
    color: white;
    position: absolute;
    background: #9f2241;
    float: right;
    right: 50%;
    padding: 9px 0px;
    border-radius: 5px;
    display: flex;
    justify-content: center;
    opacity: 0;
    font-size: 14px;
}

.tooltipIniciarSesion{
    transition: .3s;
    width: 0;
    overflow: hidden;
    color: white;
    position: absolute;
    background: #9f2241;
    float: left;
    left: 50%;
    padding: 9px 0px;
    border-radius: 5px;
    display: flex;
    justify-content: center;
    opacity: 0;
    font-size: 14px;
}

.columnLink2:hover .tooltipContrasena {
    opacity: 1;
    width: 50%;
}

.columnLink:hover .tooltipIniciarSesion {
    opacity: 1;
    width: 50%;
}

@media only screen and (max-width: 1000px) and (max-height: 30px){
    .tooltipContrasena {
        display: none;
    }

    .tooltipIniciarSesion {
        display: none;
    }
}