﻿@charset "UTF-8";

.form-switch .form-check-input {
    width: 3em!important;
    margin-left: 0.5em!important;
}
.loading-spinner {
    display: none; /* Oculta inicialmente */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.8); /* Fundo semi-transparente */
    z-index: 9999;
    align-items: center;
    justify-content: center;
}

    .loading-spinner img {
        width: 80px;
        height: 80px;
    }

.navbar.default-layout-navbar {
    padding-top: 0 !important;
    margin-top: 0 !important;
}
.errorLabelInput {
    color: red;
    font-size: 10px;
}

#loading-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(239, 239, 239, 0.8)#efefef; /* fundo cinza quase preto */
    backdrop-filter: blur(4px);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Logo com fade in/out */
.loader img {
    width: 100px;
    height: auto;
    animation: fadeInOut 5s ease-in-out infinite;
}

/* Animação de fade in e fade out */
@keyframes fadeInOut {
    0% {
        opacity: 0;
    }

    50% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}
.shadow-lg.custom-shadow-color {
    box-shadow: 0px 0px 10px 0 #198ae3 !important
}
.btn-gradient-red {
    background: linear-gradient(135deg, rgba(132,0,0,1) 0%,rgba(255,68,68,1) 100%);
    border: 0;
    -webkit-transition: opacity 0.3s ease;
    transition: opacity 0.3s ease;
    color:white
}
.input-date-short {
    width: 150px !important;
}
.card-custom {
    margin-bottom: 0rem !important;
    padding: 0rem 0rem !important;
}
.chartDonut {
    width:250px!important;
    height:250px!important;
}
.btnMini {
    width: 48px !important;
    padding-left: 15px !important;
    padding-right: 15px !important;
}
.btnSmall {
    padding-left: 10px !important;
    padding-right: 10px !important;
}