div#post-20422 .post-content{
	 margin: 0;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  height: 245vh;
  background-color: transparent;
}
.slider-container {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    border: 0;
}

.horizontal-slider, .vertical-slider {
  display: flex;
  position: absolute;
  transition: transform 0.5s ease;
}

.horizontal-slider {
  flex-direction: row;
  width: 100%;
  height: 100%;
}

.vertical-slider {
  flex-direction: column;
  width: 100%;
  height: 100%;
}

.slide {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  min-width: 100%;
  min-height: 100%;
  font-size: 24px;
  color: #000000;
  background-color: transparent;
}
.slider-container .arrow {
    display: none;
	cursor: pointer;
}
.arrow img{
	cursor: pointer!important;
}

.slide p.comment,
.slide p.author,
p.publish_date{
	color:#000000;
	font-size: 20px;
	margin-right: 10%;
}
.vertical-slider h3,
.horizontal-slider h3{
	margin-top:0px!important;
	text-transform: uppercase !important;
}
.vertical-dots {
  position: absolute;
  display: flex;
  justify-content: center;
  bottom: 10px;
  right: 0;
  transform: translateX(-50%);
  z-index: 10;
}
.horizontal-dots {
  position: absolute;
  display: flex;
  justify-content: center;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
}
.dots-container.vertical-dots {
  bottom: auto;
  top: 10px;
  right: 10px;
  flex-direction: column;
  transform: translateX(0);
  height: 100%;
}

.dots-container .dot {
  width: 15px;
  height: 15px;
  margin: 5px;
  background-color: rgba(0, 0, 0, 0.5);
  border-radius: 50%;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.dots-container .dot.active {
  background-color: #000000;
}
.horizontal-slider h3,
.vertical-slider h3{
    line-height: 32px !important;
}