@import url(colors.css);

/**
    ===============================================================================
    Reset and style for tags
    ===============================================================================
*/

* {
    margin: 0px;
    padding: 0px;
    border: 0;
    box-sizing: border-box;
}

html {
    height: 100%;
    font-size: 100%;
}

body {
    background: #ffffff;
    font-family: "Montserrat", sans-serif;
    font-weight: 500;
    font-size: 16px;
    color: var(--color-Text);
}

div#complainantFields div,
fieldset div {
    margin: 1em 0 0 0;
}

p {
  font-family: "Montserrat", sans-serif;
    font-size: 16px;
    line-height: 1.5;
    font-weight: 400;
    margin-bottom: .5rem;
}

label {
  font-family: "Montserrat", sans-serif;
    font-weight: 500;
    display: inline-block;
    margin: .5rem 0;
}

h1,
h2,
h3,
h4,
h5 {
    margin: 1rem 0;
    font-family: "Montserrat", sans-serif;
    line-height: 1.4;
    color: #000;
}

h1 {
    font-size: 3em;
}

h2 {
    font-size: 2.5em;
}

h3 {
    font-size: 1.953em;
    font-weight: 700;
}

h4 {
    font-size: 1.563em;
}

h5 {
    font-size: 1.25em;
}

small,
.text_small {
    font-size: 0.8rem;
}

textarea {
    margin: 0;
    width: 100%;
    box-sizing: border-box;
}

.link {
    position: relative;
}

select {
    width: 100%;
}

input:hover,
input:focus,
textarea:hover,
textarea:focus,
select:hover,
select:focus {
    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: var(--background);
}

input:focus,
textarea:focus,
select:focus {
    background-color: #F4F9FF;
}

a {
    text-decoration: none;
}

a[disabled="disabled"] {
    pointer-events: none;
}

fieldset ul li {
    list-style: none;
}

fieldset ul li label {
    font-weight: 300;
}

button {
    outline: none !important;
    cursor: pointer;
    font-family: inherit;
}

button:disabled {
    background-color: #B5B8BB;
    color: #9DA0A4;
    pointer-events: none;
    opacity: .7;
    border: 0;
  }

  a[disabled="disabled"] {
    pointer-events: none;
}


/**
    ===============================================================================
    Generic class
    ===============================================================================
*/

.hidden {
    display: none !important;
}

/**
    ===============================================================================
    Idiomas
    ===============================================================================
*/

.altera-lingua-menu {
    position: absolute;
    top: 0px;
    right: 0;
    margin: auto;
    display: flex;
    height: auto;
    align-items: flex-start;
    justify-content: center;
    z-index: 1;
}

.altera-lingua {
    border-radius: 100px;
    width: 24px;
    height: 24px;
    border: none;
    cursor: pointer;
    overflow: hidden;
    display: block;
    padding: 0;
    margin: 4px;
    background-color: var(--color-primary);
    color: #fff;
    font-size: 11px;
}

/* 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/iconExcluir.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;
    flex-wrap: wrap;
    gap: 20px;
}

.button {
    cursor: pointer;
    background-clip: border-box;
    padding: 12px 16px 12px 16px;
    font-size: 15px;
    font-weight: 500;
    border-radius: 15px;
    transition: background .4s;
}

#incidentStatusDiv fieldset ul li label.button--primary,
label.button--primary {
    display: inline-block;
}

#incidentStatusDiv fieldset ul li label.button--primary,
label.button--primary,
.button--primary {
    color: #fff;
    background: var(--color-primary);
    box-shadow: 1px 1px 12px rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
}

.button-upload {
    display: block;
    text-align: center;
    width: 100%;
    background-color: #FFF;
    border: 1px solid #ccc;
    padding: 1em;
    cursor: pointer;
    transition: background .4s;
}

.button-upload:hover {
    background-color: #f5f5f5;
}

.button--primary:hover {
    background-color: var(--btn-hover);
}

.fileParent {
    position: absolute;
    top: -100000px;
    opacity: 0;
    -moz-opacity: 0;
}

.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;
}

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.8;
    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: 42px;
    height: 42px;
    background: #fff;
    border-radius: 50px;
}

.load-size {
    position: relative;
    display: block;
    margin: auto;
    width: 100%;
    border-radius: 50px;
}

#footer {
    position: relative;
    bottom: 0;
    width: 100%;
    padding: 1rem;
    margin-top: 8%;
    background-color: #f1f1f1;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
}

#footer p {
    font-size: .8em;
    margin: 0;
    color: #333;
    font-weight: 400;
}

#incidentAttachmentList {
    margin: 20px 30px;
}

.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: #000;
}

table#incidentAuditTable tr:nth-child(2n+1) {
    background: var(--background);
}

/* HEADER e NAVBAR */

