.container {
  margin: auto;
  width: 100vw;
  max-width: fit-content;
  display: flex;
  justify-content: center;
  transition: background-color 0.8s ease-in-out;
  position: relative;

}
.container-overlay {
  background-color: transparent;
  color: transparent;
  position: absolute;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: background-color 0.8s, color 0.5s;
}
.overlay-text {
  font-family: 'Hkgrotesk';
  font-weight: 400;
  font-style: italic;
  display: block;
  user-select: none;
  height: min-content;
}
.container-overlay:hover {
  background-color: rgba(255, 255, 255, 0.45);
  color: #3a3a3a;
}
.hidden {
  /* display: none!important; */
  opacity: 0!important;
  position: absolute!important;
  pointer-events: none;
}
.slider-image {
  object-fit: cover;
  width: auto;
  max-height: 88vh;

}
.slider-image--container {
  width: max-content;
  max-width: 100vw;
  height: auto;
  display: flex;
  justify-content: center;
  position: relative;
}
.opacity-smooth {
  transition: opacity 1.6s ease-in-out;
}
.opacity-less-smooth {
  transition: opacity 0.15s ease-in-out;
}

.arrow-container {
  position: absolute;
  display: flex;
  justify-content: space-between;
  width: 100%;
  height: 100%;
  user-select: none;
}
.arrow-hitbox {
  height: 100%;
  width: 20%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 100000;
  transition: background-color 0.5s;
  cursor: pointer;

}
.arrow-hitbox:hover {
  background-color: rgba(255, 255, 255, 0.4);
}
.slider-arrow {
  /* position: absolute; */
  /* top: 50%; */
  /* bottom: 50%; */
  width: 25px;
  opacity: 0;
  transition: opacity 0.8s;
}
.left {
  left: 10px;
  /* padding: 0 0 0 0px; */
  /* justify-self: flex-end; */
}
.right {
  right: 10px;
  /* padding: 5px 0px 0 0; */
  /* justify-self: self-end; */
  /* justify-content: flex-end; */
}


.announcement-window {
  position: fixed;
  width: 100vw;
  height: 100vh;
  background-color: rgba(41, 41, 41, 0.7);
  z-index: 100001;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: opacity 0.7s ease-out;
  font-family: 'Hkgrotesk';
}

.announcement-cell {
  height: max-content;
  width: 80vw;
  max-width: 400px;
  color: #f90100;
  display: flex;
  flex-direction: column;
  justify-items: center;
  align-items: center;
  position: absolute;

}
.announcement-title {
  background-color: white;
  width: 100%;
  text-align: center;
  padding: 1vh;
  border-radius: 10px;
}
.announcement-text {
  font-size: 20px;
  line-height: 1.2em;
  color:  #3a3a3a;
  background-color: white;
  min-width: 200;
  margin: 0;
  padding: 2vh 18px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0px 0px 50px rgba(0, 0, 0, 0.5);

}

.disappear {
  opacity: 0;
  pointer-events: none;
  user-select: none;
}

#text--issue-year {
  width: 100vw;
  padding: 5px 20px 2px;
  color: #888888;
  align-self: flex-start;
}

.issue-info {
  position: absolute;
  bottom: 0;
  display: flex;
  justify-content: center;
  justify-items: stretch;
  width: 100%;
  margin: auto;
}
.bubbles {
  display: flex;
  justify-content: center;
}
.bubble {
  width: 15px;
  height: 15px;
  background-color: #cecece;
}


/* @media screen and (max-width: 767px) {
  .slider-arrow {
    opacity: 100%;
  }
} */

@media screen and (max-width: 767px) {
  .slider-arrow {
    opacity: 100%;
  }
}