﻿@import url('open-iconic/font/css/open-iconic-bootstrap.min.css');


.msg_history {
    height: 60vh;
    overflow: auto;
    /*overflow-y: auto;*/
    /*display:flex;*/
    width: 80vw;
    flex-direction: column;
}

html, body {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
}

.mdc-snackbar__surface {
    background-color: white !important;
}

a, .btn-link {
    color: #0366d6;
}

.btn-primary {
    color: #fff;
    background-color: #1b6ec2;
    border-color: #1861ac;
}

app {
    position: relative;
    display: flex;
    flex-direction: column;
}

.top-row {
    height: 3.5rem;
    display: flex;
    align-items: center;
}

.main {
    flex: 1;
}

    .main .teste {
        background-color: #f7f7f7;
        border-bottom: 1px solid #d6d5d5;
    }

    .main .top-row {
        background-color: #f7f7f7;
        border-bottom: 1px solid #d6d5d5;
        justify-content: flex-end;
    }

        .main .top-row > a, .main .top-row .btn-link {
            white-space: nowrap;
            margin-left: 1.5rem;
        }

        .main .top-row a:first-child {
            overflow: hidden;
            text-overflow: ellipsis;
        }

.sidebar {
    background-image: linear-gradient(180deg, rgb(5, 39, 103) 0%, #3a0647 70%);
}

    .sidebar .top-row {
        background-color: rgba(0,0,0,0.4);
    }

    .sidebar .navbar-brand {
        font-size: 1.1rem;
    }

    .sidebar .oi {
        width: 2rem;
        font-size: 1.1rem;
        vertical-align: text-top;
        top: -2px;
    }

    .sidebar .nav-item {
        font-size: 0.9rem;
        padding-bottom: 0.5rem;
    }

        .sidebar .nav-item:first-of-type {
            padding-top: 1rem;
        }

        .sidebar .nav-item:last-of-type {
            padding-bottom: 1rem;
        }

        .sidebar .nav-item a {
            color: #d7d7d7;
            border-radius: 4px;
            height: 3rem;
            display: flex;
            align-items: center;
            line-height: 3rem;
        }

            .sidebar .nav-item a.active {
                background-color: rgba(255,255,255,0.25);
                color: white;
            }

            .sidebar .nav-item a:hover {
                background-color: rgba(255,255,255,0.1);
                color: white;
            }

.content {
    padding-top: 1.1rem;
}

.navbar-toggler {
    background-color: rgba(255, 255, 255, 0.1);
}

.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;
    }

.mdc-button {
    min-width: 40px !important;
}

span.material-icons.mdc-button__icon {
    margin: 0px;
}

.mdc-button__icon {
    vertical-align: middle;
    padding: 0px;
}

.mdc-dialog .mdc-dialog__content {
    text-align: center !important;
}

.close {
    color: #6200ee;
}

.badge1 {
    position: relative;
}

    .badge1[data-badge]:after {
        content: attr(data-badge);
        position: absolute;
        top: -35px;
        right: -130px;
        font-size: .8em;
        background: rgb(134, 214, 62);
        color: white;
        width: 20px;
        height: 20px;
        text-align: center;
        line-height: 18px;
        border-radius: 50%;
        font-weight: bold;
    }

@media (max-width: 767.98px) {
    .main .top-row:not(.auth) {
        display: none;
    }

    .main .top-row.auth {
        justify-content: space-between;
    }

    .main .top-row a, .main .top-row .btn-link {
        margin-left: 0;
    }
}



