/**
 * Css for Widget
 */

/* Posizionamento freccia in basso al centro */
.arrow-container {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
}

/* Varianti di stile */
.scroll-down-arrow.light {
    color: #fff;
    border-color: #fff;
}

.scroll-down-arrow.light:hover {
    background: rgba(255, 255, 255, 0.2);
}

.scroll-down-arrow.dark {
    color: #333;
    border-color: #333;
}

.scroll-down-arrow.dark:hover {
    background: rgba(0, 0, 0, 0.1);
}

/* Variante filled */
.scroll-down-arrow.filled {
    background: #fff;
    color: #667eea;
    border: none;
}

.scroll-down-arrow.filled:hover {
    background: #f0f0f0;
}

/* Variante grande */
.scroll-down-arrow.large {
    width: 70px;
    height: 70px;
}

.scroll-down-arrow.large::before {
    width: 16px;
    height: 16px;
}

.scroll-down-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: transparent;
    border: 2px solid currentColor;
    border-radius: 50%;
    cursor: pointer;
    color: inherit;
    transition: all 0.3s ease;
    position: relative;
}

.scroll-down-arrow:hover {
    background: rgba(0, 0, 0, 0.1);
    transform: scale(1.1);
}

.scroll-down-arrow:focus {
    outline: 2px solid currentColor;
    outline-offset: 3px;
}

.scroll-down-arrow:focus:not(:focus-visible) {
    outline: none;
}

.scroll-down-arrow:focus-visible {
    outline: 2px solid currentColor;
    outline-offset: 3px;
}

.scroll-down-arrow::before {
    content: '';
    width: 12px;
    height: 12px;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: rotate(45deg) translateY(0px);
    transition: transform 0.3s ease;
}

.scroll-down-arrow:hover::before {
    transform: rotate(45deg) translateY(0);
}

/* Animazione bounce opzionale */
.scroll-down-arrow.animated {
    animation: bounce-arrow 2s infinite;
}

@keyframes bounce-arrow {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(10px);
    }
    60% {
        transform: translateY(5px);
    }
}

.scroll-down-arrow.animated:hover {
    animation: none;
    transform: scale(1.1);
}


/*============================================================
 *
 *  SM smart-phone 576-767
 *  XS 0-567
 */
@media (max-width: 767px) {

.arrow-container{
display:none;
}
}