#suggestion{
  width: 100%;
  height: calc(100% - 40px);
  display: flex;
  flex-flow: row wrap;
  gap: 11px;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 11px;
  margin: 0px;
  overflow-y: auto;
  background-color: rgb(248, 248,248);
  border-style: solid;
  border-radius: 11px;
  border-width: 0px;
  border-top-left-radius:0px ;
  border-top-right-radius: 0px;
}

.suggestion{
  width: 90%;
  min-height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-flow: row;
  gap: 11px;
  margin: 0px;
  padding: 5px;
  box-sizing: border-box;
  background-color: white;
  box-sizing: border-box;
  cursor: pointer;
  border-style: solid;
  border-radius: 11px;
  border-width: 0px;
  text-decoration: none;
}

.suggestionPhoto{
  width: 32px;
  height: 32px;
  margin: 0px;
  padding: 0px;
  border-style: solid;
  border-width: 0px;
  border-radius: 5px;
}


.suggestionTitle{
  width: calc(100% - 40px);
  min-height: 20px;
  overflow-wrap: break-word;
  font-size: 12px;
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 600;
  color: grey;
  padding: 5px;
  display: flex;
  flex-flow: row;
  justify-content: flex-start;
  align-items: center;
}

@media screen and (max-width:767px){
 .suggestionPhoto{
   width:64px;
   height:64px;
 }
 .suggestionTitle{
    font-size:16px;
 }

}
@media screen and (min-width:768px){
 .suggestionPhoto{
   width:84px;
   height:84px;
 } 
}
