﻿.cont_loader {
    height: 100%;
    background-color: #5e5e5e47;
    width: 100%;
    position: fixed;
    z-index: 9999;
}

.cont_paws {
    position: fixed;
    top: 25%;
    left: 55%;
    transform-origin: 50% 50%;
    transform: rotate(90deg) translate(-50%, 0%);
    font-size: 50px;
    width: 1em;
    height: 3em;
    color: #643321;
}

    .cont_paws .paw {
        width: 1em;
        height: 1em;
        -webkit-animation: 2050ms pawAnimation ease-in-out infinite;
        animation: 2050ms pawAnimation ease-in-out infinite;
        opacity: 0;
    }

        .cont_paws .paw svg {
            width: 100%;
            height: 100%;
        }

        .cont_paws .paw .icon {
            fill: currentColor;
        }

        .cont_paws .paw:nth-child(odd) {
            transform: rotate(-10deg);
        }

        .cont_paws .paw:nth-child(even) {
            transform: rotate(10deg) translate(125%, 0);
        }

        .cont_paws .paw:nth-child(1) {
            -webkit-animation-delay: 1.25s;
            animation-delay: 1.25s;
        }

        .cont_paws .paw:nth-child(2) {
            -webkit-animation-delay: 1s;
            animation-delay: 1s;
        }

        .cont_paws .paw:nth-child(3) {
            -webkit-animation-delay: 0.75s;
            animation-delay: 0.75s;
        }

        .cont_paws .paw:nth-child(4) {
            -webkit-animation-delay: 0.5s;
            animation-delay: 0.5s;
        }

        .cont_paws .paw:nth-child(5) {
            -webkit-animation-delay: 0.25s;
            animation-delay: 0.25s;
        }

        .cont_paws .paw:nth-child(6) {
            -webkit-animation-delay: 0s;
            animation-delay: 0s;
        }

.no-cssanimations .cont_paws .paw {
    opacity: 1;
}

@-webkit-keyframes pawAnimation {
    0% {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }

    100% {
        opacity: 0;
    }
}

@keyframes pawAnimation {
    0% {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }

    100% {
        opacity: 0;
    }
}