@media (min-width: 768px) {
    app {
        flex-direction: row;
    }

    .sidebar {
        width: 250px;
        height: 100vh;
        position: sticky;
        top: 0;
    }

    .main .top-row {
        position: sticky;
        top: 0;
    }

    .main > div {
        padding-left: 2rem !important;
        padding-right: 1.5rem !important;
    }

    .navbar-toggler {
        display: none;
    }

    .sidebar .collapse {
        /* Never collapse the sidebar for wide screens */
        display: block;
    }


    /*chat*/

    textarea {
        border: 1px dashed #888;
        border-radius: 5px;
        width: 80%;
        overflow: auto;
        background: #f7f7f7
    }

    .received, .sent {
        position: relative;
        font-family: arial;
        font-size: 1.1em;
        border-radius: 10px;
        padding: 20px;
        margin-bottom: 20px;
    }

        .received:after, .sent:after {
            content: '';
            border: 20px solid transparent;
            position: absolute;
            margin-top: -30px;
        }

    .sent {
        background: #03a9f4;
        color: #fff;
        margin-left: 10%;
        top: 50%;
        text-align: right;
    }

    .received {
        background: #4CAF50;
        color: #fff;
        margin-left: 10px;
        margin-right: 10%;
    }

    .sent:after {
        border-left-color: #03a9f4;
        border-right: 0;
        right: -20px;
    }

    .received:after {
        border-right-color: #4CAF50;
        border-left: 0;
        left: -20px;
    }

    /* div within bubble for name */
    .user {
        font-size: 0.8em;
        font-weight: bold;
        color: #000;
    }

    .msg {
        /*display: inline;*/
    }

    .body-edit {
        width: 100vw;
        height: 100vh;
    }

    .container-vertical {
        background-color: white;
        height: 100%;
        width: 15%;
        bottom: 0;
    }

    .container-horizontal {
        background-color: #EDEDED;
        position: relative;
        top: -100%;
        padding: 0%;
        left: 15%;
        height: 8%;
        width: 85%;
    }

    #infoatendente {
        background-color: #e5ddd5;
        width: 100%;
        height: 15%;
    }

    .container-centro {
        background-color: #E0E0E0;
        position: relative;
        top: -100%;
        padding: 0%;
        left: 15%;
        width: 84%;
        height: 99%;
    }


    .container {
        /*max-width: 1170px;
             margin: auto;
        */
        width: 100%;
    }

    img {
        max-width: 100%;
    }

    .inbox_people {
        background: #f8f8f8 none repeat scroll 0 0;
        float: left;
        overflow: hidden;
        width: 40%;
        border-right: 1px solid #c4c4c4;
    }

    .inbox_msg {
        border: 1px solid #c4c4c4;
        clear: both;
        overflow: hidden;
        height: 80%;
    }

    .top_spac {
        margin: 20px 0 0;
    }


    .recent_heading {
        float: left;
        width: 40%;
    }

    .srch_bar {
        display: inline-block;
        text-align: right;
        width: 60%;
    }

    .headind_srch {
        padding: 10px 29px 10px 20px;
        overflow: hidden;
        border-bottom: 1px solid #c4c4c4;
    }

    .recent_heading h4 {
        color: #05728f;
        font-size: 21px;
        margin: auto;
    }

    .srch_bar input {
        border: 1px solid #cdcdcd;
        border-width: 0 0 1px 0;
        width: 80%;
        padding: 2px 0 4px 6px;
        background: none;
    }

    .srch_bar .input-group-addon button {
        background: rgba(0, 0, 0, 0) none repeat scroll 0 0;
        border: medium none;
        padding: 0;
        color: #707070;
        font-size: 18px;
    }

    .srch_bar .input-group-addon {
        margin: 0 0 0 -27px;
    }

    .chat_ib h5 {
        font-size: 15px;
        color: #464646;
        margin: 0 0 8px 0;
    }

        .chat_ib h5 span {
            font-size: 13px;
            float: right;
        }

    .chat_ib p {
        font-size: 14px;
        color: #989898;
        margin: auto
    }

    .chat_img {
        float: left;
        width: 11%;
    }

    .chat_ib {
        float: left;
        padding: 0 0 0 15px;
        width: 88%;
    }

    .chat_people {
        overflow: hidden;
        clear: both;
    }

    .chat_list {
        border-bottom: 1px solid #c4c4c4;
        margin: 0;
        padding: 18px 16px 10px;
    }

    .inbox_chat {
        height: 550px;
        overflow-y: scroll;
    }

    .active_chat {
        background: #ebebeb;
    }

    .incoming_msg_img {
        display: inline-block;
        width: 4%;
    }

    .sent_msg {
        float: right;
        width: 46%; /*tava 46*/
        padding: 0 0 0 10px; /*kmkjnk*/
        vertical-align: top;
        /*        height:54px;
        max-height:100%;*/
    }

    .received_msg {
        display: inline-block;
        padding: 0 0 0 10px;
        vertical-align: top;
        width: 92%;
    }

    .received_withd_msg p, received_withd_msg img {
        background: #ebebeb none repeat scroll 0 0;
        border-radius: 3px;
        color: #646464;
        font-size: 14px;
        margin: 0;
        padding: 5px 10px 5px 12px;
        width: 100%;
    }

    .sent_witdh_msg p { /*06/01/21 */
        background: red none repeat scroll 0 0;
        border-radius: 3px;
        color: #646464;
        font-size: 14px;
        margin: 0;
        padding: 5px 10px 5px 12px;
        width: 100%;
        /*height:auto;*/ /*adiantou mas qnd chega no fim ele diminui*/
        /*max-height: 100%; */ /*adiantou mas qnd chega no fim ele diminui*/
    }

    .time_date {
        color: #747474;
        display: block;
        font-size: 12px;
        margin: 8px 0 0;
    }

    .received_withd_msg {
        width: 57%;
    }

    .mesgs {
        /*float: left;*/
        padding: 30px 15px 0 25px;
        /* width 100%;  comentei aqui 7/01*/
    }

    .sent_msg p {
        background: #05728f none repeat scroll 0 0;
        border-radius: 3px;
        font-size: 14px;
        margin: 0;
        color: #fff;
        padding: 5px 10px 5px 12px;
        width: 100%;
    }

    .outgoing_msg {
        overflow: hidden;
        margin: 15px 0 15px;
    }

    .input_msg_write input {
        background: rgba(0, 0, 0, 0) none repeat scroll 0 0;
        border: medium none;
        color: #4c4c4c;
        font-size: 15px;
        min-height: 48px;
        width: 100%;
    }

    .type_msg {
        border-top: 1px solid #c4c4c4;
        position: relative;
    }

    .msg_send_btn {
        background: #05728f none repeat scroll 0 0;
        border: medium none;
        border-radius: 50%;
        color: #fff;
        cursor: pointer;
        font-size: 17px;
        height: 33px;
        position: absolute;
        right: 0;
        top: 11px;
        width: 33px;
    }

    .messaging {
        padding: 0 0 10px 0; /*estava 50// diminuir espaçamento entre o fim da area do chat pro botao mensagens prontas*/
    }
     /* AQUI XISDE*/
    /*.msg_history {*/
        /*height: 60vh;*/
        /*overflow: auto;*/
        /*overflow-y: auto;*/
        /*display:flex;*/
        /*width: 80vw;
        flex-direction: column;
    }*/

    /*    .footer {
        background: #6c757d;
        position: absolute;
        bottom: 0;
        width: 100%;
        padding: 0;
    }*/

    .formulario {
        padding-top: 130px;
        font-weight: bold;
    }


    .lembrete {
        font-size: 16px;
        color: rgb(255, 255, 255);
        font-weight: bold;
        text-transform: uppercase;
        text-align: center;
    }
}

