﻿@keyframes lds-ring {
    0% {
        transform: rotate(0deg);
    }

    50% {
        transform: rotate(180deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@-webkit-keyframes lds-ring {
    0% {
        transform: rotate(0deg);
    }

    50% {
        transform: rotate(180deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.positioner {
    display: flex;
    position: absolute;
    justify-content: center;
    align-items: center;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
}

.lds-ring {       
    width: 100px;
    height: 100px;  
}

.tritioicon {
    background-image: url(/dist/assets/tritio3bwtu.png);
    background-position: 50% 50%;
    background-size: 70% 70%;
    background-repeat: no-repeat;
}

.lds-ring div {
    box-sizing: border-box;
    display: block;
    position: absolute;
    width: 100px;
    height: 100px;
    
    border: 8px solid;
    border-radius: 50%;
    animation: lds-ring 3.6s cubic-bezier(0.86, 0, 0.32, 0.74) infinite;
    border-color: #4b81de transparent transparent transparent;
}

    .lds-ring div:nth-child(1) {
        animation-delay: -0.35s;
    }

    .lds-ring div:nth-child(2) {
        animation-delay: -0.15s;
    }

    .lds-ring div:nth-child(3) {
        animation-delay: 0.05s;
    }