/* CSS Code hier einfügen.

Zum Beispiel:
.example {
    color: red;
}

Um dein CSS-Wissen zu prüfen, teste es hier http://www.w3schools.com/css/css_syntax.asp

Kommentarende*/ 

/* *,
*::after,
*::before {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
 */
/* Container styles */
.this-new-hcds-container {
    position: relative;
    overflow: hidden;
    /* Set initial position for the slider handle (50% in this example) */
    --position: 50%;
}

/* Image container */
.this-new-hcds-image-container {
	aspect-ratio: var(--aspect-ratio, 3.07/1);
    /*aspect-ratio: 16/9; !* Set your desired aspect ratio *!*/
    /* Style images within the container */
    /*img {*/
    /*    width: 100%;*/
    /*    height: 100%;*/
    /*    object-fit: cover;*/
    /*}*/
}

/* Slider styles */
.this-new-hcds-slider {
    position: absolute;
  inset: 0;
  cursor: pointer;
  opacity: 0;
  width: 100%;
  height: 100%;

}

.this-new-hcds-slider-line {
	position: absolute;
  	inset: 0;
    left: 0px;
  	width: 0.2rem;
  	height: 100%;
  	background-color: #fff;
  	left: var(--position);
  	-webkit-transform: translateX(-50%);
  	transform: translateX(-50%);
  	pointer-events: none;
}

.this-new-hcds-slider-button {
	font-size: 13px;
	position: absolute;
  	background-color: #fff;
  	color: black;
  	padding: 0.5rem;
  	border-radius: 100vw;
  	display: -ms-grid;
  	display: grid;
  	place-items: center;
  	top: 50%;
  	left: var(--position);
  	-webkit-transform: translate(-50%, -50%);
  	transform: translate(-50%, -50%);
  	pointer-events: none;
  	-webkit-box-shadow: 1px 1px 1px rgba(8, 3, 3, 0.5);
  	box-shadow: 1px 1px 1px rgba(8, 3, 3, 0.5);
  	width: 2vw;
  	height: 2vw;
    /* Style the slider handle */
}

.slider-image-vorher {
  position: absolute;
  inset: 0;
  width: var(--position);
}

.this-new-hcds-slider-image {
  /*width: 100%;*/
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: left;
  object-position: left;
}

img.hcds-image {
  display: block;
  max-width: 100%;
}

.hcds-image-1 {
filter: grayscale(0.5) contrast(70%);
}