.info-atendente {
    background-color: white; /* #42A8FF;/*#42A8FF ; cor final */
    padding: 10px;
    border-top: 1px solid white;
    /*border-bottom: 1px solid white;*/
}

    .info-atendente p {
        text-align: center;
        font-weight: bold;
        color: #42A8FF;
        margin-bottom: 5px;
    }


    .info-atendente button {
        color: white;
        margin: 0 auto;
        margin-left: 58px;
        display: inline-block;
    }


        .info-atendente button:hover {
            background-color: lightgreen;
            border: none;
            color: white;
        }

.side-nav {
    width: 300px;
    background: white; /*#6c757d;*/
    bottom: 0;
}

.container-text {
    margin-top: 10px;
    margin-bottom: 0px;
}

.botoes-chat { /*posiçao dos botoes */
    float: right;
    width: 100px;
}

    .botoes-chat button { /* botao de enviar do chat*/
        margin-top: -200px;
        margin-left: -20px;
    }

        .botoes-chat button:hover { /* botao de enviar msg do chat*/
            background-color: lightgreen;
        }

    .botoes-chat .btn-danger { /* botao de reportar bug do chat*/
        margin-top: -100px;
        margin-left: -49px;
    }

#respostaprontalbotao {
    margin-top: 10px;
    margin-bottom: 2px;
    display: inline;
}

    #respostaprontalbotao:hover {
        opacity: 0.5;
    }

