#tm-preloader{
    position: fixed;
    inset:0;
    display:flex;
    justify-content:center;
    align-items:center;
     z-index:99999999999!important;
    transition: all 0.5s ease;
}

.tm-loader{
    border:6px solid #878787;
    border-top-color:transparent;
    border-radius:50%;
    animation: tm-spin 1s linear infinite;
}

@keyframes tm-spin{
    to { transform: rotate(360deg); }
}