header {
    background-color: #FFF;
    width: 100%;
}

.header {
    position: relative;
    width: 100%;
    height: auto;
    padding: 24px 0;
    display: flex;
    align-content: center;
    justify-content: space-between;
    align-items: center;
    margin: 0 auto;
}

.contato {
    display: flex;
    align-items: flex-end;
    flex-direction: column;
    justify-content: flex-end;
    gap: 4px;
}

.icon-phone, .number-channel  {
    font-size: 26px !important;
    font-weight: 600;
}

.icon-phone {
    color: var(--color-secondary);
    transform: rotate(0deg);
}

button.navbar-toggler {
   border: 0;
   background-color: var(--color-primary);
   margin: .5rem;
   margin-left: auto;
}

button.navbar-toggler span {
    color: #FFF;
    float: right;
 }

.header img {
    vertical-align: middle;
    max-width: 150px;
    height: 100%;
}

.navbar-brand {
    display: none;
}

nav.navbar {
    background: var(--color-primary);
}

.navbar-nav {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    padding: .5rem 0;
}

.nav-link {
    font-size: 16px;
    font-weight: 500;
    color: #fff;
    padding: 4px 8px;
    text-decoration: none;
}

a.nav-link:hover, a.nav-link:focus {
    color: var(--color-secondary) !important;
}

.dropdown-menu a {
    text-align: center;
    border-bottom: 0.75px solid #ccc;
    white-space: nowrap;
    padding: 0px 5px;
}

.dropdown-menu a:hover {
    background: var(--cor-primary);
    color: var(--cor-primary);
}

.dropdown-menu a:last-child {
    border: 0;
}


#btn-mobile-open,
#btn-mobile-close {
    display: none;
}

.fixed-top {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 1030;
}

.container {
    width: 100%;
    max-width: 1150px;
    margin: 0 auto;
}

main {
    width: 100%;
    margin: 0 auto;
}

.about-div-page {
    width: 100%;
    max-width: 1150px;
    padding: 30px 15px 30px 15px;
    margin: 0 auto;
    margin-bottom: 100px;
}


fieldset {
    border: none;
}

.form {
    max-width: 800px;
}

#validMailPhone {
    font-size: 0.90em;
    color: red;
    margin: .5rem 0;
}

.anonymousEmailDescription {
    margin: .5rem 0;
    color: red;
    font-size: .8rem;
}

.accordion {
    margin: auto;
    width: 100%;
}

.accordion input {
    display: none;
}

.accordion {
    background-color: var(--bg-accordion);
    color: #FFF;
    cursor: pointer;
    padding: 1em;
    width: 100%;
    border: none;
    text-align: left;
    outline: none;
    font-size: 18px;
    font-weight: 500;
    transition: 0.4s;
    margin-bottom: 1rem;
    border: 1px solid var(--border);
}

.content-accordion {
    padding: 1em;
    display: none;
    background-color: #f1f1f1;
    overflow: hidden;
    margin-bottom: 1rem;
    margin-top: -1rem;
}

.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: var(--btn-hover);
}

.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 .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;
  }

  .nav-item.dropdown.code-of-conduct > a {
    color: #FFF;
    text-decoration: none;
  }

  .dropdown-menu {
    min-width: 200px;
    border-radius: 30px;
    position: absolute;
    left: 70%;
    transform: translateX(-40%);
  }

  .dropdown-menu {
	position: absolute;
	top: 100%;
	left: 0;
	z-index: 1000;
	display: none;
	float: left;
	min-width: 160px;
	padding: 5px 0;
	margin: 2px 0 0;
	font-size: 14px;
	text-align: left;
	list-style: none;
	background-color: var(--color-secondary);
	-webkit-background-clip: padding-box;
	background-clip: padding-box;
	border: 1px solid #ccc;
	border: 1px solid rgba(0, 0, 0, .15);
	border-radius: 4px;
	-webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, .175);
	box-shadow: 0 6px 12px rgba(0, 0, 0, .175)
}

.dropdown-menu.pull-right {
	right: 0;
	left: auto
}

.dropdown-menu .divider {
	height: 1px;
	margin: 9px 0;
	overflow: hidden;
	background-color: #e5e5e5
}

.dropdown-menu>li>a {
	display: block;
	padding: 3px 20px;
	clear: both;
	font-weight: 400;
	line-height: 1.42857143;
	color: #333;
	white-space: nowrap
}

.dropdown-menu>li>a:focus,
.dropdown-menu>li>a:hover {
	color: #262626;
	text-decoration: none;
	background-color: #f5f5f5
}

.dropdown-menu>.active>a,
.dropdown-menu>.active>a:focus,
.dropdown-menu>.active>a:hover {
	color: #fff;
	text-decoration: none;
	background-color: #337ab7;
	outline: 0
}

