﻿
.spinner {
    margin-top: 25px;
}



.bgAnimination {
    background-size: cover;
    position: fixed;
    left: 0;
    z-index: 11;
    right: 0;
    top: 0;
    bottom: 0;
    animation: screenbg 1.6s;
    background: rgba(0,39,82,.8);
}

.mid {
    left: 50%;
    position: fixed;
    top: 50%;
    transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    text-align: center;
    bottom:0;
}

.checkmark__circle {
    stroke-dasharray: 166;
    stroke-dashoffset: 166;
    stroke-width: 2;
    stroke-miterlimit: 10;
    stroke: #fff;
    fill: none;
    animation: stroke 1.2s cubic-bezier(0.65, 0, 0.45, 1) forwards;
}

.checkmark {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    display: block;
    stroke-width: 4;
    stroke: #40DB21;
    stroke-miterlimit: 10;
    margin: 0 auto;
    animation: fill .8s ease-in-out .8s forwards, scale .6s ease-in-out 1.8s both;
}

.checkmark__check {
    transform-origin: 50% 50%;
    stroke-dasharray: 48;
    stroke-dashoffset: 48;
    animation: stroke 0.6s cubic-bezier(0.65, 0, 0.45, 1) 1.6s forwards;
}

@keyframes stroke {
    100% {
        stroke-dashoffset: 0;
    }
}

@keyframes scale {
    0%, 100% {
        transform: none;
    }

    50% {
        transform: scale3d(1.1, 1.1, 1);
    }
}

@keyframes fill {
    100% {
        box-shadow: inset 0px 0px 0px 60px #fff;
    }
}

.heading {
    font-size: 20px;
    margin: 20px 0 0 0;
    font-family: 'Lato', sans-serif;
    color: #fff;
    font-weight: 400;
    opacity: 0;
    animation: show 1s linear 2s forwards;
}

    .heading span {
        font-weight: 700;
    }

@keyframes show {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes screenbg {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

