/*Barra Menu*/
/*Header*/
/*Cor*/
/*Footer*/
/*Font*/
/*Tamanho de texto*/

:root {
    --cor-primary: #1E3250;
    --cor-secondary: #4C6B8B;    
    --cor-grey: #282828;
}

* {
    border: 0px;
    padding: 0px;
    margin: 0;
    box-sizing: border-box;
}

body {
    /* background-image: linear-gradient(to top, #2828287a, #28282842), url(../images/banner.jpg); */
    /* background:  url(../images/banner.png) top center no-repeat; */
    background: #FFF;
    background-size: 100%;
    /* background-attachment: fixed; */
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    position: relative;
    font-size: 16px;
    color: #333;
}

.header {
    text-align: center;
    width: 100%;
    height: auto;
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 30px;
    padding: 15px 0 15px 0;
    margin-top: 20px;
}

.header img {
    max-width: 260px;
}

.lineTitle {
    /* border-top: 0.75px solid var(--cor-primary); */
    border-bottom: 0.75px solid var(--cor-primary);
    padding: 1em;
}

.titulo-canal {
    color: var(--cor-primary);
    font-family: 'Roboto', sans-serif;
    font-weight: 500;
    font-size: 42px;
    line-height: 36px;
    text-transform: uppercase;
    margin: 0;
}

#top-1 {
    display: none;
}

p,
span {
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    color: var(--cor-grey);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Roboto', sans-serif;
    font-weight: 500;
    color: var(--cor-grey);
}

strong {
    font-weight: 700;
}

h1 {
    font-size: 48px;
    line-height: 58px;
}

h2 {
    font-size: 30px;
    line-height: 45px;
    font-style: normal;
}

h3 {
    font-size: 18px;
    line-height: 27px;
    font-style: normal;
    margin-bottom: 20px;
}

h4 {
    font-size: 18px;
    line-height: 28px;
}

textarea {
    margin: 0;
    width: 100%;
    box-sizing: border-box;
}

ul {
    list-style-type: square;
}

select {
    width: 100% !important;
}

input,
textarea,
select {
    border: 1.3px solid #666666;
    border-radius: 5px;
    font-size: 15px;
    max-width: 100%;
    padding: 4px 8px 4px 8px;
}

input:hover,
input:focus,
textarea:hover,
textarea:focus,
select:hover,
select:focus {
    /* border: 1.3px solid #3e7898; */
    outline: none;
}

a {
    text-decoration: none;
}

fieldset ul li {
    list-style: none;
}

fieldset ul li label {
    font-weight: bold;
}

button {
    outline: none !important;
}

/**
    ===============================================================================
    Generic class
    ===============================================================================
*/

.hidden {
    display: none !important;
}

.logo {
    padding: 5px 10px 10px 0px;
}

.main {
    margin: 0em auto auto auto;
    width: 100%;
    padding-bottom: 0px;
}

/* h2, h3, h4, h5, h6 {
    border-bottom: solid 1px #a7a4a4;
    width: -moz-max-content;
    width: -webkit-max-content;
    width: -ms-max-content;
    width: max-content;
    padding-bottom: 0.5rem;
    margin: 33px 0px 1rem 5px;
    width: 100%;
} */



/**
    ===============================================================================
    Internacionalizacao
    ===============================================================================
*/


.altera-lingua-menu {
    position: relative;
    display: flex;
    align-items: flex-start;
    justify-content: flex-end;
    width: 98%;
    gap: 10px;
}


.altera-lingua {
    border-radius: 100%;
    width: 28px;
    height: 28px;
    border: none;
    cursor: pointer;
    overflow: hidden;
    display: block;
    font-size: 12px;
    float: right;
    padding: 0;
    margin: 0;
    background-color: #053067;
    color: #FFF;
    outline: none;
    font-weight: bold;
}


/* 
input.pt_BR {
    background-position-y: 0px;
    background: url(../images/flags/pt-br.png) center center no-repeat;
}

input.en_US {
    background-position-y: -18px;
    background: url(../images/flags/en.png) center center no-repeat;
    background-size: contain;
} */


.altera-lingua:hover,
.altera-lingua:focus {
    border: 0;
}


