.bandeau {
    display: flex;
    width: 99%;  
    height: 104px;
    border:none;
    background-color: transparent;
    
    overflow-x: scroll;
    overflow-y: hidden;
}


.bandeau >div {
    
    width:auto;
    min-width: 200px;
    max-width: 80%;
    height: auto;
    margin: 1px;
    flex: 0 0 auto;
    
    font-family: font1,Helvetica,Arial,sans-serif; 
  }

.cartouche {
    display: flex;
    flex-direction: column;
    justify-content: flex-start; 
    align-items: flex-start;
    position: relative;
    padding-left: 40px;
    border : 1px solid #86C7AF;
    border-radius: 5px;
    padding-left: 10px;
    padding-right: 10px;
    padding-top: 2px;
    padding-bottom: 2px;
    margin: 3px;
    background-color: snow;
    
}
    
.cartouche:hover { background-color: floralwhite; }
  



.dateconcours {
    font-style: normal;
    color: rgb(221, 148, 12);
    font-size: 0.9rem;
    font-weight:normal;
}

.lieu {
    font-style: normal;
    color: rgb(32, 71, 5);
    font-size: 0.8rem;
    font-weight: bold;
    }

.event {
    display: block;
    white-space:nowrap;
    font-style: normal;
    color: rgb(105, 105, 105);
    font-size: 0.7rem;
    font-weight:normal;
    line-height: 1.05em;
    overflow: hidden;
    text-overflow: ellipsis;
    }
.cancelled {
    position: absolute;
    /* top: 50%; left: 50%; /* à 50%/50% du parent référent */
    right: 0px;
    top:25px;
    transform: rotate(25deg);
    
    overflow-y: hidden;
    overflow-x: hidden;
    bottom: 1px;
    right: 25px;
    width: 50px;
    height: fit-content;
    text-align: center;
    border: 1px solid red;
    background-color: rgb(255,0,0,0.7);
    box-shadow: 4px 4px 12px  rgb(5, 5, 5);
    padding: 1px;
    font-size: 0.7rem;
    font-family: font1,Helvetica,Arial,sans-serif; 
    font-weight: bold;
    
    
}

.lien{
    position: relative;
    border: 1px solid white;
    background-color: #86C7AF;
    
    border-radius: 20px;
    width: fit-content;
    height: fit-content;
    padding-left: 12px;
    padding-right: 12px;
    margin: 4px;
    font-size: 0.8rem;
    font-family: font1,Helvetica,Arial,sans-serif;
}

a {
    color: white;
}
@media  (any-pointer: coarse) {  
    /* Hide scrollbar for Chrome, Safari and Opera */
    .bandeau::-webkit-scrollbar {  display: none;}
      
   /* Hide scrollbar for IE, Edge and Firefox */
   
    .bandeau { -ms-overflow-style: none;}  /* IE and Edge */
    .bandeau { scrollbar-width: none;}  /* Firefox */
   
}