/*
Theme Name: Hello Elementor Child
Theme URI: https://studionumerik.fr/
Description: Hello Elementor Child Theme
Author: Studio Numerik
Author URL: https://studionumerik.fr/
Template: hello-elementor
Version: 1.0.0
License: GNU General Public License v2 or later
License URL: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: hello-elementorchild
*/
/* Placer votre CSS ci-dessous */
#scroll-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    cursor: pointer;
    z-index: 1000;
    display: none;
}

.progress-circle {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-color: #000;
}

.progress-ring {
    width: 100%;
    height: 100%;
    transform: rotate(-90deg); /* Ensure the starting point is at the top */
}

.progress-ring__circle {
    stroke: #A4C2A8;
    stroke-dasharray: 138; /* circumference of the circle */
    stroke-dashoffset: 138; /* initial offset to hide the stroke */
    transition: stroke-dashoffset 0.25s;
    transform-origin: 50% 50%;
}

.arrow-up {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 0; 
    height: 0; 
    border-left: 7px solid transparent;
    border-right: 7px solid transparent;
    border-bottom: 10px solid #fff;
}