/**
    ===============================================================================
    Button
    ===============================================================================
*/

.buttonRemove {
    background: url("../images/icons/icon-excluir.png") center center no-repeat !important;
    background-size: cover;
    float: none !important;
    border: none !important;
    width: 20px !important;
    height: 20px;
    margin: 0 5px !important;
    padding: 0px !important;
    vertical-align: middle;
}

.buttonRemove:hover {
    cursor: pointer;
}

.dxButtons {
    margin: 30px 0 15px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
}

.button {
    cursor: pointer;
    background-clip: border-box;
    border-width: 0px;
    border-style: none;
    padding: 0 25px 0 25px;
    line-height: 25px;
    font-size: 16px;
}

#incidentStatusDiv fieldset ul li label.button--primary,
label.button--primary {
    font-weight: normal;
    display: inline-block;
}

#incidentStatusDiv fieldset ul li label.button--primary,
label.button--primary,
.button--primary {
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    font-weight: 500;
    text-align: center;
    color: #FFFFFF;
    margin: 0;
    padding: 15px 20px;
    border-radius: 0px;
    transition: all .4s;
    min-width: 270px;
    height: 62px;
    border: 1px solid var(--cor-grey);
    background: var(--cor-primary);
    box-shadow: 2px 2px 2px rgb(0 0 0 / 30%);
    letter-spacing: 0.035em;
}

#incidentStatusDiv fieldset ul li label.button--primary.primary-hover {
    background-color: #3e7898;
}

.button--primary:active {
    -webkit-box-shadow: inset 0px 1px 0px rgba(255, 255, 255, 0.03), inset 0px -1px 1px rgba(255, 255, 255, 0.05), 0px 1px 0px #777777, 0px 3px 3px rgba(0, 0, 0, 0.03);
    -moz-box-shadow: inset 0px 1px 0px rgba(255, 255, 255, 0.3), inset 0px -1px 1px rgba(255, 255, 255, 0.05), 0px 1px 0px #777777, 0px 3px 3px rgba(0, 0, 0, 0.03);
    box-shadow: inset 0px 1px 0px rgba(255, 255, 255, 0.03), inset 0px -1px 1px rgba(255, 255, 255, 0.05), 0px 1px 0px #777777, 0px 3px 3px rgba(0, 0, 0, 0.03);
}

.button--primary:hover {
    background-color: var(--cor-primary);
    color: #FFFFFF;
}

.primary-hover:hover {
    background: #474747;
}

.secondary-hover {
    background: #c5b6ac;
}

.fileParent {
    position: absolute;
    top: -100000px;
    opacity: 0;
    -moz-opacity: 0;
}

.background-1 {
    color: white;
    background: #004071;
    text-align: center;
}

.vertical-align {
    display: inline-block;
    vertical-align: middle;
    width: 100%;
}

.clear-list {
    list-style: outside none none;
}

.initial-list {
    list-style: initial;
}

.required-mark {
    color: #000;
}

.attach-label {
    opacity: 0;
    filter: alpha(opacity=0);
    position: absolute;
}

.attachment-list {
    margin: 20px 0px;
}

tr.even {
    background: none;
}

tr.odd {
    background: #d5d5d5;
}

.progress-cursor {
    cursor: progress;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999;
    width: 100%;
    height: 100%;
}

.overlay {
    opacity: 1;
    background: none no-repeat scroll center center #000c;
    position: fixed;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
}

.loading .load {
    position: absolute;
    top: 0;
    left: 0;
    margin: auto;
    text-align: center;
    z-index: 9999;
    right: 0;
    bottom: 0;
    width: 32px;
    height: 32px;
    background: #fff;
    border-radius: 50px;
}

.load-size {
    position: relative;
    display: block;
    margin: auto;
    width: 100%;
}

.modal-upload {
    width: 50%;
    height: 200px;
    background: #FFF;
    position: absolute;
    top: 0;
    left: 0;
    margin: auto;
    right: 0;
    bottom: 0;
    box-shadow: 0px 0px 15px 1px rgba(0, 0, 0, 0.75);
    border-radius: 5px;
}

