.field-validation-error {
    color: #e01d1d;
}

.close-alert {
    position: absolute;
    right: -10px;
    top: -15px;
    border-radius: 15px;
    width: 30px;
    height: 31px;
}

.ui-autocomplete {
    position: relative;
    border-radius: 3px;
    top: 0;
    left: 0;
    cursor: default;
    min-width: 100px;
    max-width: 100%;
    max-height: 100px;
    background: #ffffff;
    color: #000000;
    z-index: 9999999 !important;
    overflow-y: auto;
    overflow-x: hidden;
}

.icon-raio {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 15px;
    height: 15px;
    border: 2px solid red;
    background-color: yellow;
    border-radius: 50%;
    font-size: 10px;
    color: black;
}
 

.hidden {
    display: none;
}

.size-15 {
    height: 15px;
    line-height: 15px;
    width: 15px;
}

.submit-progress {
    z-index: 999 !important;
    position: fixed;
    height: 100%;
    width: 100%;
    top: 50%;
}

.submit-progress-bg {
    background-color: lightgray;
    opacity: .5;
}

.progress-box {
    z-index: 99 !important;
    position: fixed;
    top: 50%;
    left: 50%;
    height: 4.5em;
    padding-top: 1.3em;
    /* The following rules are the
    ones most likely to change */
    width: 20em;
    /* Set 'margin-left' to a negative number
    that is 1/2 of 'width' */
    margin-left: -10em;
    padding-left: 2.1em;
    background-color: #0d6efd;
    color: white;
    -webkit-border-radius: 0.4em;
    -moz-border-radius: 0.4em;
    border-radius: 0.4em;
    box-shadow: 0.4em 0.4em rgba(0,0,0,0.6);
    -webkit-box-shadow: 0.4em 0.4em rgba(0,0,0,0.6);
    -moz-box-shadow: 0.4em 0.4em rgba(0,0,0,0.6);
}

::-webkit-scrollbar {
    width: 7px;
    height: 7px;
}

::-webkit-scrollbar-track {
    background: rgb(217, 212, 212);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb {
    background: rgb(158, 158, 158);
    border-radius: 10px;
}

    ::-webkit-scrollbar-thumb:hover {
        background: rgb(100, 100, 100);
        border-radius: 10px;
    }

html::-webkit-scrollbar-thumb:active {
    background: rgb(68, 68, 68);
    border-radius: 10px;
}

.table td, .table th {
    padding: .25rem;
}


@media print {
    @page {
        margin: 0;
        size: 50mm 30mm;
    }

    body.receipt {
        width: 50mm;
        height: 30mm;
    }

    body.receipt .sheet {
        width: 50mm;
        height: 30mm;
    }
   
    .tabela-print {
        margin: 0 !important;
    }

    body {
        margin: 0;
        padding: 0;
    }
}

.btn-exclamacao {
    position: relative;
}

.btn-exclamacao::after {
    content: "!";
    position: absolute;
    top: -5px;
    right: -5px;
    background-color: red;
    color: white;
    font-size: 14px;
    font-weight: bold;
    width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
}