* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: "Manrope", sans-serif;
}
:root {
  --hue: 264;
  --hue-secondary: calc(var(--hue) + 180);
  --chroma: 0.05;
  --chroma-bg: calc(var(--chroma) * 0.5);
  --chroma-text: min(var(--chroma), 0.1);
  --chroma-action: max(var(--chroma), 0.1);
  --chroma-alert: max(var(--chroma), 0.05);
  /* bg */
  --bg-dark: oklch(0.1 var(--chroma-bg) var(--hue));
  --bg: oklch(0.15 var(--chroma-bg) var(--hue));
  --bg-light: oklch(0.2 var(--chroma-bg) var(--hue));
  --gradient: linear-gradient(0deg, var(--bg) 97%, var(--bg-light));
  --gradient-hover: linear-gradient(0deg, var(--bg), var(--bg-light));
  /* text */
  --text: oklch(0.96 var(--chroma-text) var(--hue));
  --text-muted: oklch(0.76 var(--chroma-text) var(--hue));
  /* border */
  --highlight: oklch(0.5 var(--chroma) var(--hue));
  --border: oklch(0.4 var(--chroma) var(--hue));
  --border-muted: oklch(0.3 var(--chroma) var(--hue));
  --border-card: solid 1px var(--border-muted);
  /* action */
  --primary: oklch(0.76 var(--chroma-action) var(--hue));
  --secondary: oklch(0.76 var(--chroma-action) var(--hue-secondary));
  /* alert */
  --danger: oklch(0.7 var(--chroma-alert) 30);
  --warning: oklch(0.7 var(--chroma-alert) 100);
  --success: oklch(0.7 var(--chroma-alert) 160);
  --info: oklch(0.7 var(--chroma-alert) 260);
  /* shadows */
  --shadow: 0px 2px 2px oklch(0 0 0 / 0.2), 0px 4px 4px oklch(0 0 0 / 0.1);
  /* type */
  --ff: "Manrope", sans-serif;
  --h1: 700 1.5rem/1.2em var(--ff);
  --h2: 700 1.25rem/1.2em var(--ff);
  --h3: 700 1.125rem/1.4em var(--ff);
  --h4: 700 1rem/1.6em var(--ff);
  --p: 400 1rem/1.6em var(--ff);
  --small: 400 0.75rem/1.8em var(--ff);
  --txt: 700 1.5rem/1.8em var(--ff);
}
body.light {
  /* bg */
  --bg-dark: oklch(0.92 var(--chroma-bg) var(--hue));
  --bg: oklch(0.96 var(--chroma-bg) var(--hue));
  --bg-light: oklch(1 var(--chroma-bg) var(--hue));
  --gradient: linear-gradient(0deg, var(--bg) 97%, var(--bg-light));
  --gradient-hover: linear-gradient(0deg, var(--bg), var(--bg-light));
  /* text */
  --text: oklch(0.15 var(--chroma) var(--hue));
  --text-muted: oklch(0.4 var(--chroma) var(--hue));
  /* border */
  --highlight: oklch(1 var(--chroma) var(--hue));
  --border: oklch(0.6 var(--chroma) var(--hue));
  --border-muted: oklch(0.7 var(--chroma) var(--hue));
  --border-card: solid 1px var(--bg);
  /* action */
  --primary: oklch(0.4 var(--chroma-action) var(--hue));
  --secondary: oklch(0.4 var(--chroma-action) var(--hue-secondary));
  /* alert */
  --danger: oklch(0.5 var(--chroma-alert) 30);
  --warning: oklch(0.5 var(--chroma-alert) 100);
  --success: oklch(0.5 var(--chroma-alert) 160);
  --info: oklch(0.5 var(--chroma-alert) 260);
}
/* utility */
.flex {
  display: flex;
  align-items: center;
}
/* global */
body {
  /*max-width: min(90vw, 1200px);*/
  background: var(--bg-dark);
  color: var(--text-muted);
}
h1 {
  font: var(--h1);
  color: var(--text);
}
h2 {
  font: var(--h2);
  margin-bottom: 0.5rem;
  color: var(--text);
}
h3 {
  font: var(--h3);
  margin-bottom: 0.5rem;
  color: var(--text);
}
h4 {
  font: var(--h4);
  margin-bottom: 0.5rem;
}
p {
  font: var(--p);
}
.small,
small {
  font: var(--small);
}

