﻿@charset 'UTF-8';

.modalLoader {
    display: none;
}


.loader {
    border: 16px solid #ffffff;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    border-top: 16px solid #007bff;
    border-bottom: 16px solid #007bff;
    /*-webkit-animation: spin 2s linear infinite;
    animation: spin 2s linear infinite;*/
    position: absolute;
    left: 0;
    right: 0;
    margin: auto;
    top: 40%;
    bottom: 0;
    /*border-left: 16px solid #5358fc;
    border-right: 16px solid #5358fc;*/
    height: 100px;
    width: 100px;
    margin: 20px auto;
    border-radius: 50%;
    border: dashed 4px #007bff;
    animation-name: loader-spin;
    animation-duration: 2s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
}

@-webkit-keyframes spin {
    0% {
        -webkit-transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
    }
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.loader-mn {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.39);
    z-index: 9999999;
}
div.spinner {
    height: 21px;
    width: 21px;
    margin: 20px auto;
    border-radius: 50%;
    border: dashed 1px #D0CE03;
    animation-name: loader-spin;
    animation-duration: 2s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
}
.large
{
    width: 43px;
    height: 43px;
    border-width: 3px;
}

@-webkit-keyframes loader-spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}


.txtt {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    color: white;
    margin: auto;
    width: 100px;
    height: 100px;
    text-align: center;
    font-size: 31px;
    padding-top: 135px;
    text-shadow: 1px 1px 1px black;
    font-weight: 600;
}
