/* Slideshow container */

.elem-header-wrapper {
        max-width: 100%;
  text-align: center;
   margin-left: auto;
  margin-right: auto;
       }


.elem-header-item {
	cursor: pointer;
  top: 0;
  margin-top: 0px;
  text-align: center;
  padding: 16px;
  color: red;
  font-weight: bold;
  font-size: 40px;
  transition: 0.6s ease;
  border-radius: 0 3px 3px 0;
  user-select: none;
}

 
.elem-header-prev, .elem-header-next{
cursor: pointer;
  position: absolute;
  top: 0;
  width: auto;
  margin-top: 0px;
  padding: 16px;
  color: red;
  font-weight: bold;
  font-size: 40px;
  transition: 0.6s ease;
  border-radius: 0 3px 3px 0;
  user-select: none;
      }

.elem-header-prev {
        left: 0;
  border-radius: 3px 0 0 3px;
      }
	  
 .elem-header-next {
        right: 0;
  border-radius: 3px 0 0 3px;
      }

.elem-header-prev:hover , .elem-header-next:hover, .elem-header-item:hover {
background-color: rgba(0,0,0,0.3);
}

