﻿.spinner {
    border: 8px solid rgba(0, 0, 0, 0.1);
    border-left-color: #009688;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    animation: spin 1s linear infinite;
}

.spinnerBody {
    border: 12px solid rgba(0, 0, 0, 0.1);
    border-left-color: #009688;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    animation: spin 1s linear infinite;
}

.spinnerPageLoader {
    border: 24px solid rgba(0, 0, 0, 0.1);
    border-left-color: #009688;
    border-radius: 50%;
    width: 100px;
    height: 100px;
    animation: spin 1s linear infinite;
}


@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}


[data-tooltip] {
    z-index: 999;
    position: relative;
    font-weight: bold;
}

[data-tooltip]:after {
    display: none;
    position: absolute;
    padding: 3px 5px;
    border-radius: 2px;
    top: calc(100% + 10px);
    left: -45%;
    content: attr(data-tooltip);
    white-space: nowrap;
    background-color: black;
    color: White;
    font-size: 12px;
}

[data-tooltip]:hover:after {
    display: block;
}