#iconNome:focus {
    outline: thin dotted;
    outline: 0px auto -webkit-focus-ring-color;
    outline-offset: 0px;
}

.botoes-chat button {
    margin-top: -200px;
    margin-left: -20px;
}

.mdc-button__ripple {
    margin-left: -10px;
}

#botao_enviar {
/*    padding: 0;
    margin: 10px;*/
    margin-top: -55px;
    margin-left: 20px;
    outline: thin dotted;
    outline: 0px auto -webkit-focus-ring-color;
    outline-offset: 0px;
}

    #botao_enviar span {
        font-size: 25px
    }

span.material-icons.mdc-button__icon {
    color: white;
}

#botao_finalizar {
    padding: 0;
    margin-left: 40px;
    outline: thin dotted;
    outline: 0px auto -webkit-focus-ring-color;
    outline-offset: 0px;
}

#matBlazor_id_164a8bbf-0dde-4b67-836f-36ee0d7aa03c, .mdc-button mdc-ripple-upgraded {
    outline: 0px auto -webkit-focus-ring-color;
    outline: none !important;
    outline-style: none !important;
}

#respostaprontalbotao:focus, #respostaprontalbotao:active:focus, #respostaprontalbotao.active:focus {
    outline: 0px auto -webkit-focus-ring-color;
    outline: none !important;
    outline-style: none !important;
}

.mdc-button {
    padding: 0 !important;
}

#matBlazor_id_7675f822-75e0-4e2c-85fb-ab5d22ca01f8 {
    padding: -50px;
}


button:focus, button:active:focus, button.active:focus {
    outline: none !important;
    outline-style: none !important;
}

.mdc-button .mdc-button__ripple:after {
    background-color: none;
}

.mdc-button .mdc-button__ripple:before {
    background-color: none;
}
/*.mdc-button .mdc-button__ripple::before, .mdc-button .mdc-button__ripple::after*/

.mdc-dialog--open .mdc-dialog__container {
    width: 900px !important;
}

.mdc-dialog .mdc-dialog__surface {
    max-width: 100% !important;
}

.mdc-button .mdc-button__ripple::before, .mdc-button .mdc-button__ripple::after {
    background-color: none !important;
}

.mdc-button__ripple::before {
    background-color: none !important;
}

.mdc-button__ripple::after {
    background-color: none !important;
}

.mdc-button__ripple:active {
    background-color: none !important;
}

.mdc-button__ripple:focus {
    background-color: none !important;
}

.mdc-ripple-upgraded--background-focuse {
    background-color: none !important;
}


@media only screen and  (max-width: 1370px) and (min-height:500px) {

    .post-it-dica {
       
        width: 250px;
        height: 240px;
        position: absolute;
        background: #ffa !important; /*#ffa*/
        overflow: hidden;
        margin-top: 280px !important;
        margin: 30px auto;
        padding: 20px;
        border-radius: 0 0 0 30px/45px;
        box-shadow: inset 0 -40px 40px rgba(0,0,0,0.2), inset 0 25px 10px rgba(0,0,0,0.2), 0 5px 6px 5px rgba(0,0,0,0.2);
        font-family: 'Permanent Marker', cursive;
        line-height: 1.7em;
        font-size: 11px;
        /*    -webkit-mask-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAIAAACQd1PeAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAA5JREFUeNpiYGBgAAgwAAAEAAGbA+oJAAAAAElFTkSuQmCC);
*/ color: #130d6b;
        margin-right: 8px;
        right: 1%;
    }

    .post-it-atencao {
       
        position: absolute;
        background: #ffa !important; /*#ffa*/
        overflow: hidden;
        margin: 30px auto;
        padding: 20px;
        border-radius: 0 0 0 30px/45px;
        box-shadow: inset 0 -40px 40px rgba(0,0,0,0.2), inset 0 25px 10px rgba(0,0,0,0.2), 0 5px 6px 5px rgba(0,0,0,0.2);
        font-family: 'Permanent Marker', cursive;
        line-height: 1.7em;
        font-size: 11px;
        /*    -webkit-mask-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAIAAACQd1PeAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAA5JREFUeNpiYGBgAAgwAAAEAAGbA+oJAAAAAElFTkSuQmCC);
*/ color: #130d6b;
        margin-right: 8px !important;
        margin-top: -45px !important;
        right: 1%;
    }
}