.txt,
label{
  font: var(--txt);
}

button {
  background: var(--bg-light);
  color: var(--text);
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
  font: var(--p);
  cursor: pointer;
  box-shadow: var(--shadow);
  border: var(--border-card);
  border-top: solid 1px var(--highlight);
}
button:focus {
  outline: none;
}
button:hover,
.card:hover {
  background: var(--gradient-hover);
}

a {
  text-decoration: none;
  color: var(--text);
}
a:hover {
  color: var(--primary);
}
.wrapper {
  min-height: 50vh;
  display: flex;
  justify-content:space-around;
  flex-direction: column;
  gap: 10rem;
}
.container {
    /*display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));*/
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    padding: 1rem;
    gap: 2rem;
    background: var(--bg-dark);
    color: var(--text-muted);
}
/* header */
header, .mensagem {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  width: 100%;
}
.colors-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.colors-icon {
  width: 1.5rem;
}
.version {
  background: var(--gradient-hover);
  font: var(--small);
  color: var(--text-muted);
  padding: 0.1rem 0.4rem;
  border: var(--border-card);
  border-radius: 0.25rem;
  margin-left: 0.25rem;
}
.version-info {
  background: var(--bg);
  padding: 1rem 1.5rem;
  border-radius: 1rem;
  display: grid;
  gap: 1.5rem;
}
.version-info h4 {
  margin: 0;
}

.toggle-btn {

  align-items: center;
  justify-content: center;
  width: 1.75rem;
  /*height: 1.75rem;*/
  padding: 0;
}
.toggle-icon {
  stroke: var(--primary);
  width: 1rem;
}

/* hue and chroma sliders */
.sliders {
  margin: 2rem 0;
}
.slider-label {
  margin-top: 1rem;
  display: grid;
  grid-template-columns: auto 1fr auto 3rem;
  align-items: center;
  font: var(--p);
  border-radius: 0.5rem;
}
.slider-label span {
  width: 4rem;
}
#chroma-slider,
#hue-slider {
  -webkit-appearance: none;
  appearance: none;
  background: linear-gradient(
    90deg,
    oklch(0.4 0 var(--hue)),
    oklch(0.6 0.2 var(--hue))
  );
  border-radius: 0.55rem;
  height: 1rem;
  margin: 0 0.5rem;
}
#hue-slider {
  background: linear-gradient(
    90deg,
    oklch(0.6 var(--chroma) 20),
    oklch(0.6 var(--chroma) 60),
    oklch(0.6 var(--chroma) 100),
    oklch(0.6 var(--chroma) 140),
    oklch(0.6 var(--chroma) 180),
    oklch(0.6 var(--chroma) 220),
    oklch(0.6 var(--chroma) 260),
    oklch(0.6 var(--chroma) 300),
    oklch(0.6 var(--chroma) 340)
  );
}
input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  background: var(--text-muted);
  height: 1.5rem;
  width: 0.5rem;
  border-radius: 0.25rem;
}
.slider-number {
  padding: 0 0.4em;
  border-radius: 0.25em;
  border: var(--border-card);
  background: var(--bg);
  color: var(--text-muted);
  font: var(--p);
}
.slider-number:focus {
  outline: none;
}
.slider-number::-webkit-outer-spin-button,
.slider-number::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.slider-number[type="number"] {
  --moz-appearance: textfield;
}

