@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300&display=swap');

.app-download-libelle{
  width: 100%;
  display:none;
  background: #efefef;
  padding: 8px 16px 8px 0px;
  justify-content: space-between;
  align-items: center;
  position: relative;
  z-index: 1;
}

.app-download-libelle.slowHide{
  overflow: hidden;
  height: 0px;
  transition: all 0.5s linear;
  padding: 0px;
}

.app-download-libelle.showApp{
  display:flex;
}

.app-download-libelle .button-close {
    padding: 16px 16px;
    cursor: pointer;
    color: #393939;
    font-size: 14px;
    font-family: Roboto, Helvetica, sans-serif;
}

.app-download-libelle .app-item{
  display:flex;
}

.app-download-libelle .info-block{
  display:flex;
  align-items:center;
}

.app-download-libelle .image{
 margin-right:8px;
 max-width:48px; 
}

.app-download-libelle .image img{
 width:100%;
}

.app-download-libelle .text-info{
  font-family:Roboto, Helvetica, sans-serif;
  max-width:100px;
  font-size:14px;
  color:#000;
  font-weight:300;
  line-height: 16px;
  min-width: 125px;
}

.app-download-libelle .text-info .second-text{
  font-weight:bold;
}

.download-button{
  font-size:12px;
  background:#0082C3;
  color:#fff;
  text-decoration:none;
  padding:8px;
  border-radius:4px;
  font-family:Roboto-Condensed, Helvetica, sans-serif;
  font-weight:bold;
}

@media(min-width:1180px){
  
  .app-download-libelle{
    display:none !important;
  }
}