.widgetScrollDown
{
    position: absolute;
    width: 100%;
    bottom: 0;
    left: 0;
    z-index: 12;
    pointer-events: none;
}
#arrow-scroll-down
{
    /* position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    width: 40px;
    height: 40px; */
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    margin-bottom: 20px;
    cursor: pointer;
    pointer-events: auto;
}
.scrollDownText
{
    color: white;
    font-size: 12px;
    font-weight: 400;
    margin-bottom: 10px;
}
#arrow-scroll-down svg {
	height: 34px;
    width: auto;
    opacity: 0.9;
    animation: bounce 2s infinite;
}
#arrow-scroll-down svg path {
    stroke: white;
}
@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(0) translateY(0);
    }
    40% {
        transform: translateX(0) translateY(-10px);
    }
    60% {
        transform: translateX(0) translateY(-5px);
    }
}