/* cards */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
}
.card {
  background: var(--gradient);
  padding: 1rem 2rem;
  border: var(--border-card);
  border-top: 1px solid var(--highlight);
  border-radius: 1rem;
  box-shadow: var(--shadow);
}
/* code and states buttons */
.buttons {
  margin-top: 2rem;
  display: flex;
  gap: 1rem;
}
.show-code {
  color: var(--bg-dark);
  background: var(--text);
  border: none;
}
.show-alerts {
  background: var(--primary);
  border: none;
  color: var(--bg-dark);
}
.show-code:hover {
  background: var(--text-muted);
}
.show-alerts:hover {
  background: var(--secondary);
}
/* modals */
dialog {
  background: transparent;
  color: var(--text-muted);
  margin: 2rem auto;
  border: none;
  outline: none;
  position: relative;
  overflow: visible;
}
dialog::backdrop {
  background: oklch(0 0 0 / 0.7);
}
dialog:focus {
  outline: none;
}
.close-modal {
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
  padding: 0.1rem 0.6rem;
  background: var(--bg);
  border: none;
  box-shadow: none;
}
.close-modal:hover {
  background: var(--bg-light);
}
/* color pallete */
.palette {
  background: var(--bg);
  border-radius: 1rem;
  padding: 1rem 2rem;
  box-shadow: var(--shadow);
  border: var(--border-card);
}
.palette h2 {
  margin-bottom: 1rem;
}
.palette-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.palette-item span {
  width: 80px;
  aspect-ratio: 16/9;
  border-radius: 0.5rem;
  border: solid 1px var(--border-muted);
  text-align: center;
}
.palette-item small {
  margin-bottom: 1rem;
}
.palette div {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}
.bg-dark {
  background: var(--bg-dark);
}
.bg {
  background: var(--bg);
}
.bg-light {
  background: var(--bg-light);
}
.text {
  background: var(--text);
}
.text-muted {
  background: var(--text-muted);
}
.border {
  background: var(--border);
}
.border-muted {
  background: var(--border-muted);
}
.highlight {
  background: var(--highlight);
}
.primary {
  background: var(--primary);
}
.secondary {
  background: var(--secondary);
}
.danger {
  background: var(--danger);
}
.warning {
  background: var(--warning);
}
.success {
  background: var(--success);
}
.info {
  background: var(--info);
}

/* code */
.code {
  background: var(--bg);
  border-radius: 1rem;
}
pre {
  line-height: 2em;
  font-family: monospace;
  padding: 1rem;
}
.code-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-left: 1rem;
}
#color-format {
  padding: 0.25rem;
  border: none;
  background: var(--bg-light);
  color: var(--text);
  border-radius: 0.5rem;
  border: var(--border-card);
  outline: none;
  box-shadow: var(--shadow);
  margin-top: 1rem;
}

#color-format:focus {
  outline: none;
  box-shadow: none;
}

#color-format option {
  background: var(--bg-light);
  color: var(--text);
}
.copy-code {
  font: var(--small);
  padding: 0.25rem;
  width: 3.5rem;
  margin-top: 1rem;
  border: var(--border-card);
}
/* alerts */
.alert {
  border-radius: 0.5rem;
  padding: 0.75rem 1.5rem;
  background: var(--bg);
  color: var(--bg);
  margin-bottom: 1rem;
  width: min(720px, 100%);
}
.alert-heading {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.danger-alert {
  background: var(--danger);
}
.warning-alert {
  background: var(--warning);
}
.success-alert {
  background: var(--success);
}
.info-alert {
  background: var(--info);
}
.alert h5 {
  color: var(--bg);
}
.alert-heading svg {
  stroke: var(--bg);
  margin-bottom: 0.5rem;
}

#advertising-msg{
    color: var(--text-muted);
}

/* footer */
footer {
  margin-top: auto;
  margin-bottom: 1rem;
  padding-top: 1rem;
  text-align: center;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 10px;
}

.footer-links a {
    color: #666;
    text-decoration: none;
}

.footer-links a:hover {
    color: var(--primary);
}

/* complemento */

nav{
    display:flex;
    padding: 0.5rem;
    justify-content: space-around;
}

nav svg{
    width: 2rem;
    height: 2rem;
    cursor: pointer;
    fill: var(--primary);
}

.menu-item{
    display: flex;
    flex-direction: column;
    align-items: center;
    flex-grow: 1;
    text-decoration: none;
    color:var(--primary);
    padding: 0.5rem;
}

