/* wire grid stuff */
.grid-outer {
  width: auto;
  height: 600px;
  overflow: hidden;
   position: relative;

}

.grid-container {
  position: absolute;
  width: 100%;
  height: 100%;
  background: url("/dicks/photogrid.png");
  background-size: 650px;
  background-repeat: no-repeat;
  background-position: center top;
}

.grid-scrollable {
  position: relative; /* not absolute */
  z-index: 0;
  width: calc(100% - 35px);
  height: 291px;
  overflow: auto;
  padding: 10px;
  top: 105px;
  left: 50px;
  right: 50px;
}

.grid { 
  position: relative;
  min-height: 100%;
  min-width: 100%;
}

.photo {
  position: absolute;
  width: 100px;
  background: white;
  box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease-in-out;
  z-index: 2;
}

.photo img {
  display: block;
  width: 100px;
  filter: grayscale(85%) brightness(150%);
}

.photo::after {
  content: '';
  position: absolute;
  width: 40px;
  height: 60px;
  top: -45px;
  left: 30%;
  transform: translateX(-50%);
  background-image: url('/dicks/clip%202.png');
  background-size: contain;
  z-index: 3;
}

.photo:hover {
  transform: rotate(5deg) scale(1.05);
}

/* keychains */
.keychains {
  position: fixed;
}

.pushpin {
   position: absolute;
  width: 250px;
  top: 25px;
  left: 60px;
 z-index: 9999; 
}
.keychain-1 {
  top: 65px;
  position: relative;
  width: 150px;
  left: 265px;
  z-index: 2;
}

.keychain-2 {
  position: relative;
  top: -9px;
  width: 80px;
  left: 257px;
  z-index: 3;
}

.keychain-3 {
  position: relative;
  top: -110px;
  width: 90px;
  left: 50px;
  transform: rotate(-10deg);
    z-index: 4;
}

.keychain-4 {
  position: relative;
  top: -280px;
  width: 150px;
  left: 520px;
  transform: rotate(-10deg);
  z-index: 5;
}

.keychain-5 {
  position: relative;
  top: -560px;
  width: 190px;
  left: 490px;
  transform: rotate(15deg);
    z-index: 6;
}

/* shadows */
.pushpin, .photo::after, .keychain-1, .keychain-3, .keychain-4, .keychain-5, 
.sticker-1, .sticker-2, .sticker-3, .sticker-4, .sticker-5, 
.sticker-6, .sticker-7, .sticker-8, .sticker-9, .sticker-10, .sticker-11, .sticker-12 {
  filter: drop-shadow(1px 1px 0 rgb(79, 76, 121)) 
          drop-shadow(-1px 1px 0 white) 
          drop-shadow(0 -1px 0 white) 
          drop-shadow(1px 0 white);
}  

/* . . . . . . . . . . . . . . . */  