@media only screen and (min-width: 950px) and (max-width: 1366px) {



    .body-edit {
        width: 1360px;
    }


    .container-centro {
        padding: 0px;
    }

    .container-vertical {
        background-color: white;
        height: 100%;
        width: 15%;
        bottom: 0;
    }

    .container {
        width: 100%;
    }

    .atendimento {
        padding: 20px;
    }

    .msg_history {
        height: 60vh; /*330*/
        /*overflow-y: auto;*/
        /*display:flex;*/
        flex-direction: column;
    }

    .messaging {
        padding: 0 0 10px 0; /*estava 50// diminuir espaçamento entre o fim da area do chat pro botao mensagens prontas*/
    }

    #botao_enviar { /*margin-left: 40px*/
        padding: 0;
        margin-right: 10px;
        margin-bottom: -180px;
       /* margin-top: 85px;*/
        outline: thin dotted;
        outline: 0px auto -webkit-focus-ring-color;
        outline-offset: 0px;
    }

        #botao_enviar span {
            font-size: 25px
        }

    span.material-icons.mdc-button__icon {
        color: white;
    }

    #botao_finalizar {
        padding: 0;
        margin-left: 40px;
        outline: thin dotted;
        outline: 0px auto -webkit-focus-ring-color;
        outline-offset: 0px;
    }

    #matBlazor_id_164a8bbf-0dde-4b67-836f-36ee0d7aa03c, .mdc-button mdc-ripple-upgraded {
        outline: 0px auto -webkit-focus-ring-color;
        outline: none !important;
        outline-style: none !important;
    }

    .mesgs {
        /*float: left;*/
        padding: 30px 15px 0 25px;
        /* width 100%;  comentei aqui 7/01*/
    }

    .sent_msg {
        float: right;
        width: 46%; /*tava 46*/
        padding: 0 0 0 10px; /*kmkjnk*/
        vertical-align: top;
        /*        height:54px;
        max-height:100%;*/
    }

    .row textarea {
        height: auto;
    }
}

#botao_finalizar:hover {
    opacity: 0.4;
}
/* RESPOSTAS PRONTAS PAGE*/
.arearespostas {
    margin-left: 340px;
    margin-top: 70px;
    width: 682px;
    height: 473px;
}

.textarea {
    padding: 0.1875rem 0.625rem;
    height: auto;
    margin-left: 50px;
}

.badge1 { /*pendente*/
    position: absolute;
    margin-left: -70px;
    margin-top: 35px;
}

.badge2 { /*em andamento*/
    position: absolute;
    margin-left: -70px;
    margin-top: 35px;
}

.badge4 { /*mensagem recebida*/
    position: absolute;
    margin-left: -70px;
    margin-top: 35px;
}

    .badge4[data-badge]:after {
        content: attr(data-badge);
        position: absolute;
        top: -36px;
        right: -200px;
        font-size: .7em;
        background: rgb(16, 255, 0);
        border: solid 2px white;
        /* color: red; */
        width: 20px;
        height: 20px;
        text-align: center;
        line-height: 18px;
        border-radius: 50%;
        font-weight: bold;
    }



.badge2[data-badge]:after {
    content: attr(data-badge);
    position: absolute;
    top: -35px;
    right: -145px;
    font-size: .7em;
    background: rgb(68, 101, 175);
    color: #ffffff;
    width: 20px;
    height: 20px;
    text-align: center;
    line-height: 18px;
    border-radius: 50%;
    font-weight: bold;
}

