#productIconBig {
  width: 300px;
  height: 300px;
  border-radius: 500px;
  margin: auto;
  background-image: url("../images/user-default.png");
  background-position: center;
  background-size: 100% auto;
  background-repeat: no-repeat;
  box-shadow: 0px 4px 40px rgba(0, 0, 0, 0.3); }

.DeviceListContainer {
  width: 100%;
  
  height: auto;
  text-align: center;
  padding: 5%;
  -webkit-box-sizing: border-box;
  /* Safari/Chrome, other WebKit */
  -moz-box-sizing: border-box;
  /* Firefox, other Gecko */
  box-sizing: border-box;
  /* Opera/IE 8+ */ }
  .DeviceListContainer h3 {
    margin-bottom: 5px; }
  .DeviceListContainer .filterPanel h1 {
    margin-bottom: 20px; }
  .DeviceListContainer .DeviceListItem:hover {
    box-shadow: 0px 4px 40px rgba(0, 0, 0, 0.8); }
  .DeviceListContainer .DeviceListItem {
    display: inline-block;
    width: 280px;
    height: 400px;
    margin: 20px;
    background-color: white;
    box-shadow: 0px 4px 40px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    position: relative; }
    .DeviceListContainer .DeviceListItem a {
      color: black;
      text-decoration: none; }
      .DeviceListContainer .DeviceListItem a .DeviceText {
        padding: 0% 10% 0% 10%;
        height: 40%; }
    .DeviceListContainer .DeviceListItem .deviceListImage {
      height: 60%;
      background-color: black;
      background-size: auto 100%;
      background-position: center;
      background-repeat: no-repeat; }
    .DeviceListContainer .DeviceListItem .fadeout {
      position: absolute;
      left: 0;
      bottom: 0;
      width: 100%;
      height: 50px;
      background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0), white 75%); }
    .DeviceListContainer .DeviceListItem h2 {
      margin-bottom: 5px;
      font-size: 1.8em; }
    .DeviceListContainer .DeviceListItem p {
      margin-top: 5px;
      margin-bottom: 5px; }
