/* TOP MENU */
#topmenu {
    line-height: 1.4rem;
    background: var(--green);
    
}

@media screen and (max-width: 355px) {
    #topmenu .float-left,
    #topmenu .float-right {
        float: none;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
    }
}


#topmenu #facebookLogo {
    font-size: 1.4rem;
}

#topmenu a {
    color: var(--white) !important;
    font-weight: 400;
}

#topmenu span {
    color: var(--white) !important;
}

#topmenu nav > .nav-link:not(:first-child)::before {
    content: "|";
    margin-right: 2rem;
    color: rgba(var(--lightgreen), .5) !important;
}

#topmenu nav div:nth-of-type(2) a::before {
    content: "|";
    margin-right: 1.5rem;
    color: rgba(var(--lightgreen), .5) !important;
}

@media screen and (max-width: 576px) {
    #topmenu .nav-link {
        padding-left: .2rem;
        padding-right: .2rem;
    }

    #topmenu nav > .nav-link:not(:first-child)::before {
        margin-right: .4rem;
    }
}

.legend {
    background: var(--greenLight);
    width: 30px;
    border:1px solid rgb(149, 148, 148);    
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    text-align: right;
    justify-content: center;
  }

  .legend-empty{
    background:white;
    width: 30px;
    border:1px solid rgb(149, 148, 148);    
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    text-align: right;
    justify-content: center;
  }

  .legend-skip{
    background:var(--gris);
    width: 30px;
    border:1px solid rgb(149, 148, 148);    
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    text-align: right;
    justify-content: center;
    color: white;
  }
  .legend-total{
    background:var(--green);
    width: 30px;
    border:1px solid rgb(149, 148, 148);    
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    text-align: right;
    justify-content: center;
    color: white;
  }