.badge1[data-badge]:after {
    content: attr(data-badge);
    position: absolute;
    top: -35px;
    right: -130px;
    font-size: .7em;
    background: rgb(68, 101, 175);
    color: #ffffff;
    width: 20px;
    height: 20px;
    text-align: center;
    line-height: 18px;
    border-radius: 50%;
    font-weight: bold;
}


.header-do-menu {
    background-color: red;
    color: rebeccapurple;
}


.soprahover:hover {
    background-color: #8ae7f9;
}


/* PAGINA DE ALTERAR URA------------------------------------------------------------------ */
.post-it-dica {
    width: 250px;
    height: 240px;
    position: absolute;
    background: #ffa;
    overflow: hidden;
    margin: 30px auto;
    padding: 20px;
    border-radius: 0 0 0 30px/45px;
    box-shadow: inset 0 -40px 40px rgba(0,0,0,0.2), inset 0 25px 10px rgba(0,0,0,0.2), 0 5px 6px 5px rgba(0,0,0,0.2);
    font-family: 'Permanent Marker', cursive;
    line-height: 1.7em;
    font-size: 11px;
    /*    -webkit-mask-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAIAAACQd1PeAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAA5JREFUeNpiYGBgAAgwAAAEAAGbA+oJAAAAAElFTkSuQmCC);
*/ color: #130d6b;
    margin-right: 8px;
    right: 1%;
}

.post-it-atencao {
    width: 250px;
    height: 240px;
    position: absolute;
    background: #ffa;
    overflow: hidden;
    margin: 30px auto;
    padding: 20px;
    border-radius: 0 0 0 30px/45px;
    box-shadow: inset 0 -40px 40px rgba(0,0,0,0.2), inset 0 25px 10px rgba(0,0,0,0.2), 0 5px 6px 5px rgba(0,0,0,0.2);
    font-family: 'Permanent Marker', cursive;
    line-height: 1.7em;
    font-size: 11px;
    /*    -webkit-mask-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAIAAACQd1PeAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAA5JREFUeNpiYGBgAAgwAAAEAAGbA+oJAAAAAElFTkSuQmCC);
*/ color: #130d6b;
    margin-right: 8px;
    right: 1%;
}



/* PAGINA DE SESSAO------------------------------------------------------------------ */

.post-it-sessao {
    width: 250px;
    height: 360px;
    position: absolute;
    background: #ffa;
    overflow: hidden;
    margin: 80px auto;
    padding: 20px;
    border-radius: 0 0 0 30px/45px;
    box-shadow: inset 0 -40px 40px rgba(0,0,0,0.2), inset 0 25px 10px rgba(0,0,0,0.2), 0 5px 6px 5px rgba(0,0,0,0.2);
    font-family: 'Permanent Marker', cursive;
    line-height: 1.7em;
    font-size: 11px;
    /*    -webkit-mask-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAIAAACQd1PeAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAA5JREFUeNpiYGBgAAgwAAAEAAGbA+oJAAAAAElFTkSuQmCC);
*/ color: #130d6b;
    margin-right: 0px;
    right: 1%;
}

.botoes-sessoes:hover {
    opacity: 0.2;
}

/* PAGINA DE MENU ATENDIMENTO------------------------------------------------------------------ */
.container-tabelas {
    position: absolute;
    /*margin-top: 90px;*/
    padding-left: 60px;
    margin-left: 50px;
}

.tabela3 {
    margin-top: -50px;
}

/* pagina de att*/

.att {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}


.rz-datatable-thead th {
    background-color: #8794ab !important; /*#6e9fb7*/
}

/****************configurar ura*/
.tabela2 {
    margin-left: 450px;
    margin-top: -248px !important;
}


@media only screen and (min-width: 1400px) {

    .msg_history {
        height: 70vh !important;
    }

    #botao_enviar {
        margin-top: 72px;
    }
}

    @media only screen and (min-width: 1600px) {

    .msg_history {
        height: 65vh !important;
    }

        #botao_enviar {
            margin-top: 80px;
            margin-left: -10px;
        }

        .mdc-button mdc-ripple-upgraded{ 
            margin-top:40px !important;
        }

        .mdc-button mdc-button--unelevated mdc-ripple-upgraded {
            margin-top: 40px !important;
        }
}