/*body{
  background-color: #F0F0F0;
  font-family: "sans-serif", Arial, Helvetica;
  color: #666;
  margin: 0;
}*/
.color{
    background-color: #C7E1EA;
}

.oculta {
  display: none;
}

#contenedor{
  margin: 20px auto 20px;
  max-width: 1200px;
  padding: 0 15px;

  -webkit-box-sizing: border-box;
     -moz-box-sizing: border-box;
          box-sizing: border-box;
}
.products{
  width: 20%;
  float: left;
  
  overflow: hidden;
  padding: 0 5px 20px;
  -webkit-box-sizing: border-box;
     -moz-box-sizing: border-box;
          box-sizing: border-box;

  transition: opacity 0.5s ease-out;
  opacity: 1;
}

.oculto {
  opacity: 0;
}

.items{
  width: 100%;
  float: left;
  
  background-color: #fff;
  overflow: hidden;
  box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2),
              -2px -2px 4px rgba(255, 255, 255, 0.2),
              -2px -2px 4px rgba(0, 0, 0, 0.2);
  -webkit-border-radius: 3px;
     -moz-border-radius: 3px;
          border-radius: 3px;
  /*-webkit-box-shadow: 0 1px 2px rgba(0,0,0,0.07);
     -moz-box-shadow: 0 1px 2px rgba(0,0,0,0.07);
          box-shadow: 0 1px 2px rgba(0,0,0,0.07);*/
}
.items img{
  width: 100%;
  max-width: 100%;
}
.item-details{
  width: 100%;
  overflow: hidden;
  padding: 5px 10px;
  -webkit-box-sizing: border-box;
     -moz-box-sizing: border-box;
          box-sizing: border-box;
}
  .item-name{
    width: 100%;
    float: left;
    margin-bottom: 5px;
  }
    .item-name h3{
      margin: 5px 0 0;
    }
    .item-name p{
      margin: 5px 0;
      font-size: 12px;
    }
    .item-name h3 a{
      color: #666;
      text-decoration: none;
    }
    .item-name h3 a:hover{
      text-decoration: underline;
    }
  .item-price,
  .tocart{
    width: 50%;
    float: left;
  }
    .item-price h4{
      margin: 5px 0;
    }
  .tocart{
    text-align: center;
  }
    .tocart a{
      display: block;
      padding: 5px;
      background-color: #3498db;
      text-decoration: none;
      font-size: 15px;
      color: #FFF;
      -webkit-border-radius: 3px;
         -moz-border-radius: 3px;
              border-radius: 3px;
      -webkit-transition: background-color 0.3s ease 0s;
         -moz-transition: background-color 0.3s ease 0s;
          -ms-transition: background-color 0.3s ease 0s;
           -o-transition: background-color 0.3s ease 0s;
              transition: background-color 0.3s ease 0s;
    }
    .tocart a:hover{
      background-color: #2980b9;
    }
  .item-extra{
    width: 100%;
    float: left;
    border-top: 1px solid #EEE;
  }
    .item-extra div{
      width: 50%;
      float: left;
      text-align: center;
    }
    .item-extra a{
      padding: 7px 5px;
      font-size: 11px;
      color: #666;
      text-decoration: none;
      display: block;
      -webkit-transition: all 0.3s ease 0s;
         -moz-transition: all 0.3s ease 0s;
          -ms-transition: all 0.3s ease 0s;
           -o-transition: all 0.3s ease 0s;
              transition: all 0.3s ease 0s;
    }
    .item-extra a:hover{
      background-color: #666;
      color: #FFF;
    }

@media (max-width: 768px) {
  .products{
    width: 33.3333%;
  }
}
@media (max-width: 480px) {
  .products{
    width: 100%;
  }
}