@keyframes rotating {
    from {
        -ms-transform: rotate(0deg);
        -moz-transform: rotate(0deg);
        -webkit-transform: rotate(0deg);
        -o-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    to {
        -ms-transform: rotate(360deg);
        -moz-transform: rotate(360deg);
        -webkit-transform: rotate(360deg);
        -o-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

#progressSpinner {
    position: fixed;
    left: 0;
    top: 0;
    display: grid;
    width: 100%;
    height: 100%;
    justify-content: center;
    align-content: center;
    z-index: 9999;
    background-color: rgba(0, 0, 0, 0.6);
}

#progressSpinnerSvg {
    width: 20vw;
    grid-column-start: 1;
    grid-row-start: 1;
}

.progress-loading {
    -webkit-animation: rotating 2s linear infinite;
    -moz-animation: rotating 2s linear infinite;
    -ms-animation: rotating 2s linear infinite;
    -o-animation: rotating 2s linear infinite;
    animation: rotating 2s linear infinite;
    transform-origin: 50.9% 49.3%
}

#progressSpinnerText {
    font-size: 1.5vw;
    color: #ff5f0b;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    max-width: 10vw;
    text-align: center;
}

.progressSpinnerTextLower {
    transform: translate(-50%, 10%) !important;
}

#progressSpinnerPercentage {
    font-size: 3vw;
    color: #ff5f0b;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -70%);
}

.progressSpinner-custom #progressSpinnerPercentage{
    position: static;
    transform: translate(0,0);
    text-align: center;
    font-size: 1.5vw;
    color: white;
}
.progressSpinner-custom #progressSpinnerText{
    position: static;
    transform: translate(0,0);
    text-align: center;
    font-size: 1.5vw;
    color: white;
}

#progressSpinnerCustom {
    mask-repeat: no-repeat;
    mask-position: center;
    mask-size: contain;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

#progressSpinnerCustomText{
    width:100%;
    text-align: center
}

#progressSpinnerCustomImg{
    display: none;
}

#progressSpinnerCustomSvg{
    display: none;
}