.header-item{
    flex-grow: 2;
}

.search-container{
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    align-items: center;
    padding: 1rem;
    gap: 1rem;
    width: 100%;
}

select{
    flex: 1;
    padding: 0.5rem;
    font-size: 1rem;
    border: 1px solid var(--border);
    border-radius: 0.25rem;
    min-width: 20rem;
}

.palavras-chave{
    display: flex;
    min-width: 20rem;
    align-items: center;
    color:var(--primary);
    width: 100%;
    height: 5rem;
    background-color: var(--bg-light);
    border-radius: 1rem;
    padding: 1rem;
}

.div-input{
    flex: 9;
    padding: 0;
    font-size: 1rem;
}

/*
.btn-search{
    flex: 1;
    background-color: var(--bg);
    border: none;
    padding: 0.5rem;
    border-radius: 0.25rem;
    cursor: pointer;
}

.btn-search svg{
    width: 2rem;
    height: 2rem;
    fill: var(--primary);
}
*/
.btn-search {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1.75rem;
  height: 1.75rem;
  padding: 0;
}
.btn-search svg {
  stroke: var(--primary);
  width: 1rem;
}



#local{
    width:95%; 
    font-size:1.5rem;
    border: 0;
    border-color:var(--primary);
}

#screen{
    display: flex;
    flex-direction: column;
    width: 100%;
}
#screen p{
    padding-bottom: 2rem;
}

#filter-main{
    display: flex;
    width: 100%;
}

#classificacao{
    width:100%;
    border-width: 0;
    font-size:1.5rem;
    border: 0;
    border-color:var(--primary);
}

#content{
    display: flex;
    flex-direction: column;
    width: 100%;
}

.solicitacao-aberta{
  position: relative;
	width: 100%;
	border-style: none;
	border-color: #a0b3ed;
	border-radius: 10px;
	box-sizing: border-box;
	margin: 0.3rem;
	padding: 1.25rem 0.6rem;
	vertical-align: middle;
  background-color: var(--bg-light);
}

.content-dt-hr{
    display: flex;
    width: 100%;
}

.solicitacao-dt-hr{
    flex: 3;
    text-align: right;
    font: var(--small);
    padding: 0.3rem;
}

.flex1{
    flex: 1;
}

.solicitacao-classificacao, .solicitacao-localizacao{
    text-align: left;
    padding: 0.3rem;
    margin: 1rem 0.3rem 0.3rem 0.3rem;
    border-radius: 0.2rem;
    position: relative;
}

.classificacao-label, .localizacao-label{
    font-size: 9px;
    position: absolute; 
	top:-6px; 
	left:5px; 
}

.classificacao-text{
    font: var(--h1);
    padding: 0.2rem;
}

.localizacao-text{
    font: var(--h2);
    padding: 3px;

}

.solicitacao-container-usr{
	position: relative;
	min-height: 8rem;
	overflow: hidden;
    font: var(--p);
	padding: 0; /*15px;*/
	margin-bottom: 0; /*20px;*/
	transition: max-height 0.3s ease;
}

.solicitacao-container{
	position: relative;
	min-height: 8rem;
	max-height: 10rem;
	overflow: hidden;
    font: var(--p);
	padding: 0; /*15px;*/
	margin-bottom: 0; /*20px;*/
	transition: max-height 0.3s ease;
}

.solicitacao-container.expanded {
	max-height: none;
}

.solicitacao-text{
	text-align: left;
	padding: 5px;
	margin-bottom: 20px;
	min-height: 100px;
}

.show-more-btn {
	position: absolute;
	bottom: -0.5rem;
	left: 0;
	right: 0;
	text-align: center;
	padding: 0.6rem;
	cursor: pointer;
	display: block;
}

.show-more-btn span {
	background-color: #fff;
	padding: 0.3rem 1rem;
	border: 1px solid var(--border);
	border-radius: 1rem;
	color: var(--chroma-bg);
	font-size: 0.9em;
}

