#single-item,
#lightbox-item {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 999;
  background-color: rgba(0, 0, 0, 0.5);
}

#single-item #single-content {
  background-color: white;
  border-radius: 3px;
  padding: 2%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-box-shadow: 5px 5px 9px -2px rgba(0, 0, 0, 0.73);
  box-shadow: 5px 5px 9px -2px rgba(0, 0, 0, 0.73);
  text-align: center;

  color: black;

  width: 100%;

  max-height: 90vh;
  overflow-y: scroll;
}

#single-item #single-content .content-text {
  padding: 0 20%;
}

#single-item #single-content img {
  width: 150px;
}

#single-item #single-content h2 {
  font-size: 2.5rem;
}

#single-item #single-content h3 {
  margin-bottom: 15px;
}

#single-item #single-content h4 {
  font-size: 1.1rem;
  margin-bottom: 5px;
  color: rgba(58, 228, 241, 0.9);
}

#single-item #single-content p {
  margin-bottom: 10px;
  color: black;
}

.bold {
  font-weight: 600;
}

#single-item #close-content,
#lightbox-item #close-content {
  position: absolute;
  right: 50px;
  top: 20px;
  font-size: 2rem;
  background: rgba(0, 0, 0, 0.5);
  padding: 0px 10px;
  cursor: pointer;
}

#lightbox-item #lightbox-content {
  background-color: white;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-box-shadow: 5px 5px 9px -2px rgba(0, 0, 0, 0.73);
  box-shadow: 5px 5px 9px -2px rgba(0, 0, 0, 0.73);
  text-align: center;

  width: 35%;

  height: 50%;
  overflow-y: hidden;
}

#lightbox-item #lightbox-content #img-container {
  width: 100%;
  height: 100%;
  background-size: 100%;
  background-repeat: no-repeat;
  background-position: 50% 70%;
}

/* RESPONSIVE */

/* Up To : phone landscape & smaller + Tablet Portrait */
@media all and (min-width: 480px) {
  #single-item #single-content img {
    width: 20vw;
  }
}

/* Ipad */
@media all and (min-width: 900px) {
}

/* Laptop and + */
@media all and (min-width: 1180px) {
  #single-item #single-content {
    width: 50%;
  }
}
