.Slider3DContainer {
    position: relative;
}

.Slider3DThumbContainer {
    position: absolute;
    bottom: 10px;
    left: 0;
    width: 100%;
    height: 15px;
    text-align: center;
}

.Slider3DThumb {
    width: 12px;
    display: inline-block;
    height: 12px;
    border-radius: 100%;
    margin-left: 10px;
    margin-right: 10px;
    opacity: 0.5;
}

.Slider3DThumbActive {
    opacity: 1;
}

@keyframes Slider3DTextAnim {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes Slider3DTextAnimHide {
    from {
        opacity: 1;
    }
    to {
        opacity: 0;
    }
}

.Slider3DTextContainer {
    position: absolute;
    bottom: 50px;
    left: 0;
    width: 100%;
    height: 60px;
    display: flex;
    align-items: center;
    align-content: center;
    justify-content: center;
    overflow: hidden;
}

.Slider3DTextBlock {
    margin: auto;
    background-color: rgba(0, 0, 0, 0.5);
    color: #fff;
    display: inline-block;
    vertical-align: middle;
    text-align: center;
    padding: 10px;
    padding-left: 20px;
    padding-right: 20px;
    animation-name: Slider3DTextAnim;
    animation-duration: 0.5s;
}

.Slider3DTextHide {
    opacity: 0;
    animation-name: Slider3DTextAnimHide;
    animation-duration: 0.5s;
}