
#title {
  text-align: center;
  font-family: "linux libertine","Times New Roman",Times,serif;
  color: rgba(0,0,0,0.6);
  text-shadow: 0.2px 0.8px #fff;
}

#products {
  margin: 10px auto 2em auto;
  padding: 0 1em;
  max-width: 800px;
}
#products p {
  padding: 0 6px;
  font-family: "source sans pro",arial,sans-serif;
  font-size: 85%;
}

.prd-img {
  display: block;
  max-width: 100%;
  height: auto;
}

.prd-box {
  margin: 6px;
  background-color: white;
  overflow: hidden;
  border-width: 2px;
  border-top-style: solid;
  border-bottom-style: solid;
  border-color: white;
  border-radius: 3px;
  box-shadow: 0 3px 8px -3px rgba(0,0,0,0.4);
  box-shadow: 0 2px 3px rgba(0,0,0,0.4);
}

.prd-box:hover {
  border-color: #ce1126;
  box-shadow: 0 3px 6px rgba(0,0,0,0.6);
}

.prd-img {
  margin: 0 auto;
}

.prd-nfo {
  padding: 2px 2px 3px 2px;
  font-family: "source sans pro",arial,sans-serif;
  font-size: 85%;
  line-height: 1.1em;
  text-align: center;
  background-color: #fff;
  color: black;
  border-width: 1px;
  border-top-style: solid;
  border-color: #ce1126;
}

.prd-type {
  margin: 6px 0;
  padding: 5px 12px;
  background-color: rgba(128,128,128,0.1);
  color: rgba(0,0,0,0.6);
  font-size: 85%;
  font-weight: 700;
  text-shadow: 0.2px 0.8px #fff;
  border-width: 1px;
  border-bottom-style: solid;
  border-color: white;
  border-radius: 16px;
  box-shadow: inset 0 6px 10px rgba(128,128,128,0.3);
  #background-color:#ce1126;#text-shadow: 0.2px 0.8px #ce1126;
}

@media (max-width:480px) {
  .prd-type {
    text-align: center;
  }
}

.prd-sub-type {
  margin: 6px 6px 0 6px;
  font-size: 73%;
  font-weight: 700;
  border-width: 1px;
  border-bottom-style: solid;
  border-color: #ccc;
}

.prd-styp-text {
  display: inline-block;
  padding: 0 12px 0 6px;
  background-color: #ce1126;
  color: white;
  border-radius: 3px 20px 0 0;
}

.prd-hr {
  margin: 6px 6px;
  background-color: white;
  height: 3px;
  border: 0 none;
  padding: 0;
  border-radius: 6px;
  box-shadow: 0 1.2px 2px 0px rgba(0,0,0,0.2);
}

.prd-type:target {
  animation:redflash 1s ease 1;
  -webkit-animation:redflash 1s ease 1;
}
.prd-box:target .prd-nfo {
  animation:redflash2 1s ease 1;
  -webkit-animation:redflash2 1s ease 1;
}

@keyframes redflash {
  from,to {background-color: rgba(128,128,128,0.1);color:rgba(0,0,0,0.6);}
  10% {background-color:rgba(206,17,38,0.6);text-shadow: 0.2px 0.8px rgba(206,17,38,0);color:black;}
}
@-webkit-keyframes redflash {
  from,to {background-color: rgba(128,128,128,0.1);color:rgba(0,0,0,0.6);}
  10% {background-color:rgba(206,17,38,0.6);text-shadow: 0.2px 0.8px rgba(206,17,38,0);color:black;}
}

@keyframes redflash2 {
  from,to {background-color:white;color:black;}
  10% {background-color:rgba(206,17,38,0.6);color:black;}
}
@-webkit-keyframes redflash2 {
  from,to {background-color:white;color:black;}
  10% {background-color:rgba(206,17,38,0.6);color:black;}
}

.prd-styp-text:target {
  animation:jiggle 0.2s linear 10;
  -webkit-animation:jiggle 0.2s linear 10;
}
@keyframes jiggle {
  from,to {padding-left:6px;}
  50% {padding-left:9px;}
}
@-webkit-keyframes jiggle {
  from,to {padding-left:6px;}
  50% {padding-left:9px;}
}
