﻿.McBusy-Animation {
    text-align: center;
    animation-name: mcBusySpin;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
    animation-duration: 3s;
}

.McBusyIndicatorRect {
    width: 100%;
    height: 100%;
    position: absolute;
    text-align: center;
	-webkit-transform: translate3d(0,0,0)
}

.McBusyIndicatorText {
    display: inline-block;
    width: 200px;
    word-wrap: break-word;
    font-size: 12.0px;
    user-select: none;
    cursor: default;
}

.McBusyImage {
    text-align: center;
    align-self: center;
    align-content: center;
    user-select: none;
}

@keyframes mcBusySpin {
    from {
        transform: rotateY(0deg);
    }

    to {
        transform: rotateY(360deg);
    }
}