.dropdown-menu>.disabled>a,
.dropdown-menu>.disabled>a:focus,
.dropdown-menu>.disabled>a:hover {
	color: #777
}

.dropdown-menu>.disabled>a:focus,
.dropdown-menu>.disabled>a:hover {
	text-decoration: none;
	cursor: not-allowed;
	background-color: transparent;
	background-image: none;
	filter: progid:DXImageTransform.Microsoft.gradient(enabled=false)
}

.open>.dropdown-menu {
	display: block
}

.dropdown-menu-right {
	right: 0;
	left: auto
}

.dropdown-menu-left {
	right: auto;
	left: 0
}

.pull-right>.dropdown-menu {
	right: 0;
	left: auto
}

.dropup .dropdown-menu,
.navbar-fixed-bottom .dropdown .dropdown-menu {
	top: auto;
	bottom: 100%;
	margin-bottom: 2px
}

@media (min-width:768px) {
	.navbar-right .dropdown-menu {
		right: 0;
		left: auto
	}

	.navbar-right .dropdown-menu-left {
		right: auto;
		left: 0
	}
}

.nav-tabs.nav-justified>.dropdown .dropdown-menu {
	top: auto;
	left: auto
}

.nav-justified>.dropdown .dropdown-menu {
	top: auto;
	left: auto
}

.nav-tabs .dropdown-menu {
	margin-top: -1px;
	border-top-left-radius: 0;
	border-top-right-radius: 0
}

@media (max-width:767px) {
	.navbar-nav .open .dropdown-menu {
		position: static;
		float: none;
		width: auto;
		margin-top: 0;
		background-color: transparent;
		border: 0;
		-webkit-box-shadow: none;
		box-shadow: none
	}

	.navbar-nav .open .dropdown-menu .dropdown-header,
	.navbar-nav .open .dropdown-menu>li>a {
		padding: 5px 15px 5px 25px
	}

	.navbar-nav .open .dropdown-menu>li>a {
		line-height: 20px
	}

	.navbar-nav .open .dropdown-menu>li>a:focus,
	.navbar-nav .open .dropdown-menu>li>a:hover {
		background-image: none
	}
}

.navbar-nav>li>.dropdown-menu {
	margin-top: 0;
	border-top-left-radius: 0;
	border-top-right-radius: 0
}

.navbar-fixed-bottom .navbar-nav>li>.dropdown-menu {
	margin-bottom: 0;
	border-top-left-radius: 4px;
	border-top-right-radius: 4px;
	border-bottom-right-radius: 0;
	border-bottom-left-radius: 0
}

@media (max-width:767px) {
	.navbar-default .navbar-nav .open .dropdown-menu>li>a {
		color: #777
	}

	.navbar-default .navbar-nav .open .dropdown-menu>li>a:focus,
	.navbar-default .navbar-nav .open .dropdown-menu>li>a:hover {
		color: #333;
		background-color: transparent
	}

	.navbar-default .navbar-nav .open .dropdown-menu>.active>a,
	.navbar-default .navbar-nav .open .dropdown-menu>.active>a:focus,
	.navbar-default .navbar-nav .open .dropdown-menu>.active>a:hover {
		color: #555;
		background-color: #e7e7e7
	}

	.navbar-default .navbar-nav .open .dropdown-menu>.disabled>a,
	.navbar-default .navbar-nav .open .dropdown-menu>.disabled>a:focus,
	.navbar-default .navbar-nav .open .dropdown-menu>.disabled>a:hover {
		color: #ccc;
		background-color: transparent
	}
}

@media (max-width:767px) {
	.navbar-inverse .navbar-nav .open .dropdown-menu>.dropdown-header {
		border-color: #080808
	}

	.navbar-inverse .navbar-nav .open .dropdown-menu .divider {
		background-color: #080808
	}

	.navbar-inverse .navbar-nav .open .dropdown-menu>li>a {
		color: #9d9d9d
	}

	.navbar-inverse .navbar-nav .open .dropdown-menu>li>a:focus,
	.navbar-inverse .navbar-nav .open .dropdown-menu>li>a:hover {
		color: #fff;
		background-color: transparent
	}

	.navbar-inverse .navbar-nav .open .dropdown-menu>.active>a,
	.navbar-inverse .navbar-nav .open .dropdown-menu>.active>a:focus,
	.navbar-inverse .navbar-nav .open .dropdown-menu>.active>a:hover {
		color: #fff;
		background-color: #080808
	}

	.navbar-inverse .navbar-nav .open .dropdown-menu>.disabled>a,
	.navbar-inverse .navbar-nav .open .dropdown-menu>.disabled>a:focus,
	.navbar-inverse .navbar-nav .open .dropdown-menu>.disabled>a:hover {
		color: #444;
		background-color: transparent
	}
}