@import url(colorsv2.css);

/**
    ===============================================================================
    Reset and style for tags
    ===============================================================================
*/

* {
    margin: 0px;
    padding: 0px;
    border: 0;
    box-sizing: border-box;
}

html {
    font-size: 100%;
}

body {
    background: #fff;
    font-family: 'ValeSansVariable-Italic', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.75;
    color: var(--color-Text);
}


div#complainantFields div,
fieldset div {
    margin: 1em 0 0 0;
}

p {
    font-size: 1rem;
    line-height: 26px;
    margin-bottom: .5rem;
}

label {
    font-family: 'ValeSansVariable-Italic', sans-serif;
    font-size: 1rem;
    font-weight: 400;
    display: inline-block;
    margin: .5rem 0;
}

h1,
h2,
h3,
h4,
h5 {
    margin: 1rem 0;
    font-family: 'ValeSansVariable-Italic', sans-serif;
    line-height: 1.3;
    color: var(--color-primary);
    font-weight: 500;
}

h1 {
    font-size: 47px;
    color: #fff;
}

h2 {
    font-size: 2.441rem;
}

h3 {
    font-size: 1.953rem;
}

h4 {
    font-size: 1.563rem;
}

h5 {
    font-size: 1.25rem;
}


small,
.text_small {
    font-size: 0.8rem;
}

textarea {
    margin: 0;
    width: 100%;
    box-sizing: border-box;
}

select {
    width: 100%;
}

input:hover,
input:focus,
textarea:hover,
textarea:focus,
select:hover,
select:focus {
    /* border: 1.3px solid #3e7898; */
    outline: none;
}

input,
textarea,
select {
    border: 1.3px solid var(--border);
    border-radius: 5px;
    font-size: 15px;
    max-width: 100%;
    width: 100%;
    padding: 14px 8px 14px 8px;
    background: #fff;
}

input:focus,
textarea:focus,
select:focus {
    background-color: #F4F9FF;
}

ul,
ol {
    list-style: none;
    padding: 0;
}

a {
    text-decoration: none;
}

a[disabled="disabled"] {
    pointer-events: none;
}


fieldset ul li label {
    font-weight: 300;
}

button {
    outline: none !important;
    cursor: pointer;
    font-family: inherit;
}


/**
    ===============================================================================
    Generic class
    ===============================================================================
*/

.hidden {
    display: none !important;
}

.logo {
    padding: 5px 10px 10px 0px;
}


/**
    ===============================================================================
    Idiomas
    ===============================================================================
*/

/* Select de idioma (dentro do nav): mostra apenas o idioma selecionado em formato de bandeira */
.select-language {
    position: relative;
    display: flex;
    align-items: center;
}

.select-language-trigger {
    width: 32px;
    height: 32px;
    border: none;
    cursor: pointer;
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: transparent;
    border-radius: 4px;
    position: relative;
    background-size: 22px;
    background-position: center center !important;
}

.select-language-trigger .select-language-chevron {
    position: absolute;
    right: -16px;
    bottom: 4px;
    font-size: 20px;
    opacity: 1;
    color: white;
}

.select-language-dropdown {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    margin-top: 4px;
    padding: 6px;
    background: #fff;
    border: 1px solid #e6e7e8;
    border-radius: 6px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    z-index: 1020;
    flex-wrap: wrap;
    gap: 4px;
    min-width: 60px;
}

.select-language-dropdown.open {
    display: flex;
    justify-content: center;
    gap: 6px;
}

.select-language .altera-lingua {
    width: 28px;
    height: 28px;
    border: none;
    cursor: pointer;
    overflow: hidden;
    display: block;
    padding: 0;
    margin: 0 2px;
    line-height: 28px;
    flex-shrink: 0;
}

.altera-lingua {
    width: 25px;
    border: none;
    cursor: pointer;
    overflow: hidden;
    display: block;
    padding: 0;
    margin: 0 3px;
    line-height: 28px;
}


input.pt_BR,
.select-language-trigger.pt_BR {
    background-position-y: 0px;
    background: url(../images/flags/pt-br.png) center center no-repeat;
    background-size: 22px;
}

input.en_US,
.select-language-trigger.en_US {
    background-position-y: -18px;
    background: url(../images/flags/canada.png) center center no-repeat;
    background-size: 22px;
}

input.es_ES,
.select-language-trigger.es_ES {
    background-position-y: -18px;
    background: url(../images/flags/es.png) center center no-repeat;
    background-size: 22px;
}

