.c-slideshow {
    position: relative;
    max-width: 1200px;
    padding: 0 40px;
    box-sizing: border-box;

    margin: auto;
    margin-top: 40px;
    margin-bottom: 30px;
    letter-spacing: 0;
}

@media only screen and (min-width: 414px) {
    .c-slideshow {
        padding: 0 70px;
    }
}

.c-slideshow-outside {
	width: 100%;
    scroll-bahavior: smooth;
    overflow: hidden;
    }
    
.c-slideshow-inside {
	display: flex;
    justify-content: center;
    align-items: center;
	/* background-color: gray; */
    flex-wrap: nowrap;
    
    width: max-content;
    }

.c-slideshow-element-container {
	display: block;
	width: 30px;
    /* height: 33vw; */
    padding: 8px 16px;
    box-sizing: border-box;
    }
  	.c-slideshow-element-container:first-child {
    	/*padding-left: 8px;*/
        }
    .c-slideshow-element-container:last-child {
    	/*padding-right: 8px;*/
        }
        
.c-slideshow-element {
	width: 100%;
    height: 100%;
	box-sizing: inherit;
	/* background-color: lightgray; */
    /* border: 1px solid black; */
    }



/* Next & previous buttons */
.c-slideshow-prev,
.c-slideshow-next {
  cursor: pointer;
  position: absolute;
    top: 50%;
    width: auto;
    font-weight: 700;
    font-size: 32px;
    user-select: none;
    -webkit-user-select: none;

    color: #2f427c;
    border-radius: 50%;
    transform: translate(0, -50%);
}

/* Position the "next button" to the right */
.c-slideshow-prev {
    left: 0;
    padding: 0px 9px 0px 5px;
  }
.c-slideshow-next {
  right: 0;
  padding: 0px 7px 0px 8px;
}

/* On hover, add a black background color with a little bit see-through */
.c-slideshow-prev:hover,
.c-slideshow-next:hover {
  background-color: rgba(0, 0, 0, 0.1);
  /* background-color: #f4f4dd; */
}

.c-slideshow-prev:focus,
.c-slideshow-next:focus {
    box-shadow: none;
}