.conteudo {
    height: 200px;
    display: flex;
    justify-content: center;
    flex-direction: column;
}

.title_loading {
    font-size: 22px !important;
    font-weight: bold;
    font-family: inherit;
    text-align: center;
    margin-top: 0;
    padding: 0;
    height: 1em;
    color: #000 !important;
}

.div-icon {
    display: flex;
    justify-content: center;
    width: 100%;
    margin-bottom: 10px;
}

.img-positivo {
    max-height: 45px;
}

.gif-loading {
    max-height: 45px;
}

.about_loading {
    font-size: 20px !important;
    text-align: center;
}

.div_loading {
    height: 30px;
    background: #FFF;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    width: 50%;
    border: 1px solid #f1f1f1;
    top: 140px;
}

.fechar {
    position: absolute;
    top: 0;
    right: 0;
    cursor: pointer;
    max-height: 40px;
}

div.footer {
    background-image: "";
    height: 95px;
    line-height: 95px;
    padding-top: 0;
    vertical-align: middle;
    margin-left: 0px;
    bottom: 0;
    width: 100%;
    font-size: 15px;
    background-color: #424242;
    padding: 0px 0 0px;
    color: #fff;
    position: relative;
    margin-top: 189px;
    display: flex;
    justify-content: center;
}

.example {
    position: fixed;
    right: 0;
    left: 0;
    margin-right: 120px;
    margin-left: auto;
    min-height: 1em;
    width: 90%;
}

#incidentAttachmentList {
    margin: 20px 30px;
}

ul#incidentAttachmentList li {
    margin: 10px 0;
}

.upload-button {
    margin: 0 !important;
}

.upload-button span {
    font-family: 'Roboto', sans-serif;
    color: #FFFFFF;
    font-weight: 500;
}

#validMailPhone {
    font-size: 0.90em;
    color: #B04212;
}

div.ui-datepicker {
    font-size: 10pt;
}

div .toast-title ul li {
    list-style-type: none;
}

select.locale {
    margin: 1em 0 0 0px;
}

table#incidentAuditTable {
    width: 100%;
    text-align: left;
}

#incidentStatusDiv fieldset ul li {
    margin: 10px 0;
}

#incidentStatusDiv fieldset ul li label {
    display: block;
    background-color: #e8e8e8;
    color: #000;
}

table#incidentAuditTable td,
table#incidentAuditTable th {
    padding: 0.4em;
}

table#incidentAuditTable th {
    background: #e8e8e8;
    color: #000;
}

table#incidentAuditTable tr:nth-child(2n+1) {
    background: #f5f6ff;
}

div.dxHint {
    display: inline-block;
}

li.protocolField label>p {
    font-weight: normal;
}

#searchIncidentStatusDiv .protocolField label {
    font-weight: normal;
    display: block;
}

#toast-container * {
    color: #ffffff;
}

.bandeira {
    margin-top: 5px;
    padding-bottom: 10px;
    margin-left: 1%;
}

.jumbotron {
    background: #f1f1f1;
    padding-top: 20px;
    margin: 30px auto 0 auto;
    border-radius: 0;
}

footer p {
    font-size: 14px;
    color: var(--cor-primary);
    font-weight: 500;
    margin: 0;
}

.div-footer {
    position: relative;
    bottom: 0;
    width: 100%;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #0000;
    z-index: -1;
}

nav.navbar-light.bg-light {
    background: #fff0 !important;
    margin: 1em 0;
    padding: 0;
}

ul.navbar-nav {
    width: 100%;
    display: flex;
    align-items: center;
}

li.nav-item {
    background: var(--cor-primary);
    text-align: center;
    height: 50px;
    line-height: 50px;
    width: 100%;
    transition: all .4s;
    border-right: 0.75px solid #FFFFFF;
}

li.nav-item:last-child {
    border-right: 0;
}


li.nav-item:hover {
    background: var(--cor-primary);
}

.nav-link {
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    transition: all 0.6s ease 0s;
    white-space: nowrap;
    color: #FFFFFF !important;
    font-weight: 500;
    letter-spacing: 0.035em;
    padding: 0 10px;
}