input.fr,
.select-language-trigger.fr {
    background-position-y: -18px;
    background: url(../images/flags/fr.png) center center no-repeat;
    background-size: 22px;
}

input.ar,
.select-language-trigger.ar {
    background-position-y: -18px;
    background: url(../images/flags/ar.png) center center no-repeat;
    background-size: 22px;
}

input.in,
.select-language-trigger.in {
    background-position-y: -18px;
    background: url(../images/flags/in.png) center center no-repeat;
    background-size: 22px;
}

input.ma,
.select-language-trigger.ma {
    background-position-y: -18px;
    background: url(../images/flags/ma.png) center center no-repeat;
    background-size: 22px;
}

input.ja,
.select-language-trigger.ja {
    background: url('../images/flags/ja.png') center center no-repeat;
    background-size: 22px;
}

input.ch,
.select-language-trigger.ch {
    background-position-y: -18px;
    background: url(../images/flags/zh.gif) center center no-repeat;
    background-size: 22px;
}


.altera-lingua:hover,
.altera-lingua:focus {
    border: 0;
}


/**
    ===============================================================================
    Button
    ===============================================================================
*/

button.swal2-confirm.swal2-styled {
    background: var(--color-primary);
}

.buttonRemove {
    background: url(../images/icons/close.jpg) center center no-repeat !important;
    background-size: cover;
    float: none !important;
    border: none !important;
    width: 16px !important;
    height: 16px;
    margin: 0 5px !important;
    padding: 0px !important;
    vertical-align: middle;
    border-radius: 50%;
}

.buttonRemove:hover {
    cursor: pointer;
}

.dxButtons {
    margin: 30px 0 15px 0;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.button {
    cursor: pointer;
    background-clip: border-box;
    padding: 8px 16px 8px 16px;
    font-size: 15px;
    font-weight: 500;
    transition: background .4s;
}

#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 {
    color: #fff;
    border: 1px solid var(--color-secondary);
    border-radius: 15px;
    margin: 0;
    background: var(--color-secondary);
    box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
}

.button--primary:hover {
    background-color: #fff;
    color: var(--color-secondary);
}

.button--secondary {
    color: #fff;
    border: 1px solid var(--color-secondary);
    border-radius: 15px;
    margin: 0;
    background: var(--color-secondary);
    box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
}

.fileParent {
    position: absolute;
    top: -100000px;
    opacity: 0;
    -moz-opacity: 0;
}

.background-1 {
    color: white;
    background: #004071;
    text-align: center;
}

.attach-label {
    opacity: 0;
    filter: alpha(opacity=0);
    position: absolute;
}

.attach-label {
    opacity: 0;
    filter: alpha(opacity=0);
    position: absolute;
}

.required-mark {
    color: red;
    font-weight: bold;
}

.attachment-list {
    margin: 10px 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 {
    position: absolute;
    opacity: 0.7;
    background: none no-repeat scroll center center #333333;
    position: fixed;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
}

.overlay-banner {
    position: absolute !important;
    opacity: 0.3;
    background: none no-repeat scroll center center #333333;
    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;
}

.title_loading {
    font-size: 22px !important;
    font-weight: bold;
    font-family: inherit;
    text-align: center;
    margin-top: 0;
    padding: 0;
    height: 1em;
    color: var(--color-Text) !important;
}

.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;
}

#incidentAttachmentList {
    margin: 20px 30px;
    height: 125px;
    overflow-y: scroll;
}

#incidentAttachmentList::-webkit-scrollbar-track {
    background-color: red;
}

.upload-button {
    padding: 8px 16px;
}


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: var(--background);
    color: var(--color-Text);
    width: 100%;
    padding: 7px;
    font-weight: 600;
}

table#incidentAuditTable td,
table#incidentAuditTable th {
    padding: 0.4em;
    border: 1px solid var(--border);
}

table#incidentAuditTable th {
    background: #e8e8e8;
    color: var(--color-Text);
}

table#incidentAuditTable tr:nth-child(2n+1) {
    background: var(--background);
}

/* li.nav-item:last-child {
    border-right: 0;
} */

.container {
    width: 100%;
    max-width: 1150px;
    margin: 0 auto;
}

/* BANNER */

main {
    width: 100%;
    margin-top: 115px;
    /* margin: 82px auto;
    position: absolute;
    z-index: 1; */
}

.about-div-page {
    width: 100%;
    max-width: 1300px;
    padding-left: 15px;
    padding-right: 15px;
    padding-top: 30px;
    margin: 0 auto;
}

fieldset {
    border: none;
}

