@keyframes loading-rotation {
    0% {
        transform: rotateZ(0deg);
    }
    100% {
        transform: rotateZ(360deg);
    }
}


.readonly-visible{
    color: #515151 !important;
}

.w-max-content{
    width: max-content !important;
}

.w-min-40{
    min-width: 40px !important;
}

.no-cursor{
    cursor: default;
}
 
.loading-rotation{
    animation-name: loading-rotation;
    animation-duration: 1s;
    animation-iteration-count: infinite;
}