#config{
  background-color: var(--bg-light);
  border-radius: 1rem;
  padding: 1rem;
}

.config-top{
    display: flex;
    justify-content:space-between;
}

#map { 
    height: 300px; 
    margin-top: 20px; 
    border: 1px solid #ccc; 
}

#logon{
    display: flex;
    flex-direction: column;
}

.logon-item{
    display: flex;
    flex-direction: column;
    height: 5rem;
    min-width: 20rem;
    justify-content: flex-start;
    color:var(--primary);
    font:var(--ff);
    width: 100%;    
}

.logon-item input{
    width: 100%;
    font-size: large;
    padding:0.2rem;
}

.logon-item label{
    width: 100%;
    text-align: left;
}

.logon-profile{
    display: flex;
    flex-direction: row;
    height: 3rem;
    min-width: 20rem;
    justify-content: space-evenly;
    color:var(--primary);
    font:var(--ff);
    width: 100%;    
}

/* Create a custom radio button */
.checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 25px;
    width: 25px;
    background-color: #eee;
}

.redondo{
    border-radius: 50%;
}

.quadrado{
    border-radius: 0;
}

#atividade_principal{
    width: 100%;
}

.logon-aceite{
    display: flex;
    flex-direction: row;
    margin-top: 2em;
    height: 4rem;
    min-width: 20rem;
    justify-content: space-evenly;
    color:var(--primary);
    font:var(--ff);
    width: 100%;  
}

.button-termo{
	cursor: pointer;
	display: block;
    background-color: #fff;
	border: 1px solid var(--border);
	border-radius: 1rem;
    padding: 0.5rem;
}

.btn-termo{
	text-align: center;
	color: var(--chroma-bg);
}

.btn-termo span{
	font-size: 1.5rem;
}




/* The Modal (background) */
.modal {
  display: none; /* Hidden by default */
  position: fixed; /* Stay in place */
  z-index: 1; /* Sit on top */
  left: 0;
  top: 0;
  width: 100%; /* Full width */
  height: 100%; /* Full height */
  overflow: auto; /* Enable scroll if needed */
  background-color: rgb(0,0,0); /* Fallback color */
  background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
}

.modal-photo {
  display: none; /* Hidden by default */
  position: fixed; /* Stay in place */
  z-index: 1; /* Sit on top */
  left: 0;
  top: 0;
  width: 100%; /* Full width */
  height: 100%; /* Full height */
  overflow: auto; /* Enable scroll if needed */
  background-color: rgb(0,0,0); /* Fallback color */
  background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
}

/* Modal Content/Box */
.modal-content {
  /*background-color: #fefefe;*/
  margin: 15% auto; /* 15% from the top and centered */
  border: 1px solid #888;
  width: 80%; /* Could be more or less, depending on screen size */
}



/* The Close Button */
.close {
  color: #aaa;
  text-align: right;
  font-size: 2rem;
  font-weight: bold;
}

.close:hover,
.close:focus {
  color: black;
  text-decoration: none;
  cursor: pointer;
}

.right{
    text-align: right;
}

.competencias-item{
    padding: 1rem;
}

.login-item{
    display: flex;
    flex-direction: column;
    min-width: 20rem;
    justify-content: flex-start;
    color:var(--primary);
    font:var(--ff);
    width: 100%;    
}

.login-item input{
    width: 100%;
    font-size: x-large;
    padding:0.5rem;
    height: 2.5rem;
    border-radius: 0.5rem;
    border-width: 0;
}

.login-enviar{
    display: flex;
    flex-direction: row;
    margin-top: 2em;
    height: 2rem;
    min-width: 20rem;
    justify-content: space-evenly;
    color:var(--primary);
    font:var(--ff);
    width: 100%;  
}

.esqueceu{
  text-align: right;
}

.button-enviar{
	cursor: pointer;
	display: block;
  background-color: #103f7c;
	border: 0 solid var(--border);
	border-radius: 1rem;
  padding: 1rem;
  color: white;
  width: 100%;   
  height: 4rem; 
}

