@import url('open-iconic/font/css/open-iconic-bootstrap.min.css');

html, body {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
}

a, .btn-link {
    color: #0366d6;
}

.btn-primary {
    color: #fff;
    background-color: #1b6ec2;
    border-color: #1861ac;
}

.content {
    padding-top: 1.1rem;
}

.valid.modified:not([type=checkbox]) {
    outline: 1px solid #26b050;
}

.invalid {
    outline: 1px solid red;
}

.validation-message {
    color: red;
}

#blazor-error-ui {
    background: lightyellow;
    bottom: 0;
    box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.2);
    display: none;
    left: 0;
    padding: 0.6rem 1.25rem 0.7rem 1.25rem;
    position: fixed;
    width: 100%;
    z-index: 1000;
}

    #blazor-error-ui .dismiss {
        cursor: pointer;
        position: absolute;
        right: 0.75rem;
        top: 0.5rem;
    }

.modal-personalizado {
    width: 1000px;
    background-color: #fefefe;
    border-radius: 4px;
    border: 1px solid #fff;
    padding: 1.1rem;
    z-index: 102;
    box-shadow: 0 2px 2px rgba(0,0,0,.75);
}

.modal-personalizado-pesquisa {
    width: 1300px;
    background-color: #fefefe;
    border-radius: 4px;
    border: 1px solid #fff;
    padding: 1.1rem;
    z-index: 102;
    box-shadow: 0 2px 2px rgba(0,0,0,.75);
}

/* ----------------------*/
/*toast notification css */
/* ----------------------*/
.toast {
    display: none;
    padding: 1.5rem;
    color: #fff;
    z-index: 1;
    position: absolute;
    width: 25rem;
    top: 2rem;
    border-radius: 1rem;
    left: 50%;
    margin-top: 50px;
}

.toast-icon {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 1rem;
    font-size: 2.5rem;
}

.toast-body {
    display: flex;
    flex-direction: column;
    flex: 1;
    padding-left: 1rem;
}

    .toast-body p {
        margin-bottom: 0;
    }

.toast-visible {
    display: flex;
    flex-direction: row;
    animation: fadein 1.5s;
    animation-fill-mode: forwards;
}

@keyframes fadein {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.blazored-toast-container {
    margin-top: 30px;
    margin-bottom: 20px;
}

/* ----------------------*/
/*dialog confirmation css*/
/* ----------------------*/
.pop-container {
    position: relative;
}

.popconfirm {
    background-color: white;
    border-style: solid;
    border-width: 1px;
    border-color: lightblue;
    width: 400px;
    position: absolute;
    top: -9px;
    padding: 10px;
    border-radius: 8px;
    left: -420px;
}

/* ----------------------*/
/*estilos hetosoft css   */
/* ----------------------*/
.heto-font-table {
    font-size: 12px;
}

.heto-font-buton {
    font-size: 11px;
    width: 100%;
}

.heto-btn-sml {
    height: 2.5vh;
}

.blazored-modal-content {
    max-height: calc(100vh - 250px);
    overflow-y: auto;
}