﻿/* https://www.kirupa.com/animations/creating_pulsing_circle_animation.htm */

.progress-outer-container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.progress-container {
    width: 600px;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
    flex-grow: 1;
}

.circle-progress {
    border-radius: 50%;
    background-color: gold;
    width: 150px;
    height: 150px;
    position: absolute;
    opacity: 0;
    animation: scaleIn 4s infinite cubic-bezier(.36, .11, .89, .32);
}

@keyframes scaleIn {
    from {
        transform: scale(.5, .5);
        opacity: .5;
    }

    to {
        transform: scale(2.5, 2.5);
        opacity: 0;
    }
}

.progress-item1 {
    z-index: 90;
    padding: 5px;
}

    .progress-item1 img {
        width: 150px;
    }

/* Centered text https://www.w3schools.com/howto/howto_css_image_text.asp */
.progress-text {
    z-index: 100;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -10%);
    font-size: 30px;
    font-weight: bolder;
    font-family: 'Dekko';
}