/* Add a pointer when hovering over the thumbnail images */
.cursor {
  cursor: pointer;
}

/* Previous buttons */
.prev {
  cursor: pointer;
  position: absolute;
  top: 56%;
  left:15px;
  width: auto;
  padding: 16px;
  margin-top: -50px;
  color: white;
  font-weight: bold;
  font-size: 20px;
  border-radius: 0 3px 3px 0;
  user-select: none;
  -webkit-user-select: none;
}
/* Next buttons */
.next {
  cursor: pointer;
  position: absolute;
  top: 56%;
  margin-right: 13px;
  width: auto;
  padding: 16px;
  margin-top: -50px;
  color: white;
  font-weight: bold;
  font-size: 20px;
  border-radius: 0 3px 3px 0;
  user-select: none;
  -webkit-user-select: none;
}

/* Position the "next button" to the right */
.next {
  right: 0;
  border-radius: 3px 0 0 3px;
}

/* On hover, add a black background color with a little bit see-through */
.control_prev:hover,
.control_next:hover {
  background-color: rgba(0, 0, 0, 0.8);
}



.simple-slider-wrapper {
    width: 100%;
    max-width: 500px;
    height: 300px;
    margin: 0 auto 30px auto;
    position: relative;
}

.control_prev {
    display: none;
    position: absolute;
    top: 69%;
    transform: translateY(-50%);
    z-index: 99999;
    height: 21px;
    color: #fff;
    width: auto;
    padding: 16px;
    text-decoration: none;
    font-weight: 700;
    font-size: 20px;
    overflow: hidden;
    cursor: pointer;
	border-radius: 0 3px 3px 0;
	
	
  padding: 16px;
  margin-top: -50px;
  border-radius: 0 3px 3px 0;
  user-select: none;
  -webkit-user-select: none;
}
.control_next {
    display: none;
    position: absolute;
    top: 69%;
    transform: translateY(-50%);
    z-index: 99999;
    height: 21px;
    color: #fff;
	margin-right: 1px;
    width: auto;
    padding: 16px;
    margin-top: -50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 20px;
    overflow: hidden;
    cursor: pointer;
	border-radius: 0 3px 3px 0;	
    user-select: none;
    -webkit-user-select: none;
}

.control_prev {
    left: 0;
}

.control_next {
    right: 0;
}

.control_prev span:before,
.control_next span:before {
    content: "";
    width: 48px;
    height: 48px;
    position: absolute;
}

.simple-slider-overflow-hidden {
    /*overflow: hidden;
    width: 100%;
    height: 100%;
	padding: 0 50px;*/
	border: 1px solid #000;
}

.simple-slider {
    display: flex;
    overflow: hidden;
    position: relative;
    margin: 0;
    padding: 0;
    list-style: none;
    width: 100%;
    height: 100%;
}

.simple-slider-element {
    width: 100%;
    flex-shrink: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.slide-image {
    object-fit: cover;
	height: 150%;
	width: auto
}