.slidershow {
    min-width: 100% !important;
    height: 100%;
    background-color: none;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}
.sliders {
    width: 100%;
    height: 100%;
    display: flex;
    flex-flow: row nowrap;
    /* transform: translateX(-500px); */
}
.slider {
    min-width: 200px;
    background-color: none;
    padding: 0px;
    text-align: center;
}
.slider p {
    line-height: 1ch;
}
.slider label p:last-child {
    font-weight: bold;
}
.slider label {
    margin: 15px 0;
    text-align: center;
}
.slider img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    /*box-shadow: 0 0 2px 4px whitesmoke;*/
}
.slidershow button, .slidershow .indicators-row {
    position: absolute;
    padding: 5px;
}
.slidershow .indicators-row {
    display: flex;
    gap: 0 10px;
}
.slidershow button.leftArrow {
    background: transparent;
    border: none;
    left: 10px;
}
.slidershow button{
    color: rgb(95, 243, 95);
    font-weight: 800px;
    font-size: 25px;
}
.slidershow button:hover {
    font-size: 30px;
    font-weight: 800px;
}
.slidershow button.rightArrow {
    right: 0px;
    background: transparent;
    border: none;
}
.slidershow .indicators-row {
    bottom: 5px;
}
.indicator-bullet {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    /* box-shadow: 0 0 0.5px 0.5px black; */
    background-color: whitesmoke;
}
.indicator-bullet.active {
    background-color: gray;
}

