/*==============================================================================
 * GLOBAL
 *============================================================================*/

body {
    overflow-x: hidden;
}

#appDashboard {
    min-height: 100vh !important;
    margin-top: -.1em;
    margin-right:-25px;
}

.container {
    max-width: 1440px;
}

.card {
    box-shadow: none;
    border-radius: 20px 20px 0px 0px;
}
.card-header.recipe-tab { /* Linha abaixo da tab de titulo */
    border-bottom: 1px solid rgba(0,0,0,.125);
    margin-top: 0px;
}
.info-box {
    min-height: 100px;
}
.info-box .info-box-icon {
    width: 35px;
}
.box-container {
    border-left: 1px solid #dee2e6;
    border-right: 1px solid #dee2e6;
    border-bottom: 3px solid #28A9BE;
    border-radius:  0 0 5px 5px;
}
.borda-card {
    /*    border: 1px solid #dee2e6;
        padding: 0 10px;
        border-radius:  0 0 5px 5px;*/
}

footer {
    position: absolute;
    bottom: 0;
    width: 100%;
}

.tituloValor {
    color: #008080;
}

/*==============================================================================
 * MENU
 *============================================================================*/
.user-panel p {
    color: white !important;
}

/*==============================================================================
* GRAFICO
*=============================================================================*/
.corCardTituloGrafico {
    background: #2897AD;
}
.fontLabelTitulo {
    font-family: Helvetica;
    color: #333;
    font-weight: 700;
}
.corFundoGrafico {
    background : #2c73a2;
}



/*==============================================================================
 * Média Querys
 *============================================================================*/
@media(max-width: 767px){
    span {
        font-size: .8em;
    }
    .info-box .info-box-icon {
        font-size: 1.2em;
        width: 25px;
    }
    .fluxo-caixa {
        flex-direction: column;
    }
    .fluxo-caixa .box-receita, .box-espaco {
        width: 100% !important;
    }
}
@media(min-width: 768px) {
    .box-receita{
        max-width: calc(100% / 2 - 3px);
    }
    .box-espaco {
        max-width: calc(100% / 2 - 5px);
    }
}
@media(min-width: 992px) {
    .ocultar-btn-menu {
        display: none;
    }
    .ocultar-barra-menu {
        display: none;
    }
    footer {
        width: calc(100% - 4.6rem);
    }
}
@media(max-width: 1140px) {
    p, div, span{
        font-size: .7rem;
    }
}
@media(max-width: 992px) {
    /*crenilson*/
    .mb7-lg {
        margin-bottom: 6em;
    } 
}

    .mb7 {
        margin-bottom: 6em;
    } 

/*==============================================================================
 * Tooltip - Sobrescrevendo
 *============================================================================*/
.tooltip.show {
    opacity: 1;
}

.tooltip-inner {
    background-color: #FFFACD;
    box-shadow: 0px 0px 4px black;
    color: black;
    opacity: 1 !important;
}

.tooltip.bs-tooltip-right .arrow:before {
    border-right-color: #FFFACD !important;
}

.tooltip.bs-tooltip-left .arrow:before {
    border-left-color: #FFFACD !important;
}

.tooltip.bs-tooltip-bottom .arrow:before {
    border-bottom-color: #FFFACD !important;
}

.tooltip.bs-tooltip-top .arrow:before {
    border-top-color: #FFFACD !important;
}

/*==============================================================================
 * Tooltip - Personalizado
 *============================================================================*/
a .dica  i {
    color:#363636;
}
.Dica{
    position: relative;
    margin: 30px;
    display: inline-block;
}
.Dica:hover .DicaTexto{
    visibility: visible;
    position: absolute;
    z-index:999;
    transition: visibility, 1s linear 100ms;
}
.Dica:hover i {
    background:transparent;
    color:#FFFACD;
    z-index:999;
}
.DicaTexto{
    position: absolute;
    visibility: hidden;
    font-size: .9em;
    width: 200px;
    background:#FFFACD; /* Fundo do tooltip*/
    color:#000;
    text-align: center;
    padding: 5px  0;
    border-radius: 5px;
    bottom: 100%;
    left: 50%;
    margin-left: -120px;
    margin-bottom: 7px;
    box-shadow: 0px 0px 4px black;
    color: black;

}
.DicaTexto:after{
    content: " ";
    position: absolute;
    top: 100%;
    left: 50%;
    margin-left: -5px;
    border-width: 7px;
    border-style: solid;
    border-color: #FFFACD #FFFACD transparent transparent; /*Cor do biquinho do tooltip*/

}

