/*

Theme Name: Hello Elementor Child
Theme URI: https://github.com/elementor/hello-theme/
Description: Hello Elementor Child is a child theme of Hello Elementor, created by Elementor team
Author: Elementor Team
Author URI: https://elementor.com/
Template: hello-elementor
Version: 1.0.1
Text Domain: hello-elementor-child
License: GNU General Public License v3 or later.
License URI: https://www.gnu.org/licenses/gpl-3.0.html

*/

/* CSS for dynamic-waiting-times.php file */

#time .pulser__outer {
    display: flex;
    text-align: center;
}

#time .pulser__wrapper {
    position: relative;
    display: flex;
    margin-left: 5px;
    margin-top: 6px;
}

@media (max-width: 768px) {
    #time .pulser__wrapper {
        margin-top: 6px;
    }
}

#time .pulser__title {
    display: inline;
    color: #007d3c;
    padding-left: 22px;
    line-height: 1.4rem;
    font-weight: 400;
}

@media (max-width: 425px) {
    #time .pulser__title {
        padding-left: 18px;
    }
}

#time .dotter {
    width: 10px;
    height: 10px;
    -webkit-border-radius: 30px;
    -moz-border-radius: 30px;
    border-radius: 30px;
    background-color: #007d3c;
    z-index: 10;
    position: absolute;
}

#time .pulser {
    border: 8px solid #39ca74b0;
    background: transparent;
    -webkit-border-radius: 60px;
    -moz-border-radius: 60px;
    border-radius: 60px;
    height: 50px;
    width: 50px;
    -webkit-animation: pulser 3s ease-out;
    -moz-animation: pulser 3s ease-out;
    animation: pulser 3s ease-out;
    -webkit-animation-iteration-count: infinite;
    -moz-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    position: absolute;
    top: -20px;
    left: -20px;
    z-index: 1;
    opacity: 0;
}

@keyframes pulser {
    0% {
        -moz-transform: scale(0);
        -webkit-transform: scale(0);
        opacity: 0;
    }
    25% {
        -moz-transform: scale(0);
        -webkit-transform: scale(0);
        opacity: 0.1;
    }
    50% {
        -moz-transform: scale(0.1);
        -webkit-transform: scale(0.1);
        opacity: 0.3;
    }
    75% {
        -moz-transform: scale(0.5);
        -webkit-transform: scale(0.5);
        opacity: 0.5;
    }
    100% {
        -moz-transform: scale(1);
        -webkit-transform: scale(1);
        opacity: 0;
    }
}

/* END CSS for dynamic-waiting-times.php file */
