.view {
   width: 95%;
   max-width: 220px;
   height: auto;
   display: inline-block;
   margin-bottom: 10px;
   margin-right: 2,5%;
   margin-left: 2,5%;
   border: 0px solid #CCC;
   overflow: hidden;
   position: relative;
   text-align: center;
   background-color: #FFF;
   cursor: default;
   box-shadow: 3px 3px 3px rgba(0, 0, 0, 0.3);
   border-radius: 20px;
}
.view .mask,.view .content {
   width: 100%;
   height: 100%;
   margin-left: 0px;
   padding-left: 0px;
   padding-right: 0px;
   position: absolute;
   overflow: hidden;
   top: 0;
   left: 0;
}
.view img {
   display: block;
   position: relative;
}
.view h2 {
   text-transform: uppercase;
   width: 90%;
   color: #fff;
   position: relative;
   font-size: 15px;
   font-weight: bold;
   margin: 0 0 0 0;
   line-height: 20px;
}
.view p {
   font-size: 14px;
   text-transform: none;
   font-weight: 100;
   position: relative;
   line-height:17px;
   color: #fff;
   text-align: center;
   padding-right: 10px;
   padding-left: 10px;
}
.view a.info {
   display: inline-block;
   text-decoration: none;
   padding: 2px 10px;
   background-color: #fff;
   color: #000;
   text-transform: none;
   font-size: 14px;
   width: 70%;
}
.view a.info:hover {
	background-color: #999;
	color: #FFF;
}

/* Tablet Layout: to 481px. Inherits styles from: Mobile Layout. */

@media only screen and (min-width: 481px) {
.view {
   width: 95%;
   max-width: 200px;
   height: auto;
   display: inline-block;
   margin-bottom: 5px;
   margin-right: 8px;
   margin-left: 0px;
   border: 0px solid #CCC;
   overflow: hidden;
   position: relative;
   text-align: center;
   background-color: #FFF;
   box-shadow: 3px 3px 3px rgba(0, 0, 0, 0.3);
   border-radius: 20px;
   cursor: default;
}
}
/* Desktop Layout extra: Inherits styles from: Mobile Layout and Tablet Layout. */
@media only screen and (min-width: 900px) {
}