@keyframes carousel-left {
    from {
        left: 0%;
    }
    to {
        left: -5%;
    }
}
@keyframes carousel-right {
    from {
        left: 0;
    }
    to {
        left: 10%;
    }
}
@keyframes carousel-up {
    from {
        top: 0;
    }
    to {
        top: -10%;
    }
}
@keyframes carousel-zoom {
    from {
        transform: scale(1);
    }
    to {
        transform: scale(1.5);
    }
}
@keyframes carousel-fade-in {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}
@keyframes carousel-fade-out {
    from {
        opacity: 1;
    }
    to {
        opacity: 0;
    }
}
@keyframes carousel-width {
    from {
        width: 0;
    }
    to {
        width: 100%;
    }
}
@keyframes carousel-gradient-up {
    0% {
        background-position: 0% 0%;
    }
    100% {
        background-position: 0% 100%;
    }
}
@keyframes carousel-gradient-left {
    0% {
        background-position: 0% 0%;
    }
    100% {
        background-position: 100% 0%;
    }
}
@keyframes carousel-gradient-right {
    0% {
        background-position: 100% 0%;
    }
    100% {
        background-position: 0% 0%;
    }
}
.carousel {
    position: relative;
    width: 115%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}
.carousel img{
	width: 120%;
}
.carousel .carousel-element {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}
.carousel .carousel-element img, .carousel .carousel-element video {
    position: absolute;
    animation-duration: 10s;
    animation-timing-function: cubic-bezier(0, 1, 0, 1);
    animation-fill-mode: both;
    animation-name: carousel-left;
}
.carousel .carousel-indicators {
    position: absolute;
    bottom: 9em;
	right: 0%;
    width: fit-content;
    padding-right: 1em;
    box-sizing: border-box;
    text-align: right;
	display: flex;
	flex-direction: column;
	align-items: flex-end;
}
.carousel .carousel-indicator {
    display: inline-block;
    box-sizing: border-box;
    min-width: 1rem;
    min-height: 1rem;
    font-size: 0.5em;
    font-weight: bold;
    line-height: 1;
    color: #ffffff;
    border-color: #ffffff;
    border-style: solid;
    border-width: 0.2rem;
    border-radius: 0.5rem;
    cursor: pointer;
    background-color: rgba(255,255,255,0);
    transition: background-color 500ms ease 0s;
    text-align: center;
	margin-bottom: 5px;
}
.carousel .carousel-indicator.active {
    color: #888888;
    background-color: var(--main_color);
}
.carousel .carousel-start {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    animation: carousel-fade-in 1000ms linear 0s 1 both,
    carousel-fade-out 500ms linear 1000ms 1 forwards;
}
.carousel .carousel-progress {
    position: absolute;
    left: 0;
    top: 0;
    height: 1em;
    background-color: #00ff00;
    animation: carousel-width 1000ms linear 0s 1 both;
}
.carousel .carousel-front {
    position: absolute;
    left: 0;
    bottom: 0;
    display: none;
}
.carousel .carousel-overlay {
    display: none;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}
