#post-slider {
	background: white;
  text-align: center;
	display: block;
	position: relative;
}

#post-slider .arrows{
	width: 100%;
	display: flex;
	flex-direction: row;
	justify-content: center;
	position: absolute;
}

#post-slider .scroll-arrow {
    display: block;
    cursor: pointer;
    padding: 10px 20px;
    margin:0;
	font-size:34px;
	transition: 0.2s;
	background: #f6f7f7;
}
#post-slider .scroll-arrow:hover {
  transition: 0.2s;
  background: rgba(255,255,255,0.9);
}
#post-slider ul {
    width: 100%;
	padding: 0;
    scroll-behavior: smooth;
    display: inline-block;
    position: relative;
    vertical-align: middle;
    text-align: center;
    overflow-x: hidden;
    overflow-y: hidden;
    white-space: nowrap;
    -webkit-overflow-scrolling: touch;
	margin: 0 auto;
	background: transparent;
}
#post-slider ul::-webkit-scrollbar {
    display: none;
}
#post-slider li {
    list-style: none;
    display: inline-block;
    position: relative;
    vertical-align: middle;
    margin-left: 10px;
    margin-right: 20px;
	margin-bottom: 10px;
   width: calc(100%);
   max-width: 500px;
	background: #12601B;
	z-index: 0;
}

#post-slider li img {
  width: 500px;
  height: auto;
}

#post-slider .title{
	display: block;
  position: relative;
  margin: 0;
  background: #fff;
  padding: 15px 20px;
  color: black;
	overflow: hidden;
}

#post-slider .accent-bg-rect{
	background: #9a272d;
  z-index: -1;
  position: absolute;
  height: 100%;
  width: 100%;
  top: 10px;
  left: 10px;
	box-shadow: -10px 0px 10px 0px rgba(0,0,0,0.75);
}