﻿/* Please see documentation at https://docs.microsoft.com/aspnet/core/client-side/bundling-and-minification
for details on configuring this project to bundle and minify static web assets. */

a.navbar-brand {
    white-space: normal;
    text-align: center;
    word-break: break-all;
}

/* Provide sufficient contrast against white background */
a {
    color: #0366d6;
}

.btn-primary {
    color: #fff;
    background-color: #1b6ec2;
    border-color: #1861ac;
}

.nav-pills .nav-link.active, .nav-pills .show > .nav-link {
    color: #fff;
    background-color: #1b6ec2;
    border-color: #1861ac;
}

/* Sticky footer styles
-------------------------------------------------- */
html {
    font-size: 14px;
}

@media (min-width: 768px) {
    html {
        font-size: 16px;
    }
}

.border-top {
    border-top: 1px solid #e5e5e5;
}

.border-bottom {
    border-bottom: 1px solid #e5e5e5;
}

.box-shadow {
    box-shadow: 0 .25rem .75rem rgba(0, 0, 0, .05);
}

button.accept-policy {
    font-size: 1rem;
    line-height: inherit;
}

/* Sticky footer styles
-------------------------------------------------- */
html {
    position: relative;
    min-height: 100%;
}

body {
    /* Margin bottom by footer height */
    margin-bottom: 60px;
}

.footer {
    bottom: 0;
    width: 100%;
    white-space: nowrap;
    line-height: 60px; /* Vertically center the text there */
}

.form-group-custom-check {
    margin-top: -7px;
}

.select2-selection {
    height: auto !important;
    min-height: 46px !important;
}

.select2-container--default .select2-selection--single {
    border: 1px solid #dee2e6 !important;
}

.select2-selection__rendered {
    color: #8898aa !important;
}
.custom-toggle {
    height: 24px;
}

.glass{
    /* From https://css.glass */
    background: rgba(255, 255, 255, 0.11);
    border-radius: 16px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
}

.loader-div{
    position: fixed;
    left: 65px;
    top: 0;
    width: 100vw;
    height: 100vh;
    display: none;
}

#loader {
    position: fixed;
    left: 50%;
    top: 50%;
    z-index: 1;
    width: 120px;
    height: 120px;
    margin: -76px 0 0 -76px;
    border: 16px solid #f3f3f3;
    border-radius: 50%;
    border-top: 16px solid #3498db;
    -webkit-animation: spin 2s linear infinite;
    animation: spin 2s linear infinite;
}

@-webkit-keyframes spin {
    0% { -webkit-transform: rotate(0deg); }
    100% { -webkit-transform: rotate(360deg); }
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Add animation to "page content" */
.animate-bottom {
    position: relative;
    -webkit-animation-name: animatebottom;
    -webkit-animation-duration: 1s;
    animation-name: animatebottom;
    animation-duration: 1s
}

@-webkit-keyframes animatebottom {
    from { bottom:-100px; opacity:0 }
    to { bottom:0px; opacity:1 }
}

@keyframes animatebottom {
    from{ bottom:-100px; opacity:0 }
    to{ bottom:0; opacity:1 }
}

.hidden{
    display: none;
}
@media screen {
    .title {
        display: none;
    }
}
@media print {
    
    .sidenav, .navbar, .navbar-vertical  {
        display: none !important;
    }
    body {
        background-color: white !important;
    }
    footer {
        display: none !important;
    }
    .form-control:disabled, .form-control[readonly] {
        background-color: white !important;
        
    }
    .select2-container--default.select2-container--disabled .select2-selection--multiple {
        background-color: white !important;
    }
    .row {
        page-break-inside: avoid;
    }
    .title {
        display: block;
    }
    .card-footer {
        display: none;
    }
    .card-header {
        display: block;
    }
    .header {
        height: 5px;
    }
    .tabelaprint {
        width: 100%;
    }
@page {
    margin: 30px;
    margin-top: 60px;  
}

  * {
    -webkit-print-color-adjust: exact !important;   
    color-adjust: exact !important;                  
}

select[readonly] {
    pointer-events: none;
    touch-action: none;
}