/**
 * Grid items animation
 */
#tiles li {
  -webkit-transition: all 0.3s ease-out;
     -moz-transition: all 0.3s ease-out;
       -o-transition: all 0.3s ease-out;
          transition: all 0.3s ease-out;
}

.wookmark-placeholder {
  -webkit-transition: all 0.3s ease-out;
     -moz-transition: all 0.3s ease-out;
       -o-transition: all 0.3s ease-out;
          transition: all 0.3s ease-out;
}

/**
 * Filters
 */
#filters {
  list-style-type: none;
  text-align: center;
  margin: 0px 0px 0px 0px;
}

#filters li {
  min-width: 150px;
  height: auto;
  font-size: 14px;
  float: left;
  padding: 6px 0 4px 0;
  cursor: pointer;
  -webkit-transition: all 0.15s ease-out;
     -moz-transition: all 0.15s ease-out;
       -o-transition: all 0.15s ease-out;
          transition: all 0.15s ease-out;
  padding-left: 5px;
  padding-right: 5px;
  background: #666;
  margin: 5px;
  color: #FFF;
}

#filters li:hover {
  background: #666;
  color: #FFF;
}

#filters li.active {
  background: #333333;
  color: #ffffff;
}

.btnDetalleBlog {
	min-width: auto;
	height: 17px;
	float: right;
	background-color: #CCC;
	margin-right: 0px;
	margin-top: 0px;
	padding-left: 5px;
	padding-right: 5px;
	background-color: #666;
	color: #FFF;
	font-size: 12px;
	transition:all 0.3s;
	cursor: pointer;
	text-align: center;
}

.btnDetalleBlog:hover {
	background-color: #333;
	color: #FFF;
}

@media screen and (max-width:440px) {
  #tiles li {
    width: 100%;
    margin: 0;
  }
}