#incidentCreationDiv {
    margin: 0 auto;
}

#validMailPhone {
    font-size: 0.90em;
    color: red;
    margin: .5rem 0;
}

.anonymousEmailDescription {
    margin: .5rem 0;
    color: red;
    font-size: .8rem;
}

.accordion {
    margin: auto;
    width: 100%;
    max-width: 800px;
}

.accordion input {
    display: none;
}

.accordion-header {
    margin: 0;
}

.accordion-button {
    font-size: 1.125rem;
    font-weight: 500;
}

.accordion-button:not(.collapsed)::after {
    filter: brightness(0.5);
}

.accordion {
    color: var(--color-Text);
    cursor: pointer;
    padding: 1em;
    margin-bottom: 2.5rem;
    width: 100%;
    text-align: left;
    outline: none;
    font-size: 1rem;
    font-weight: 500;
    transition: 0.4s;
}

.content-accordion {
    padding: 1em;
    display: none;
    background-color: #f1f1f1;
    overflow: hidden;
    margin-bottom: 1rem;
    margin-top: -1rem;
}

.accordion-button:not(.collapsed) {
    color: white;
    background-color: var(--color-primary);
    box-shadow: inset 0 -1px 0 rgba(0, 0, 0, .125);
}

.logoAndLanguage {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    position: absolute;
    padding: 0rem 2rem 0rem 2rem;
}


#btn-mobileMenu {
    display: none;
    opacity: 0;
}

.btn-mobileMenu-logo {
    position: absolute;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    background: var(--background);
}

.some {
    visibility: hidden;
    opacity: 0;
    transition: 0.5s;
}

.ativo {
    background-color: #FFF;
    color: var(--color-primary);
    border-color: var(--color-primary);
    transition: all 0.5s ease 0s;
}

.w-100 {
    width: 100%;
}

.w-300 {
    max-width: 300px;
}

.list-files li {
    margin: 1.5em 0;
    padding: 1em;
    width: fit-content;
}

.list-files li.file a {
    font-size: .9em;
    color: var(--color-primary);
    font-weight: 900;
}

.list-files li.file a::before {
    content: "\f56d";
    font-family: FontAwesome;
    font-weight: 400;
    font-size: 24px;
    display: inline-block;
    color: var(--color-primary);
    overflow: visible;
    vertical-align: -.125em;
    margin-right: 10px;
}

/* INPUT CHECKBOX TERMO */

.switch {
    display: flex;
    align-items: center;
    cursor: pointer;
    margin: 25px 0;
}

.switch-wrapper {
    margin-bottom: 0 !important;
}

.switch .switch-text {
    padding-left: 8px;
    font-weight: 500;
    text-align: left;
    line-height: 1.4;
}

.switch .switch-wrapper {
    display: inline-block;
    min-width: 22px;
    height: 22px;
    position: relative;
}

.switch .switch-wrapper .switch-button {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 4px;
    background-color: #FFF;
    border: 1px solid #000;
}

.switch .switch-wrapper input:checked+.switch-button {
    background-color: var(--color-secondary);
    border-color: var(--color-secondary);
}

.switch .switch-wrapper input:checked+.switch-button::before {
    content: "\e876";
    font-family: 'Material Symbols Outlined';
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFF;
}

.switch .switch-wrapper input {
    opacity: 0;
    width: 0;
    height: 0;
}

/* Recommended icon sizes */
span.size-20 {
    font-size: 20px;
    font-variation-settings: 'OPSZ' 20;
}

span.size-24 {
    font-size: 24px;
    font-variation-settings: 'OPSZ' 24;
}

span.size-40 {
    font-size: 40px;
    font-variation-settings: 'OPSZ' 40;
}

span.size-48 {
    font-size: 48px;
    font-variation-settings: 'OPSZ' 48;
}


/* CARD */
div#accordion {
    margin-top: 20px;
}

.card {
    border: none;
    background: #FFF;
    border-radius: 15px;
    margin-bottom: .5rem;
}

.card h4 {
    margin: 1rem 0;
    padding-right: 3rem;
}

.card-body {
    padding: .75rem 1.25rem;
}

.card-body p {
    font-size: 1.125rem;
    padding-right: 3rem;
}

.card-header {
    position: relative;
    padding: .75rem 1.25rem;
    margin-bottom: 0;
    border-radius: 0;
}

.btn-check:focus+.btn,
.btn:focus {
    outline: 0;
    box-shadow: none;
}

#exemplo {
    font-size: 14px;
    font-style: italic;
    color: #938d8d;
}