.navbar-brand img {
    margin: 10px 20px 10px 0px;
    max-height: 80px;
}

.dropdown-menu {
    background: #57c3c3;
}

.dropdown-menu a {
    text-align: center;
    border-bottom: 0.75px solid #757575;
    white-space: nowrap;
    padding: 0px 5px!important;
}

.dropdown-menu a:hover {
    background: var(--cor-primary);
}

.dropdown-menu a:last-child {
    border: 0;
}

@media(max-width: 708px) {

    ul.navbar-nav.align-items-center {
        padding-top: 30px;
    }

    li.nav-item {
        padding: 5px 0 5px 0;
    }

    .navbar-nav .dropdown-menu {
        text-align: center;
    }

}

.topo-site {
    box-shadow: 0px 2px 10px 0px rgba(90, 90, 90, 0.7);
}

.active {
    background: var(--cor-primary);
}

.itens-lgpd li {
    list-style: none;
}


/* .divider {
    display: block;
    width: 100%;
    height: 0.75px;
    background-color: var(--cor-primary);
    margin: 15px 0;
} */

.title-canal {
    font-weight: bold;
    margin-bottom: 20px
}


/*BANNER*/

.div-banner {
    background: #4e809c url(../images/banner_icts.png) center center no-repeat;
    height: 400px;
    position: relative;
    background-size: contain;
    margin-top: 90px;
}

.box-titulo {
    margin: auto;
    max-width: 900px;
    z-index: 2;
}

.box-titulo h1 {
    color: white !important;
    text-align: center;
    text-transform: uppercase;
    font-size: 38px;
    visibility: visible;
    font-weight: bold;
}

.overlay-banner {
    position: absolute;
    background: #000;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    opacity: 0.2;
}

@media(max-width:708px) {

    .div-banner {
        height: 200px;
    }

    .box-titulo h1 {
        color: white !important;
        font-size: 28px;
    }

}

button#fechar-menu {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    color: #FFF;
    height: 30px;
    width: 30px;
    cursor: pointer;
}

.some {
    display: none !important;
}


.ativo {
    background: var(--cor-primary);
    transition: all 0.5s ease 0s;
    border: 1px solid #232323;
}

.alert.alert-success {
    padding: 5px 15px 2px 15px;
    border: 0;
}

button.navbar-toggler {
    background: #FFF;
    margin: 5px 10px;
}

#sec-07 {
    background: #522582;
    position: relative;
}

.c-news {
    position: absolute;
    top: -83%;
    right: 0;
}

/*- POP UP -*/
.pop-up {

    position: fixed;
    top: 0px;
    background: rgba(0, 0, 0, 0.5);
    width: 100%;
    height: 100%;
    left: 0px;
    z-index: 99;
    display: flex;

}

.box-pop-up {
    margin: auto;
    min-width: 550px;
    background: #fff;
    padding: 30px;
}

/* INPUT CHECKBOX TERMO */

.switch{
    display: flex;
    align-items: center;
    cursor: pointer;
    margin: 25px 0;
}

.switch .switch-text {
    padding-left: 1rem;
    font-weight: bold;
}

.switch .switch-wrapper {
    display: inline-block;
    min-width: 60px;
    height: 34px;
    position: relative;
}

.switch .switch-wrapper .switch-button {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: 40px;
    background-color: var(--cor-grey);
}

.switch .switch-wrapper input {
    opacity: 0;
    width: 0;
    height: 0;
}

.switch .switch-wrapper .switch-button::before {
    content:"";
    width: 26px;
    height: 26px;
    position: absolute;
    left: 4px;
    bottom: 4px;
    border-radius: 50%;
    transition: .4s all ease;
    background: aliceblue;
}

.switch .switch-wrapper input:checked + .switch-button {
    background-color: var(--cor-primary);
}


.switch .switch-wrapper input:checked + .switch-button::before {
    transform: translateX(26px);
    content: "\f00c";
    font-family: FontAwesome;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #232323;
}

#complainantFields> div {
    margin-bottom: 1em;
}

.animate__animated.animate__fadeInDown {
    --animate-duration: 2.5s;
    --animate-delay: 2s;
}

