/**** SlideShow ***************************************/
.SlideShow {
  position: absolute;
  left: 0px;
  top: 61px;
  bottom: 0;
  width: 100%;
  overflow: hidden;
  transition: height 0.5s;
  background-color: #FEF5F5;
}
.SlideShow_DotsBar {
  position: absolute;
  width: 100%;
  bottom: 10px;
  display: flex;
  justify-content: center;
}
.SlideShow_DotsBar_Dots {
  width: 16px;
  height: 16px;
  margin: 0 4px;
  border: 1px solid gray;
  border-radius: 10px;
}
.SlideShow_DotsBar_Dots-selected {
  border: 4px solid #e30a0b;
}
.SlideShow_Post {
  position: absolute;
  top: 0;
  left: 100%;
  transition: left 1s;
  box-sizing: border-box;
  height: calc(100% - 60px);
}
.SlideShow_Post_Img {
  width: 100%;
  height: 100%;
  margin: 0 auto;
  border-radius: 15px;
  object-fit: contain;
  padding: 20px;
}
.dimScreen {
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: #000c;
}
