@keyframes spin {
    0% {
        transform: translateZ(0) rotate(0);
    }
    100% {
        transform: translateZ(0) rotate(360deg);
    }
}
.freeze-ui {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 999999999;
    background-color: rgb(41 40 40);
    opacity: 0.8;
    transition: opacity 0.25s;
}
.freeze-ui.is-unfreezing {
    opacity: 0;
}
.freeze-ui:after {
    content: attr(data-text);
    display: block;
    max-width: 225px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 16px;
    font-family: sans-serif;
    color: rgb(255 225 38);
    text-align: center;
    text-transform: uppercase;
}
.freeze-ui:before {
    /*content: "";*/
    /*display: block;*/
    /*width: 150px;*/
    /*height: 150px;*/
    /*border-radius: 50%;*/
    /*border-width: 2px;*/
    /*border-style: solid;*/
    /*border-color: transparent #67f14b #3fc125;*/
    /*position: absolute;*/
    /*top: calc(50% - 75px);*/
    /*left: calc(50% - 75px);*/
    /*will-change: transform;*/
    /*animation: spin 0.75s infinite ease-in-out;*/
}
