﻿.error-alert {
    color: red;
    font-size: .95rem;
}
/*---------------------------- pre loader -----------------*/
.preloader {
    display: block;
    position: fixed;
    top: 0px;
    left: 0px;
    height: 100%;
    width: 100%;
    z-index: 9999;
    background: rgba(0, 0, 0, .9);
    -webkit-transition: all 100ms ease-in;
    transition: all 100ms ease-in;
}

    .preloader.loaded {
        display:none;
    }

@-webkit-keyframes rotate {
    100% {
        -webkit-transform: rotate3d(0, 0, 1, 360deg);
        transform: rotate3d(0, 0, 1, 360deg);
    }
}

@keyframes rotate {
    100% {
        -webkit-transform: rotate3d(0, 0, 1, 360deg);
        transform: rotate3d(0, 0, 1, 360deg);
    }
}

.xs-preload {
    -webkit-transform: rotate3d(0, 0, 1, -90deg);
    transform: rotate3d(0, 0, 1, -90deg);
    position: absolute;
    right: 0;
    bottom: 0;
    top: 0;
    margin: auto;
    left: 0;
}

    .xs-preload circle {
        fill: none;
        stroke: #444;
        stroke-width: 3px;
        will-change: transform;
        -webkit-transform-origin: center center;
        transform-origin: center center;
        -webkit-animation-name: rotate;
        animation-name: rotate;
        -webkit-animation-timing-function: linear;
        animation-timing-function: linear;
        -webkit-animation-iteration-count: infinite;
        animation-iteration-count: infinite;
    }

    .xs-preload .inner {
        stroke: #00acc8;
        stroke-dasharray: 200.96;
        stroke-dashoffset: 160.96;
        -webkit-animation-delay: 200ms;
        animation-delay: 200ms;
        -webkit-animation-duration: 1s;
        animation-duration: 1s;
    }

    .xs-preload .middle {
        stroke: #e208bd;
        stroke-dasharray: 238.64;
        stroke-dashoffset: 178.64;
        -webkit-animation-delay: 100ms;
        animation-delay: 100ms;
        -webkit-animation-duration: 1.5s;
        animation-duration: 1.5s;
    }

    .xs-preload .outer {
        stroke: #54ef2d;
        stroke-dasharray: 276.32;
        stroke-dashoffset: 176.32;
        -webkit-animation-delay: 300ms;
        animation-delay: 300ms;
        -webkit-animation-duration: 2s;
        animation-duration: 2s;
    }

a.cencel-preloader {
    position: absolute;
    right: 20px;
    bottom: 20px;
    background: #ffff;
    display: inline-block;
    padding: 5px 20px;
    text-transform: capitalize;
    border-radius: 36px;
    color: #001ec8;
    font-size: 14px;
}


/*-----------Dashboard-------------*/
.blue_bg {
    padding: 10px;
    border-radius: 4px;
    border: 1px solid #ddd;
    border-top: 3px solid #e91e63;
}

    .blue_bg p {
        font-size: 14px;
        color: #f52e55;
    }

        .blue_bg p span {
            font-size: 18px;
            font-weight: 600;
            color: #333;
        }

    .blue_bg img {
        position: absolute;
        right: 26px;
        top: 15px;
        width: 60px;
    }
.card-body {
    overflow:auto;
}

.dropdown-menu {
    position: absolute;
    width: 100%;
    top: 100%;
    left: 0;
    z-index: 1000;
    display: none;
    float: left;
    min-width: 10rem;
    padding: 0 0 0 10px;
    margin: 0;
    font-size: 1rem;
    color: #212529;
    text-align: left;
    list-style: none;
    background-color: inherit; 
    background-clip: padding-box;
    border: 1px solid rgba(0,0,0,.15);
    border-radius: 0.25rem;
    box-shadow: 0 0.5rem 1rem rgb(0 0 0 / 18%);
}