.photo-bg {
  width: 80%;
  margin: 50px 0px;
  padding: 30px;
  height: auto;
}

.photo-grid {
  display: grid;
  text-align: center;
  grid-template-columns: repeat(auto-fit, minmax(215px, 215px));
  grid-template-rows: minmax(125px, 1fr);
  row-gap: 10px;
  width: 100%;
  padding: 0px 50px;
  /* justify-content: start; */
}

.black-bg {
  background-color: rgba(0, 0, 0, 0);
  border-radius: 3%;
  height: 120px;
  width: 213.33px;
}

.outer-div {
  height: 100%;
  width: 100%;
}

.photo-bg img {
  max-height: 120px;
  max-width: 213.33px;
  border-radius: 3%;
  transition: filter 0.3s;
}

.black-bg:hover img {
  filter: brightness(1.2);
}

.spotlight {
  position: fixed;
  display: flex;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  align-items: center;
  justify-content: center;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 5;
}

.spotlight img {
  max-height: 85vh;
  max-width: 82.63719298245613vw;
  box-shadow: 0px 0px 40px 5px rgba(255, 255, 255, 0.5);
}

.spotlight-btn {
  position: fixed;
  color: rgba(255, 255, 255);
  opacity: 0.5;
  background-color: rgba(255, 255, 255, 0);
  cursor: pointer;
}
.close.spotlight-btn {
  top: 20px;
  right: 30px;
  font-size: 2rem;
}
.next.spotlight-btn {
  top: 50%;
  right: 20px;
  font-size: 3rem;
}
.before.spotlight-btn {
  top: 50%;
  left: 20px;
  font-size: 3rem;
}

.image-captions {
  text-align: center;
}

.caption {
  color: white;
  font-family: "Playfair Display", serif;
  text-align: center;
}

.caption p {
  text-align: center;
  margin: 5px 0px;
}

.no-scroll {
  overflow: hidden;
}

.date {
  text-align: left;
  width: 100%;
  font-size: 1.4rem;
  margin: 5px 0px;
}

#wed-pw {
  font-size: 1.1rem;
  width: 120px;
}

#wed-submit {
  width: 75px;
  height: 25px;
  background-color: rgb(43, 16, 65);
  border: 0;
  border-radius: 2px;
  color: white;
}
.abled#wed-submit:hover {
  background-color: rgb(99, 52, 137);
  cursor: pointer;
}

.filter-input {
  font-family: Helvetica, Arial, sans-serif;
  font-size: 1rem;
  padding: 10px 10px;
  width: 200px;
}

.filter-elements {
  max-width: 500px;
  display: grid;
  grid-gap: 5px;
  grid-template-columns: auto auto;
  grid-template-rows: auto auto auto auto;
}

.dates,
.places {
  display: flex;
  gap: 5px;
}

.places {
  display: flex;
  grid-column: 1;
  grid-row: 2;
}

.btn-div {
  grid-column: 2;
  grid-row: 1 / 4;
  display: flex;
  align-items: center;
}

.description {
  display: flex;
  grid-column: 1;
  grid-row: 3;
}

.small-hr {
  margin-top: 40px;
  width: 20%;
}

.inline {
  display: inline-block;
}

/* DOWNLOAD BUTTONS */
.go-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 50px;
  width: 50px;
  background-color: rgb(255, 103, 27);
  font-family: "Schibsted Grotesk", sans-serif;
  color: white;
  border-radius: 5px;
  margin-left: 15px;
}

.bottom-buttons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  width: 500px;
}

.go-btn:hover {
  cursor: pointer;
  background-color: rgb(210, 79, 13);
  /* background-color: rgb(255, 32, 188); */
}

.go-btn.red {
  width: 200px;
  background-color: rgb(195, 4, 4);
  margin-top: 30px;
}
.go-btn.blue {
  width: 200px;
  background-color: rgba(1, 1, 210, 0.9);
  margin-top: 30px;
}
.go-btn.red:hover {
  background-color: rgb(153, 3, 3);
}
.go-btn.blue:hover {
  background-color: rgb(42, 42, 174);
}

.go-btn.reset {
  width: 140px;
  margin-top: 10px;
  background-color: rgb(216, 58, 82);
}
.go-btn.reset:hover {
  background-color: rgb(160, 40, 58);
}

#warning {
  margin-top: 5px;
  font-size: 0.9rem;
}

.filter-inputs {
  display: flex;
  gap: 5px;
}

/* FILTER BOXES */
.filter-box {
  overflow-x: auto;
  overflow-y: auto;
  max-height: 150px;
  width: 200px;
  background-color: white;
  border-radius: 2px;
  box-shadow: 0px 0px 20px 1px rgba(0, 0, 0, 0.5);
  font-size: 0.95rem;
  padding-top: 0px;
  position: absolute;
  font-family: Arial, Helvetica, sans-serif;
}
.filter-box label {
  display: block;
  /* margin: 2px 0px; */
  padding: 5px 5px;
}
.filter-box label:hover {
  background-color: rgba(169, 162, 162, 0.2);
}
#description-box {
  width: 260px;
}
