﻿body {
    font-family: Montserrat, sans-serif;
    font-size: 14px !important;
}

.bg-blueLogin {
    /*background-color: #04A5DC!important;*/
    background-image: url(/Content/Img/wallpaperflare.com_wallpaper.jpg);
    background-size: cover;
    background-position: center;
}

.alert-red {
    background-color: #e0554b!important;
    color: white;
    font-size: 13px;
    padding: .3rem;
}

.alert-green {
    background-color: #00A884 !important;
    color: white;
    font-size: 13px;
    padding: .3rem;
}
 
a{
    text-decoration: none!important;
}

.fade-out{
    opacity: 0;
    transition: opacity 1s ease-out;
}

.fade-in{
    opacity: 1;
    transition: opacity 1s ease-in-out;
}

.loader-96 {
    width: 20px;
    height: 20px;
    background: #04A4DA;
    display: inline-block;
    position: relative;
    animation: rotationBack 1s ease-in-out infinite reverse;
}

    .loader-96::before {
        content: "";
        left: 0;
        top: 0;
        transform: rotate(45deg);
        position: absolute;
        width: 20px;
        height: 20px;
        background: #04A4DA;
        box-shadow: 0 0 5px rgba(0, 0, 0, 0.15);
    }

    .loader-96::after {
        content: "";
        width: 10px;
        height: 10px;
        border-radius: 50%;
        position: absolute;
        left: 50%;
        top: 50%;
        background: #FFF;
        transform: translate(-50%, -50%);
        box-shadow: 0 0 5px rgba(0, 0, 0, 0.15);
    }

@-webkit-keyframes rotationBack {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(-360deg);
    }
}

@keyframes rotationBack {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(-360deg);
    }
}

.font-12 {
    font-size: 12px;
    color: #b7b7c7!important;
}