/* [DGMATTOS] ELEMENTOS DE ESTILO PARA CUSTAS AUTOMATICAS */
.text-white{
    color:#fafafa !important;
}

img.full-width{
    max-width: 95%;
}

.d-flex{
    display: flex;
}

.justify-content-between{
    justify-content: space-between;
}

.mt-1{
    margin-top: 1rem;
}

.mt-2{
    margin-top: 2rem;
}


.mt-3{
    margin-top: 3rem;
}

.container-fluid{
    min-width: 100vw !important;
}
.only-print,#print-container-fake{
    display: none;
}

@media print {
    img {
        filter: grayscale(100%);
    }

   
    .only-print,#print-container-fake{
        display: block;
    }
    #print-container-fake{
        position: fixed;
        left: 0;
        top: 0;
        right: 0;
        bottom: 0;
        min-width: 100vw !important;
        max-width: 100vw !important;
        min-height: 100vh !important;
        background-color: #fafafa !important;
        z-index: 999999;
        padding-top: 5rem;
    }
}

@media (min-width: 990px) {
    .col-flex-center{
        min-height: 64vh !important;
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
    }
}
/* [DGMATTOS] */

.btn-panel{
    text-decoration: none !important;
}

.text-darkgrey{
    color: darkgrey !important;
} 

.btn-panel div.panel{
    transition: all 0.3s ease;
}

.btn-panel div.panel:hover{
    -webkit-box-shadow: -1px 0px 37px -15px rgba(0,0,0,0.75);
    -moz-box-shadow: -1px 0px 37px -15px rgba(0,0,0,0.75);
    box-shadow: -1px 0px 37px -15px rgba(0,0,0,0.75);
}
.btn-group.btn-group-justified a{
    text-decoration: none !important;
}

.btn.btn-primary{
    color: #fafafa;
}

#page-footer{
    width: 100vw !important;
}
#page-footer.fixed{
    position: fixed;
    bottom: 0 !important;
    left: 0 !important;
    right: 0 !important;
    z-index: 10 !important;
}
body{
    padding-bottom: 100px !important;
}

button{
    cursor: pointer;
}
.decoration-none{
    text-decoration: none !important;
}
.text-black{
    color: black !important;
}

.font-big{
    font-size: 3rem;
}
.font-normal{
    font-family: 2rem;
}

.pirnt-content{
    padding: 1rem 1.5rem;
}

.text-right{
    text-align: right !important;
}

.bibi-alert {
    position: fixed;
    z-index: 9999 !important;
    min-width: 250px;
    max-width: 500px;
    margin: 10px;
    padding: 15px;
    opacity: 0;
    transition: opacity 0.4s ease, transform 0.4s ease;
  }

  .bibi-top,
  .bibi-bottom {
    left: 50%;
    transform: translateX(-50%);
  }

  .bibi-top { top: 10px; }
  .bibi-topright { top: 10px; right: 10px; }
  .bibi-topleft { top: 10px; left: 10px; }

  .bibi-bottom { bottom: 10px; }
  .bibi-bottomright { bottom: 10px; right: 10px; }
  .bibi-bottomleft { bottom: 10px; left: 10px; }

  .bibi-alert.show {
    opacity: 1;
    transform: translateX(0);
  }

  .bibi-alert.hide {
    opacity: 0;
  }