#PCCROSS {
    height: 10%;
    background: black;
}

#dossards {
   
    margin-left: 5px;
   
}

#lDossard {
    list-style-type: none;
}


#starter {
border-radius: 50%;
    width: 30px;
    height: 30px;
    background-color: green;
    position: absolute;
    top: 1.5%;
    right: 5%;
    
}

.dossardToAdd {
    border-radius: 3%;
    width: 100px;
    height: 50px;
    margin-left: 30px;
    background-color: orange;
    display: inline-block;
    text-align: center;
    color: black;
    font-size: 45px;
    font-weight:bold;
}




.refus{
   position:relative;
    display: inline-block;
    margin-left: 5px;
   font-size:.7em;
   background:red;
   color:white;
   width:18px;height:18px;
   text-align:center;
   line-height:18px;
   border-radius:50%;
}

#status_bar {
    height: 10%;
    border: 1px solid rgb(195, 195, 195);
    background: black;
}
#infos {
    overflow-y: auto;
    list-style-type: none;
    padding-left: 0;
}
#conteneur {
    position: absolute;
    top: 0px;
    left: 0px;
    right: 0;
    z-index: 15;
    width: 100%;
    height: 100%;
}
.browser {
    height: 80%;
    overflow-y: auto;
    background: #383836;
    border: 1px solid rgb(195, 195, 195);
    @media screen and (orientation: portrait){
        width: 100%;
    }
    @media screen and (orientation: landscape){
        width: 320px;
    }
    border-radius: 4px;
    -webkit-box-shadow: 0px 2px 3px 0px rgba(50, 50, 50, 0.11);
    -moz-box-shadow: 0px 2px 3px 0px rgba(50, 50, 50, 0.11);
    box-shadow: 0px 2px 3px 0px rgba(50, 50, 50, 0.11);
    text-align: left;
    vertical-align: top;
    margin: 0 0px;
    animation: zoom 500ms;
    -webkit-animation: zoom 500ms;
}

.uneMinute {
    color: white;
    font-weight: bold;
    padding-left: 5px;
    padding-top: 10px;
}
.rssi {
    color: white;
    font-weight: bold;
    padding-left: 5px;
    padding-top: 10px;
}
.items {
    height: 80px;
    animation: drop 500ms;
    -webkit-animation: drop 500ms;
    color: white;
    border-bottom: 1px solid #aaa;
}
.evenement {
    font-size: 23px;
    height: 80px;
    width: 33px;
    vertical-align: middle;
    text-align: center;
    
}
.time {
    padding-left: 3px;
}
.vitesse{
    padding-left: 3px;
}
.cavalier{
    font-weight: bold;
}
.tetiere {
    
    font-size: 30px;
    width: 55px;
    vertical-align: middle;
    text-align: center;
}
.cheval{
    font-style: italic;
    width:180px;
}
.identite {
    font-size: 15px;
    height: 80px;
    vertical-align: top;
    text-align: left;
    padding-left: 10px;
    font-weight: bold;
}
@-webkit-keyframes drop {
    0% {
        opacity: 0;
        -webkit-transform: translateY(-20px);
    }
    100% {
        opacity: 1;
        -webkit-transform: translateY(0px);
    }
}
@keyframes drop {
    0% {
        opacity: 0;
        transform: translateY(-20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0px);
    }
}