.conf-grid {
  width: 100%;
  height: 100%;
  display: grid;
  grid-template-rows: 200px 1fr;
}

.full {
  width: 100%;
  height: 100%;
}

.conf-outer {
  width: 90%;
}

.conf-h2 {
  font-weight: 300;
}

.margin-bottom-20px {
  margin-bottom: 20px;
}

.box-bg {
  background-color: rgb(66, 66, 66);
  border: 1px solid white;
  width: 100%;
}

.upcoming-box {
  height: 100px;
}

.conf-outer hr {
  margin: 25px 0px;
}

.conf-head-title {
  margin: 10px;
}

.conf-head-box {
  display: grid;
  text-align: left;
  grid-template-columns: 1fr 1fr;
  cursor: pointer;
}

.conf-down-arrow {
  width: 40px;
  margin-right: 10px;
}

.conf-body-box {
  width: 100%;
  height: 0;
  transition: height 0.3s ease-out;
  margin-bottom: 20px;
}

.conf-body-box p {
  font-size: 20px;
  margin: 2px;
}

.hidden {
  visibility: hidden;
}
.gone {
  display: none;
}
.no-border {
  border: none;
}
.body-cont {
  margin: 0px 8px;
}
.space-10px {
  height: 10px;
}
.space-30px {
  height: 30px;
}

#no-upcoming {
  font-size: 25px;
}

.conf-photo-link {
  color: rgba(238, 217, 238, 0.8);
}
.conf-photo-link:hover {
  color: rgb(238, 217, 238);
}
.conf-photo-P {
  cursor: pointer;
}

/* SPOTLGHT */
.spotlight {
  position: fixed;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 2;
}
#spotlight-img-container {
  width: 100%;
  height: 100%;
}
#spotlight-img {
  max-width: 80%;
}

.spotlight-btn {
  position: absolute;
  color: white;
  opacity: 0.7;
  font-size: 40px;
  cursor: pointer;
}
#spotlight-close {
  top: 20px;
  right: 20px;
}
#spotlight-left {
  top: 50vh;
  left: 20px;
}
#spotlight-right {
  top: 50vh;
  right: 20px;
}

.spotlight-btn:hover {
  opacity: 1;
}
