.carousel {
    /* position: relative; */
    top: 5vh;
    height: 72vh;
    width: 80%;
    margin: 0 auto;
    /* z-index: 0; */
}

.carousel_image {
    /* display: block; */
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* padding: 10px; */
}

.carousel_trackcontainer {
    /* background: lightgreen; */
    /* padding: 10px; */
    height: 100%;
    position: relative;
    overflow: hidden;
}

.carousel_track {
    padding: 0;
    margin: 0;
    list-style: none;
    position: relative;
    height: 100%;
    transition: transform 700ms ease-in-out;
}

.carousel_slide {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 100%
}

.carousel_button {
    position: absolute;
    top: 50%;
    height: 400px;
    transform: translateY(-50%);
    background: transparent;
    border: 0;
    /* cursor: pointer; */
}

.carousel_button:hover {
    color: white;
}

.carousel_button svg {
    width: 40px;
}

.carousel_button--left {
    left: -50px;
}

.carousel_button--right {
    right: -50px;
}

.carousel_nav {
    display: flex;
    justify-content: center;
    padding: 10px 0;
}

.carousel_indicator {
    border: 0;
    border-radius: 50%;
    width: 15px;
    height: 15px;
    background-color: grey;
    margin: 0 12px;
    cursor: pointer;
}

.carousel_indicator.current_slide {
    /* background-color: rgba(0,0,0,0.75); */
    background-color: white;
}

.is_hidden {
    display: none;
}


