/* Include the padding and border in an element's total width and height */
  #box-recomendados {
      box-sizing: border-box;
    }

  #box-recomendados .titulo-recomendados{
    font-size:20px;
  }
  
  /* Remove margins and padding from the list */
  #box-recomendados ul {
    margin: 0;
    padding: 0;
  }
  
  /* Style the list items */
  #box-recomendados ul li {
    cursor: pointer;
    position: relative;
    padding: 12px 8px 12px 40px;
    background: #eee;
    font-size: 18px;
    transition: 0.2s;
  
    /* make the list items unselectable */
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
  }
  
  /* Set all odd list items to a different color (zebra-stripes) */
  #box-recomendados ul li:nth-child(odd) {
    background: #f9f9f9;
  }
  
  /* Darker background-color on hover */
  #box-recomendados ul li:hover {
    background: #e7e5e5;
  }
  
  /* When clicked on, add a background color and strike out text */
  #box-recomendados ul li.checked {
    background: #888;
    color: #fff;
    text-decoration: line-through;
  }
  
  /* Add a "checked" mark when clicked on */
  #box-recomendados ul li.checked::before {
    content: '';
    position: absolute;
    border-color: #fff;
    border-style: solid;
    border-width: 0 2px 2px 0;
    top: 10px;
    left: 16px;
    transform: rotate(45deg);
    height: 15px;
    width: 7px;
  }
  
  /* Style the close button */
  #box-recomendados .close {
    position: absolute;
    right: 0;
    top: 0;
    padding: 12px 16px 12px 16px;
  }
  
  #box-recomendados .close:hover {
    background-color: #f44336;
    color: white;
  }
  
  /* Style the header */
  #box-recomendados .header {
    color: 1c1c1c;
    text-align: left;
  }
  
  /* Clear floats after the header */
  #box-recomendados .header:after {
    content: "";
    display: table;
    clear: both;
  }
  
  /* Style the input */
  #box-recomendados #sugestao, #box-recomendados #link-sugestao{
    margin: 0;
    margin-left: 20px;
    background-color: #ddd;
    border-radius: 0;
    width: 85%;
    padding: 10px;
    float: left;
    font-size: 16px;
  }



  #box-recomendados button{
     margin-left: 20px;
     color: #fff;
    background-color: #007bff;
    border-color: #007bff;
    font-size:15px; 
  }

  #box-recomendados form{
    background-color: #ddd;
 }

 #box-recomendados .recomendados{
  font-size: 11px;
  color: white;
  padding: 2px 5px;
  border-radius: 10px;
}

#box-recomendados .recomendados.genero{
  background-color: green;
}

#box-recomendados .recomendados.classificacao{
  background-color: rgb(20, 13, 112);
}
