.main{
    height: 100%;
}
.atixeLogo{
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding-left: 2em;
    text-align: center;
    height: 4em;
    border-bottom: 1px solid #d0d0d0;
}
.mainLogos{
    display:flex;
    align-items: center;
    justify-content:center;
    text-align:center;
    background: #d0d0d0;
    height: 6em;
    border-bottom: 1px dotted #ffffff
}

.links{
    display:flex;
    align-items: flex-start;
    justify-content:center;
    height: calc(100% - 20em);
    background: #d0d0d0;
    background: linear-gradient(180deg, #d0d0d0 0%, #ffffff 80%);
    padding-top: 1em;
}

.link{
    border: 2px solid transparent;
    border-radius: 0.5em;
    display: block;
    width: 20%;
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    margin: 1%;
    color: #000000;
    text-decoration: none;
    background: #f8f8f8;
}
.link.disabled{
    cursor:not-allowed;
    opacity: 0.6;
}
.link:not(.disabled):hover{
    border: 2px solid #5269e9;
    background: #ffffff;
}
.link > div{
    padding:1em;
}

.link .name{
    border-bottom: 1px solid #d0d0d0;
    /* width: 100%; */
    text-align: center;
    font-weight: bold;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    font-size: 1.25em;
    padding: 0.5em;
}
.link .logos{
    display: flex;
    align-items:center;
    height: 2em;
    background: #ffffff;
}
.link .logos img{
    display: flex;
    max-height: 100%;
    max-width: 100%;
    margin: 0 auto;
}

.summary > div{
    display: block;
}
.summary > div span{
    display: block;
}
.summary .title{
    width: 100%;
    text-align: center;
}
.summary .value{
    text-align:center;
    font-weight: bold;
}
@media screen and (min-width: 900px){
    .summary > div{
        display: flex;
    }
    .summary .title{
        width: 50%;
        display: flex;
    }  
    .summary .value{
        width: 50%;
        display: flex;
        
    }
    .summary .title:after{
        /* content:"    :"; */
    }
}


.link .summary{
    padding:0;
}

.link .summary > div{
    padding: 0.5em 1em;
}

.link .summary .total{
    background: #00000010;
}
.link .summary .surface{
    background: #00ff0010;
}
.link .summary .underground{
    background: #ff800010;
    border-radius: 0 0 0.5em 0.5em;
}
.link .summary .alert .value{
    color:#008000;
    font-weight: normal;
}