/*==============================================================================
 * Loading - Pré carregamento da página
 *============================================================================*/
#box-preloader {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    position: fixed;
    z-index: 999;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: -o-linear-gradient(305deg, #f3f4f8, #cccdd1);
    background-image: linear-gradient(145deg, #f3f4f8, #cccdd1);
    opacity: .9;
}
.loader {
    -webkit-animation: girar 2s infinite;
    animation: girar 2s infinite;
    height: 50px;
    width: 50px;
    margin-bottom: 1em;
}
.loader::before, .loader::after {
    display: block;
    content: '';
    border-radius: 50%;
    height: 20px;
    width: 20px;
}
.loader::before {
    -webkit-animation: circulo1 2s infinite;
    animation: circulo1 2s infinite;
    background-color: #cb2025;
    -webkit-box-shadow: 30px 0 0 #f8b334;
    box-shadow: 30px 0 0 #f8b334;
    margin-bottom: 10px;
}
.loader::after {
    -webkit-animation: circulo2 2s infinite;
    animation: circulo2 2s infinite;
    background-color: #00a096;
    -webkit-box-shadow: 30px 0 0 #97bf0d;
    box-shadow: 30px 0 0 #97bf0d;
}
.status {
}
@-webkit-keyframes girar {
    0% {
        -webkit-transform: rotate(0deg) scale(1);
        transform: rotate(0deg) scale(1);
    }
    50% {
        -webkit-transform: rotate(360deg) scale(1.6);
        transform: rotate(360deg) scale(1.6);
    }
    100% {
        -webkit-transform: rotate(720deg) scale(1);
        transform: rotate(720deg) scale(1);
    }
}
@keyframes girar {
    0% {
        -webkit-transform: rotate(0deg) scale(1);
        transform: rotate(0deg) scale(1);
    }
    50% {
        -webkit-transform: rotate(360deg) scale(1.6);
        transform: rotate(360deg) scale(1.6);
    }
    100% {
        -webkit-transform: rotate(720deg) scale(1);
        transform: rotate(720deg) scale(1);
    }
}
@-webkit-keyframes circulo1 {
    0% {
        -webkit-box-shadow: 30px 0 0 #f8b334;
        box-shadow: 30px 0 0 #f8b334;
    }
    50% {
        -webkit-box-shadow: 0 0 0 #f8b334;
        box-shadow: 0 0 0 #f8b334;
        margin-bottom: 0;
        -webkit-transform: translate(15px,15px);
        transform: translate(15px,15px);
        border-radius: 0;
    }
    100% {
        -webkit-box-shadow: 30px 0 0 #f8b334;
        box-shadow: 30px 0 0 #f8b334;
        margin-bottom: 10px;
    }
}
@keyframes circulo1 {
    0% {
        -webkit-box-shadow: 30px 0 0 #f8b334;
        box-shadow: 30px 0 0 #f8b334;
    }
    50% {
        -webkit-box-shadow: 0 0 0 #f8b334;
        box-shadow: 0 0 0 #f8b334;
        margin-bottom: 0;
        -webkit-transform: translate(15px,15px);
        transform: translate(15px,15px);
        border-radius: 0;
    }
    100% {
        -webkit-box-shadow: 30px 0 0 #f8b334;
        box-shadow: 30px 0 0 #f8b334;
        margin-bottom: 10px;
    }
}
@-webkit-keyframes circulo2 {
    0% {
        -webkit-box-shadow: 30px 0 0 #97bf0d;
        box-shadow: 30px 0 0 #97bf0d;
    }
    50% {
        -webkit-box-shadow: 0 0 0 #97bf0d;
        box-shadow: 0 0 0 #97bf0d;
        margin-top: -20px;
        -webkit-transform: translate(15px,15px);
        transform: translate(15px,15px);
        border-radius: 0;
    }
    100% {
        -webkit-box-shadow: 30px 0 0 #97bf0d;
        box-shadow: 30px 0 0 #97bf0d;
        margin-top: 0;
    }
}
@keyframes circulo2 {
    0% {
        -webkit-box-shadow: 30px 0 0 #97bf0d;
        box-shadow: 30px 0 0 #97bf0d;
    }
    50% {
        -webkit-box-shadow: 0 0 0 #97bf0d;
        box-shadow: 0 0 0 #97bf0d;
        margin-top: -20px;
        -webkit-transform: translate(15px,15px);
        transform: translate(15px,15px);
        border-radius: 0;
    }
    100% {
        -webkit-box-shadow: 30px 0 0 #97bf0d;
        box-shadow: 30px 0 0 #97bf0d;
        margin-top: 0;
    }
}






/***********************************/
h1, h2, h3, h4, h5, h6 {
}
section {
  /*  min-height: 100vh;*/

}
a, a:hover, a:focus, a:active {
    text-decoration: none;
    outline: none;
}
ul {
    margin: 0;
    padding: 0;
    list-style: none;
}.bg-gray {
    background-color: #f9f9f9;
}

.site-heading h2 {
  display: block;
  font-weight: 700;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.site-heading h2 span {
  color: #ffaf5a;
}

.site-heading h4 {
  display: inline-block;
  padding-bottom: 20px;
  position: relative;
  /*text-transform: capitalize;*/
  z-index: 1;
}

.site-heading h4::before {
  background: #ffaf5a none repeat scroll 0 0;
  bottom: 0;
  content: "";
  height: 2px;
  position: absolute;
  width: 100%;
}

.site-heading h2 span {
  color: #ffaf5a;
}

.site-heading {
  margin-bottom: 60px;
  overflow: hidden;
  margin-top: 50px;
}

.pricing-area .site-heading {
  margin-bottom: 70px;
}

.pricing-item {
  background: #ffffff none repeat scroll 0 0;
  -moz-box-shadow: 0 0 10px #cccccc;
  -webkit-box-shadow: 0 0 10px #cccccc;
  -o-box-shadow: 0 0 10px #cccccc;
  box-shadow: 0 0 10px #cccccc;
  margin-bottom: 0px;
  position: relative;
  /*padding-bottom: 20px;*/
  z-index: 9;
}

/* Crenilson*/
.pricing-itemGrafico {
  background: #ffffff none repeat scroll 0 0;
  -moz-box-shadow: 0 0 10px #cccccc;
  -webkit-box-shadow: 0 0 10px #cccccc;
  -o-box-shadow: 0 0 10px #cccccc;
  box-shadow: 0 0 10px #cccccc;
  margin-bottom: 10px;
  margin-top:20px;
  position: relative;
  z-index: 9;
}
/* end Crenilson*/

.pricing-item .icon {
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  font-size: 50px;
  height: 100px;
  left: 50%;
  line-height: 100px;
  margin-left: -50px;
  margin-top: -50px;
  position: absolute;
  text-align: center;
  top: 0;
  width: 100px;
}

.pricing-item .icon::after {
  background: #ffffff none repeat scroll 0 0;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  content: "";
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: -1;
}

.pricing-item.active .icon::after {
  background: #ffaf5a none repeat scroll 0 0;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  content: "";
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: -1;
}

.pricing-item.active .icon i {
  color: #ffffff !important;
}

.pricing-item .icon i {
  color: #ffaf5a;
  cursor: inherit !important;
}

.pricing-header h4 {
  font-weight: 600;
  text-transform: uppercase;
  color: #323a45;
}

.pricing-header h2 {
  color: #323a45;
  font-size: 50px;
  font-weight: 900;
  letter-spacing: -1px;
  line-height: 1;
  margin-bottom: 0;
}

.pricing-header h2 sup {
  font-size: 24px;
  font-weight: 500;
  top: -25px;
}

.pricing-header h2 sub {
  font-size: 18px;
  font-weight: 400;
  margin-left: -5px;
}

.pricing-item .pricing-header span {
  font-family: "Poppins",sans-serif;
  font-weight: 600;
  text-transform: uppercase;
}

.pricing-header {
  border-bottom: 1px solid #e5e5e5;
  margin-bottom: 20px !important;
  padding: 50px 30px 15px !important;
}

.pricing-headerGrafico {
  border-bottom: 1px solid #e5e5e5;
  margin-bottom: 0px !important;
  padding: 4px !important;
}

.pricing-item .footer {
  padding: 20px 30px 30px;
}

.pricing-item li {
  font-family: "Poppins",sans-serif;
  /*line-height: 0px;*/
  margin: 0 30px;
  /*text-transform: capitalize;*/
}

.pricing-area .pricing-item.active .pricing-header {
  background: #ffaf5a none repeat scroll 0 0;
  border-color: transparent;
  margin: 0;
}

.pricing-area.color-yellow .pricing-item.active .pricing-header {
  background: #ffaf5a none repeat scroll 0 0;
}


/* Crenilson*/
.corCardVendasHoje{
    background: #3DE3A1 !important;
}

.corCardVendasOntem {
    background: #1E90FF !important;;
}

.corCardVendasSemana {
background: #97bf0d !important; 
}

.corCardVendasMes {
  background: #4682B4!important;
}

.corCardVendasAno {
  background: #A1CB8C!important;
}

.corCardVendasTotal {
  background: #7FB9EB!important;
}

.corCardDestaqueDia {
    background: #40E0D0!important;
}

.corCardDestaqueMes {
    background: #00CED1!important;
}

.corEstimativaVendasPrazoHoje {
    background: #E0C42A!important;    
}

.corEstimativaVendasPrazoTrimestre {
    background: #BDC01B!important;    
}

.corCardGrafico {
    background: #B0E0E6 !important;
}

.corCardEstoqueCusto {
    background: #00CED1!important;
}

.corCardEstoqueVenda {
    background: #20B2AA !important;
}

.corCardMarkup {
    background: #40E0D0 !important;
}

.corCardCartaoCredito {
    background: #BDB76B !important;
}
.corCardCartaoCreditoTrimestre {
    background: #B0C4DE !important;
}
.corCardCheque {
    background: #8FBC8F !important;
}
.corCardChequeTrimestre {
    background: #48D1CC !important;
}

.corCardPagarHoje {
    background: #FA8072!important;
}
.corCardPagarTrimestre {
    background: #FFA07A!important;
}

.corCardPedidosNoventa {
    background: #FDA268 !important;
}

.corCardPedidos {
    background: #FFC16E !important;
}




/* end crenilson*/

.pricing-area .pricing-item.active .pricing-header h2,
.pricing-area .pricing-item.active .pricing-header h4,
.pricing-area .pricing-item.active .pricing-header span {
  color: #ffffff;
}

.pricing-area .pricing-item.active .pricing-header span.badge {
  background: #ffffff none repeat scroll 0 0;
  color: #323a45;
}

.pricing-item li i {
  color:#4F4F4F;
  margin-left: 2px;
  margin-right: 5px;
}

.pricing-item li i:hover {
  cursor: help;
  color:#DCDCDC;
}

.pricing-item li i.fa-times {
  color: #e22626;
}


.btn-sm {
    padding: 8px 35px;
    font-size: 12px;
}
.btn-dark {
  background-color: #323a45;
  color: #ffffff;
  border: 2px solid #323a45;
}

.btn-dark.border {
  background-color: transparent;
  color: #323a45;
  border: 2px solid #323a45;
}

.btn-dark.border:hover {
  background-color: #323a45;
  color: #ffffff !important;
  border: 2px solid #323a45;
}

.btn-theme {
    background-color: #ffaf5a;
    color: #ffffff !important;
    border: 2px solid #ffaf5a;
}






/*==============================================================================
 * Tabela Google Chart
 *============================================================================*/
.cssHeaderRow {
    /*position: fixed;*/
    background-color: #48D1CC;    
}
.cssHeaderRow th{
    /*position: fixed;*/
    background-color: #48D1CC;    
}
.cssTableRow {
    background-color: #fff;
}
.cssOddTableRow {
    background-color: #D1EEEE;
}
.cssSelectedTableRow {
    font-size: 18px;
    font-weight:bold;
}
.cssHoverTableRow {
    background: #9FB6CD;
    font-size: 20px;
    font-weight:bold;
    color: #fefefe
}
.cssHeaderCell {
    color: #FFFFFF;
    font-size: 16px;
    padding: 5px !important;
    border: solid 1px #FFFFFF;
    text-align: center;
}
.cssTableCell {
    font-size: 14px;
    padding: 5px !important;
    border: solid 1px #FFFFFF;
}
.cssRowNumberCell {
    text-align: center;
}




.callout {
    margin-left: 4px;
    margin-top: 10px;
    margin-right: 24px;
}

.corCallout {
    color:#D39E00 !important;
}

.clock {
    color: greenyellow;
    background: black;
    margin-left: 4px;
    margin-top: 10px;
    margin-right: 24px;
    padding-left:  10px;
    padding-right: 10px;
    font-weight: bold;
    font-size: 22px;
}