@keyframes p-progressspinner-rotate {
    100% {
        transform: rotate(360deg);
    }
}

@keyframes custom-progress-spinner-dash {
    0% {
        stroke-dasharray: 1, 200;
        stroke-dashoffset: 0;
    }
    50% {
        stroke-dasharray: 89, 200;
        stroke-dashoffset: -35px;
    }
    100% {
        stroke-dasharray: 89, 200;
        stroke-dashoffset: -124px;
    }
}

@keyframes dark-progress-spinner-color {
    100%,
    0% {
        stroke: #018ac7;
    }
    40% {
        stroke: #018ac7;
    }
    66% {
        stroke: #018ac7;
    }
    90% {
        stroke: #018ac7;
    }
}

.tmp-spinner-overlay {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    color: #018ac7;
    background: rgba(233, 238, 247, 0.75);
}

.tmp-spinner-container {
    animation-duration: 2s;
    position: relative;
    margin: 0 auto;
    display: inline-block;
    height: 2rem;
    width: 2rem;
}

.tmp-spinner-box {
    animation: p-progressspinner-rotate 2s linear infinite;
    height: 100%;
    transform-origin: center center;
    width: 100%;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
}

.tmp-spinner-circle {
    animation: custom-progress-spinner-dash 1.5s ease-in-out infinite,
    dark-progress-spinner-color 6s ease-in-out infinite;
    stroke-dasharray: 89, 200;
    stroke-dashoffset: 0;
    stroke: #d62d20;
    stroke-linecap: round;
}
