@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

:root {
    --main-bg-color: #f1f3f6;
}

html {
    font-weight: 400;
    font-size: 15px;
}

@media (min-width: 768px) {
    html {
        font-size: 15px;
    }
}

html {
    position: relative;
    min-height: 100%;
}

body {
    font-family: 'Poppins', sans-serif;
    -webkit-touch-callout: none;
    background-color: var(--main-bg-color);
}

.body-bg {
    background-color: var(--main-bg-color);
}

.swiper {
    max-width: 100%;
    overflow: hidden;
}

.fw-300 {
    font-weight: 300;
}

.fw-500 {
    font-weight: 500;
}

/*a {
    color: #f05b41;
}*/

.btn-success {
    color: #fff !important;
}

#loader {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgb(255, 255, 255, 0.50);
    z-index: 10000;
}

.card.card-rounded {
    border-radius: 15px;
    box-shadow: none;
    border: none;
}

.dw-450 {
    max-width: 450px;
    margin-left: auto;
    margin-right: auto;
}

.multiline-text {
    white-space: pre-wrap;
}

    /*.multiline-text:first-line {
        line-height: 0;
    }*/

.navbar .dropdown-menu {
    border: none !important;
    box-shadow: 0 .5rem 1rem rgba(0,0,0,.15) !important;
}

.dropdown-item svg {
    margin-right: 14px;
}

.d-shadow {
    filter: drop-shadow(0 .5rem 1rem rgba(0,0,0,.15));
    
}

.btn:focus .btn:active,
.btn-close:focus, .btn-close:active {
    outline: none !important;
    box-shadow: none;
}

.showPreview {
    cursor: pointer;
}

.vistoriaNote:not(:last-child) {
    padding-bottom: 12px;
    margin-bottom: 12px;
    border-bottom: 1px dashed #666;
}

.dot-small {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.menu-icon {
    border-radius: 50%;
    width: 30px;
    height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #f1f3f3;
    color: var(--bs-dark);
    box-shadow: rgba(0, 0, 0, 0.1) 0px 1px 3px 0px, rgba(0, 0, 0, 0.06) 0px 1px 2px 0px;
}

.menu-icon-reparacoes {
    background-color: #f5f573;
    color: var(--bs-dark);
}

.menu-icon-validades {
    background-color: #ffad68;
    color: var(--bs-dark);
}

.menu-icon-verificacoes {
    background-color: #f5f5f5;
    color: var(--bs-dark);
}

.menu-icon-manutencoes {
    background-color: #86e2f1;
    color: var(--bs-dark);
}

.menu-icon-acompanhamentos {
    background-color: #c9cacb;
    color: var(--bs-dark);
}

.menu-icon-peritagens {
    background-color: #7fe9b8;
    color: var(--bs-dark);
}

.menu-icon-visitas {
    background-color: #ffc0f7;
    color: var(--bs-dark);
}

.menu-number {
    min-width: 26px;
    background-color: #dee5eb;
    text-align: center;
    font-size: .8rem;
    font-weight: 600;
    line-height: 2;
    border-radius: 4px;
    padding: 0 4px;
}

#reader {
    background-color: #000;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
    max-height: 50vh;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 10px;
}

.blink {
    animation: blink-animation 1s linear infinite;
    -webkit-animation: blink-animation 1s linear infinite;
}

@keyframes blink-animation {
    30% {
        opacity: 0.25;
    }

    60% {
        opacity: 1;
    }
}

@-webkit-keyframes blink-animation {
    30% {
        opacity: 0.25;
    }

    60% {
        opacity: 1;
    }
}

.nav-pills .nav-link {
    border-radius: var(--bs-border-radius-pill) !important;
    margin-right: 12px;
    margin-bottom: 12px;
    background-color: #fff;
}

    .nav-pills .nav-link.active {
        box-shadow: 0 .125rem .25rem rgba(0,0,0,.075) !important;
    }

.validation-summary-errors > ul > li {
    border-bottom: 1px dashed;
    display: table;
    line-height: normal;
    color: var(--bs-danger);
}

.lh-0 {
    line-height: 0;
}

.table.table-transparent > :not(caption) > * > * {
    background-color: transparent !important;
}