#slideshow {
    display: block;
    width: 100%;
}

#slideshow_wrapper {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
}

#slideshow_demo {
    width: 20%;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    margin: 0 auto;
    margin-top: 16px;
}

#slideshow_demo .slideshow_demobutton {
    display: inline-block;
    width: 48px;
    height: 32px;
    background-color: var(--gullys-hellgrau);
    clip-path: polygon(70% 0%, 100% 0%, 30% 100%, 0% 100%);
    cursor: pointer;
    transition: background-color 0.3s ease, color 0.3s ease;
}

#slideshow_demo .slideshow_demobutton_select {
    background-color: var(--gullys-grau);
    transition: background-color 0.3s ease, color 0.3s ease;
}

#slideshow_demo .slideshow_demobutton_active {
    background-color: var(--gullys-neon-blau) !important;
}

#slideshow #slideshow_content {
    display: flex;
    width: 60%;
    height: 70vh;
    align-items: center;
    justify-content: center;
	background: linear-gradient(to right bottom, var(--gullys-neon-orange) 32.8%, var(--gullys-dunkelblau) 32.8%);
}

#slideshow .slideelement {
    width: 100%;
    height: 100%;
    display: none;
}

#slideshow .slideactive {
    display: flex !important;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    animation: fade_in 1s ease forwards;
}

#slideshow .slideactive[left] {
    animation: fade_in_left 1s ease forwards;
}

#slideshow .slideactive[right] {
    animation: fade_in_right 1s ease forwards;
}

#slideshow .slideimg {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

#slideshow .slideshow_button {
    font-size: 72px;
    padding: 16px;
    cursor: pointer;
    clip-path: polygon(30% 0%, 100% 0%, 70% 100%, 0% 100%);
}

#slideshow #slideshowleft_button {
    background-color: var(--gullys-dunkelblau);
    color: var(--gullys-neon-orange);
    transition: background-color 0.3s ease, color 0.3s ease;
    z-index: 10;
}

#slideshow #slideshowright_button {
    background-color: var(--gullys-neon-orange);
    color: var(--gullys-dunkelblau);
    transition: background-color 0.3s ease, color 0.3s ease;
    z-index: 10;
}

#slideshow #slideshowright_button:hover {
    background-color: var(--gullys-dunkelblau);
    color: var(--gullys-neon-orange)
}

#slideshow #slideshowleft_button:hover {
    background-color: var(--gullys-neon-orange);
    color: var(--gullys-dunkelblau);
}

@keyframes fade_in_left {
    0% {transform: translateX(-60%); opacity: 0;}
    100% {transform: translateX(0%); opacity: 1;}
}

@keyframes fade_in_right {
    0% {transform: translateX(60%); opacity: 0;}
    100% {transform: translateX(0%); opacity: 1;}
}

@media (max-width: 1000px) {
    #slideshow .slideshow_button {
        display: none;
    }

    #slideshow #slideshow_content {
        width: 95%;
    }
}