.btn-enviar{
	text-align: center;
	color: var(--chroma-bg);
}

.button-esqueci{
	cursor: pointer;
	display: block;
    background-color: #fff;
	border: 1px solid var(--border);
	border-radius: 1rem;
    padding: 0.5rem;
}

.btn-esqueci{
	text-align: center;
	color: var(--chroma-bg);
}

#select-local{
    display: flex;
    flex-direction: row;
    margin-top: 2em;
    min-width: 20rem;
    justify-content: space-evenly;
    color:var(--primary);
    font:var(--ff);
    width: 100%;  
}

#select-local-div{
	display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	justify-content: space-between;

	margin: 2px;
	padding: 3px;
	border-radius: 5px;
}

.row-flex{
    display: flex;
    flex-flow: row;
    flex-direction: row;
}
.col-flex{
    display: flex;
    flex-flow: column;
    flex-direction: column;
}

.flex1{ flex:1 }
.flex2{ flex:2 }
.flex3{ flex:3 }
.flex4{ flex:4 }
.flex5{ flex:5 }
.flex6{ flex:6 }
.flex7{ flex:7 }
.flex8{ flex:8 }
.flex9{ flex:9 }
.flex10{ flex:10 }

.btn{
    cursor: pointer;
	display: block;
    background-color: #fff;
	border: 1px solid var(--border);
	border-radius: 0.5rem;
    padding: 0.5rem;    
    color: var(--chroma-bg);
}



.round2{ border-radius: 2px;}
.round3{ border-radius: 3px;}
.round4{ border-radius: 4px;}
.round5{ border-radius: 5px;}

.w500{ width:500px; overflow:hidden; }
.w450{ width:450px; overflow:hidden; }
.w400{ width:400px; overflow:hidden; }
.w370{ width:370px; overflow:hidden; }
.w350{ width:350px; overflow:hidden; }
.w300{ width:300px; overflow:hidden; }
.w250{ width:250px; overflow:hidden; }
.w200{ width:200px; overflow:hidden; }
.w150{ width:150px; overflow:hidden; }
.w130{ width:130px; overflow:hidden; }
.w100{ width:100px; overflow:hidden; }
.w80{ width:80px; overflow:hidden; }
.w60{ width:60px; overflow:hidden; }
.w50{ width:50px; overflow:hidden; }
.w40{ width:40px; overflow:hidden; }
.w30{ width:30px; overflow:hidden; }
.w35{ width:35px; overflow:hidden; }
.w28{ width:28px; overflow:hidden; }
.w25{ width:25px; overflow:hidden; }
.w20{ width:20px; overflow:hidden; }
.w50p{ width:50%; }
.w100p{ width:100%; }
.h20{ height:20px; }
.h22{ height:22px; }
.h25{ height:25px; }
.h28{ height:28px; }
.h30{ height:30px; }
.h32{ height:32px; }
.h35{ height:35px; }
.h38{ height:38px; }
.h40{ height:40px; }
.h50{ height:50px; }
.h60{ height:60px; }
.h80{ height:80px; }
.h100{ height:100px; }
.h200{ height:200px; }
.h250{ height:250px; }
.h300{ height:300px; }
.h380{ height:380px; }
.h400{ height:400px; }

.fs6{ font-size:6px; }
.fs9{ font-size:9px; }
.fs10{ font-size:10px; }
.fs11{ font-size:11px; }
.fs12{ font-size:12px; }
.fs15{ font-size:15px; }
.fs18{ font-size:18px; }
.fs20{ font-size:20px; }
.fs30{ font-size:30px; }
.fs40{ font-size:40px; }

.bd3{ border:3px solid rgb(139, 139, 139);}
.bd2{ border:2px solid rgb(139, 139, 139);}
.bd1{ border:1px solid rgb(139, 139, 139);}
.bd0{ border:0 }

.pd1{ padding:1px; }
.pd2{ padding:2px; }
.pd3{ padding:3px; }
.pd5{ padding:5px; }
.pd10{ padding:10px; }
.pd50{ padding:50px; } 

