/*
 *This file is part of the Claim Master Project.
 *Copyright © 2024-2025, Pierpaolo Toniolo, All Rights Reserved.
 *The use of this code is governed by the BSD3 license attached.
 *See the LICENSE file for the full license.
 *
 *Created on: 2023-02-16
 *
 *Author: Penaz
 */
@keyframes spin{
    100% {
        -webkit-transform: rotate(720deg);
        transform: rotate(720deg);
    }
}

.spinner{
    border-radius: 50%;
    border-style: solid;
    margin: auto;
    margin-bottom: 0;
}

.spinner.spin{
    animation: spin 2s ease-in-out infinite;
}

.spinner.mini{
    width: 1.5rem;
    height: 1.5rem;
    border-width: 0.25rem;
}

.spinner.sm{
    width: 8rem;
    height: 8rem;
    border-width: 1rem;
}

.spinner.md{
    width: 11rem;
    height: 11rem;
    border-width: 1.5rem;
}

.spinner.lg{
    width: 15rem;
    height: 15rem;
    border-width: 2rem;
}

.spinner.transparent_bg{
    border-color: transparent;
}

.spinner.themed{
    border-color: #C7C7C7;
    border-top-color: #000;
    border-bottom-color: #000;
}

.spinner.white{
    border-top-color: #f3f3f3;
    border-bottom-color: #f3f3f3;
}

.spinner.center{
    margin: auto;
}