.mg1{ margin:1px; }
.mg2{ margin:2px; }
.mg3{ margin:3px; } 
.mg5{ margin:5px; }
.mg7{ margin:7px; }
.mg8{ margin: 8px; }
.mg10{ margin:10px; }

.mgtop20{ margin-top:20px; }
.mgleft20{ margin-left:20px; }
.mgbot20{ margin-bottom:20px; }

.qtd{
	text-align: center;
	width: 24px;
	height: 24px;
	border-radius: 12px;
	background-color: #f3fa99;
	border: 1px solid #bdb3b3;
	padding: 0;	
	margin: 0;
	margin-bottom: -3px;
	margin-left: 35px;
	padding-top: 0;
	font-size:12px;
}

.container-qtd{
    width:60px;
    height:25px;
    margin-bottom: -5px;
}

.chat-messages-container{
    width:auto;
    height:28rem;
    overflow:auto;
    margin-top:0.3rem;
}

.chat-space{
    width: 100%;
}

.chat-msg-by-user{
    width: 100%;
    background-color: var(--bg);
    color: var(--text);
}

.chat-msg-by-other{
    width: 100%;
    background-color: antiquewhite;
    color: black;
}

.pointer{
    cursor: pointer;
}

.icon-chat, .btn-trash{
    padding: 1px;
}

.btn-trash svg, .icon-chat svg{
    width: 2rem;
    height: 2rem;
    cursor: pointer;
    fill: var(--primary);
}

.contrato-text{
    position: relative;
    width: 100%;
    background-color: var(--bg);
    color: var(--text);
    padding: 0.5rem;
}

.contrato-modal{
  display: none; /* Hidden by default */
  position: fixed; /* Stay in place */
  z-index: 2001; /* Sit on top */
  left: 0;
  top: 0;
  width: 100%; /* Full width */
  height: 100%; /* Full height */
  overflow: auto; /* Enable scroll if needed */
  background-color: rgb(0,0,0); /* Fallback color */
  background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
}

.btn-page{
  padding: 8px 3px 3px 3px;
  margin: 2px;
  height: 30px;
  vertical-align:bottom;
  font-size: 14px;
  font-weight:bold;
  color: white;
  border-radius: 0 8px 0 0;
  cursor: pointer;		
}

.nova-solicitacao, .yes-no, .tema{
  display: flex;
  justify-items: center;
	justify-content: space-around;
}

.bg-white{
  background-color: antiquewhite;
  color:black;
}

#edit-modal-content{
  text-align: center;
  width: 100%;
}

.lbl-busca-local{
    width: 100%;
    font: var(--txt);
    text-align: left;
}

.my-radio {
  font-family: system-ui, sans-serif;
  font-size: 2rem;
  font-weight: bold;
  line-height: 1.1;
  display: grid;
  grid-template-columns: 1em auto;
  gap: 0.5em;
}

/* style.css */
.input-btn {
    background-color: var(--text-muted);/* #4CAF50; /* Green */
    color: var(--bg-light); /*white;*/
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    font: var(--p);
    cursor: pointer;
    box-shadow: var(--shadow);
    border: var(--border-card);
    border-top: solid 1px var(--highlight);
    transition: background-color 0.3s ease;
}

.input-btn:hover {
    background-color: var(--gradient-hover); /*#45a049; /* Green */
    color: var(--text);
    outline-width: 2px;
}

.input-btn:focus {
  outline-width: 2px;
}

.arrow {
  width: 0;
  height: 0;
  border-style: solid;
  display: inline-block;
  margin: 10px;
}

.arrow.left {
  border-width: 10px 15px 10px 0;
  border-color: transparent #333 transparent transparent;
}

.arrow.right {
  border-width: 10px 0 10px 15px;
  border-color: transparent transparent transparent #333;
}

.privacidade p{
  text-align: left;
  margin-left: 0em;
  padding-bottom: 0px;
  font-size: 1em;
}

.privacidade h3,h4{
  margin-left: 2em;
}

.privacidade ul,li{
  margin-left: 1em;
}
