@import url(https://fonts.googleapis.com/css?family=Lato:300,400,700,900);

:root {
    --primary: #0a3d62;
    --black: #111;
    --gray-600: #666;
    --gray-500: #7f8c8d;
    --gray-400: #95a5a6;
    --gray-300: #bdc3c7;
    --gray-200: #ccc;
    --gray-100: #ecf0f1;
    --white: #fff;
    --danger: #e74c3c;
    --success: #27ae60;
    --warning: #f1c40f;

    /* --secondary: #70587c;
    --gray-800:  #444;
    --gray-700:  #555;
    --info:      #005580;
    --border-radius: 5px;
    --default-inner-margin: 25px;
    --default-margin: 50px; */
}

* {
    border: 0 none;
    margin: 0;
    outline: 0 none;
    padding: 0;
}

*,
*:after,
*:before {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

body {
    background: var(--white) !important;
    color: #2c3e50;
    font-family: "Lato", Verdana, Lucida, Helvetica, Arial, sans-serif;
    font-size: 90%;
}

a,
a:active {
    color: var(--gray-600);
    text-decoration: none;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

a:hover {
    color: var(--black);
}

aside {
    background-color: var(--gray-500);
    display: block;
    height: 100vh;
    overflow-y: auto;
    position: fixed;
    left: 0;
    text-indent: 0;
    top: 0;
    width: 200px;
    z-index: 2;
    transform: translate(-200px, 0px);

    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

aside.active {
    transform: translate(0px, 0px);
}

aside>ul>li {
    border-bottom: 1px solid var(--white);
    list-style: none;
}

aside li li {
    border-top: 1px solid var(--white);
    list-style: none;
    margin: 0;
}

aside li.has-child>a:after {
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 600;
    opacity: 0.5;
    position: absolute;
    right: 15px;
}

aside li.has-child ul {
    display: none;
    padding: 0
}

aside a {
    color: var(--white);
    display: inline-block;
    line-height: 1.2em;
    padding: 15px;
    width: 100%;
}

aside li li a {
    background: var(--gray-100);
    color: var(--gray-600);
    font-size: 95%;
    padding: 8px 15px;
}

aside li li li a {
    color: var(--gray-400);
    padding: 8px 15px 8px 30px;
}

aside a:hover {
    background: #eee;
}

aside dd {
    padding: 0 0 15px;
}

aside dt {
    float: none;
    margin: 0;
}

aside h2 {
    padding: 40px 0 10px;
    text-transform: none;
}

aside h2:first-child {
    padding: 0 0 10px;
}

aside.active+main {
    margin: 0 0 0 200px;
    width: calc(100% - 200px);
}

button,
input[type="button"],
input[type="submit"] {
    background: var(--success);
    clear: both;
    color: var(--white);
    cursor: pointer;
    display: block;
    font-size: 120%;
    height: 46px;
    padding: 0 16px;
    -webkit-appearance: none;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

button:hover,
input[type="button"]:hover,
input[type="submit"]:hover {
    background: var(--gray-500);
    border-radius: 9px;
    color: #eee;
}

caption {
    border-bottom: 1px solid var(--gray-600);
    font-size: 120%;
    font-weight: normal;
    padding: 10px 5px;
    text-align: left;
}

caption a {
    color: var(--gray-400);
}

code {
    background: #F8F8F8;
    border: 1px solid #DDDDDD;
    border-radius: 9px;
    padding: 0 3px;
}

dd {
    clear: left;
    font-weight: 400;
    padding: 0 0 10px;
}

dd:empty:after {
    content: "\00a0";
}

dd ol,
dd ul {
    display: inline-block;
    padding: 0 0 0 20px;
}

dl {
    clear: left;
}

dl.striped {
    background-color: rgba(10, 61, 98, 0.05);
    padding: 10px;
}

dl.striped:nth-child(odd) {
    background-color: rgba(10, 61, 98, 0.02);
}

dl.striped dd {
    padding-bottom: 0;
}

dt {
    color: var(--gray-500);
    float: left;
    font-weight: 300;
    line-height: 1.1em;
    margin: 0 0 3px 0;
}

fieldset {
    background: var(--gray-100);
    clear: both;
    display: table;
    margin: 10px 0 20px;
    padding: 15px;
    width: 100%;
}

form {
    margin: 10px 0;
}

form>div {
    display: inline-block;
    overflow: auto;
    width: 100%;
}

footer>a {
    float: right;
}

footer p {
    color: var(--gray-500);
    float: left;
}

h1,
h2,
h3,
h4,
h5 {
    clear: left;
    color: var(--primary);
    float: left;
    font-weight: 400;
    padding: 20px 0 10px;
}

h1 {
    color: #000;
    font-size: 200%;
    padding: 0 0 10px;
}

h2 {
    color: #333;
    font-size: 180%;
    text-transform: uppercase;
}

h3 {
    color: var(--gray-600);
    font-size: 150%;
    line-height: 1.2em;
    text-transform: uppercase;
}

td h3 {
    font-size: 110%;
    padding-top: 0;
}

h4 {
    font-size: 130%;
}

h5 {
    color: var(--gray-500);
    font-size: 110%;
}

header {
    background: var(--white);
    overflow: hidden;
    width: 100%;
}

header h1 {
    float: left;
    padding: 0;
}

header h1 a {
    background-image: url(/logo);
    background-position: 0 center;
    background-repeat: no-repeat;
    color: var(--primary);
    display: table-cell;
    font-size: 140%;
    font-weight: 300;
    height: 68px;
    padding-left: 280px;
    text-align: left;
    text-transform: uppercase;
    vertical-align: bottom;
    width: 100%;
}

header h1 a:hover {
    color: #3c6382;
    opacity: 0.8;
    text-decoration: none;
}

header h1 a span {
    color: var(--gray-300);
    padding-right: 20px;
}

iframe {
    width: 100%;
}

input[type="checkbox"] {
    margin: 0 5px 0 0;
}

input[type="email"],
input[type="file"],
input[type="number"],
input[type="password"],
input[type="search"],
input[type="text"] {
    border: 2px solid var(--gray-300);
    font-size: 1.1rem;
    padding: 12px 10px;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

input[type="email"]:focus,
input[type="file"]:focus,
input[type="number"]:focus,
input[type="password"]:focus,
input[type="search"]:focus,
input[type="text"]:focus,
select:focus,
textarea:focus {
    border: 2px solid var(--primary);
    border-radius: 5px;
}

.form-row>div>input[type="text"][maxlength="255"] {
    width: calc(100% - 260px);
}

label {
    font-size: 100%;
    line-height: 1.2em;
    padding: 2px 10px 0 0;
    width: 10%;
}

label.required {
    font-weight: bold;
}

legend {
    color: var(--gray-500);
    padding: 0 5px;
}

li {
    list-style: square;
}

ol>li {
    list-style: decimal;
}

ol>li>ul {
    padding-left: 20px;
}

main {
    display: inline-block;
    width: 100%;
}

footer nav {
    clear: left;
    float: left;
    padding: 15px 0;
}

footer nav a {
    color: var(--primary);
    float: left;
    font-size: 95%;
    font-weight: 400;
    line-height: 1em;
    margin-right: 20px;
    text-transform: uppercase;
}

footer nav a:hover {
    color: #3c6382;
}

section {
    background-color: var(--white);
    width: 100%;
}

section section {
    display: inline-block;
}

select {
    background-color: var(--white);
    border: 2px solid var(--gray-200);
    font-size: 1.1rem;
    padding: 12px 10px;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

select[multiple="multiple"] {
    height: auto;
}

table {
    border-collapse: collapse;
    border-left: 1px solid #eee;
    border-spacing: 0;
    clear: both;
    font-weight: 300;
    overflow: auto;
    width: 100%;
}

table.info {
    border: 0 none;
}

table.info dd {
    padding: 0;
}

table .sortoptions {
    float: right;
}

table .sortoptions a,
table .sortoptions span {
    height: 14px;
    opacity: 0.5;
    width: 14px;
}

table .sortoptions a:hover {
    opacity: 1;
}

table .sortoptions span.sortpriority {
    font-weight: 700;
    text-align: center;
}

table .text {
    float: left;
}

td,
th {
    border: 1px solid #eee;
    padding: 10px;
    text-align: left;
}

table.info td {
    padding: 10px;
}

td a {
    text-decoration: underline;
}

th a {
    color: var(--primary);
    font-weight: 400;
    line-height: 1em;
}

thead th {
    background: url(../img/bg.png) repeat 0 0 #f6f6f6;
    font-weight: 300;
    padding: 7px !important;
}

textarea {
    border: 2px solid var(--gray-200);
    font-family: "Lato", Verdana, Lucida, Helvetica, Arial, sans-serif;
    font-size: 110%;
    height: 110px;
    margin: 1px 0 5px;
    padding: 5px;
    width: auto !important;
    /* forms.css */
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

tr:nth-child(even) {
    background: rgba(0, 0, 0, 0.02);
}

table.info tr:nth-child(even) {
    background: transparent;
}

table.info tr:nth-child(odd) {
    background: rgba(0, 0, 0, 0.02);
}

tr:hover {
    background: rgba(52, 73, 94, 0.1) !important;
}

.alert tr:hover {
    background: rgba(241, 196, 15, 0.1) !important;
}

.error tr:hover {
    background: rgba(192, 57, 43, 0.1) !important;
}

tr:hover .addlink,
tr:hover .changelink {
    background: var(--primary);
    color: var(--white);
}

tr.selected {
    background: #fcf8e3;
}

ul {
    line-height: 1.5em;
}

ul ul {
    padding: 0 0 0 15px;
}

#about {
    float: right;
    padding-top: 40px;
}

#about a {
    color: var(--gray-300);
    font-size: 130%;
    margin: 0 0 0 15px;
    padding: 0 0 0 15px;
    text-transform: lowercase;
}

#about a:hover {
    color: var(--primary);
}

#branding {
    float: left;
}

#breadcrumbs {
    font-size: 90%;
    font-weight: 300;
    padding: 0 0 10px;
}

header.shrink+#content {
    padding: 180px 3% 3% !important;
}

#content {
    position: relative;
}

body.login #content {
    min-height: 100px;
}

#content>h1 {
    float: left;
    font-weight: 300;
    padding: 0 0 20px;
}

body.login #content>h1 {
    float: none;
    margin: 0 auto;
    width: 35%;
}

#content p {
    clear: both;
}

#content.colMS #content-main {
    clear: left;
    float: left;
    width: 75%;
}

#content.colMS #content-related {
    float: right;
    width: 22%;
}

#content-main ul {
    padding: 0 0 0 15px;
}

.formula {
    display: flex;
    font-size: 120%;
    font-weight: 300;
    padding: 20px;
    width: 100%;
    flex-flow: row wrap;
    justify-content: flex-start;
    align-content: center;
    align-items: center;
}

.formula li {
    flex-grow: 0;
    flex-shrink: 0;
    list-style: none;
    padding-right: 30px;
}

.formula li::after {
    color: #aaa;
}

.formula li.equal::after {
    content: "=";
    display: block;
    float: right;
    font-size: 120%;
    font-weight: 600;
    margin-left: 25px;
}

.formula li.key {
    margin-right: 30px;
    padding-right: 60px;
    position: relative;
}

.formula li.key::after {
    content: "→";
    font-size: 160%;
    font-weight: 600;
    position: absolute;
    right: 0;
    top: 10px;
}

.formula li small {
    clear: both;
    display: block;
    padding-bottom: 5px;
}

.formula li strong {
    font-size: 200%;
    font-weight: 600;
}

.formula p {
    font-weight: 400;
    margin: 0;
    padding-bottom: 0 !important;
    text-align: center;
    width: 100%;
}

.formula p:first-child {
    border-top: 0px !important;
}

.formula p:last-child {
    border-top: 1px solid #555;
}

.toolbar_actions {
    display: inline-block;
    padding: 10px 20px;
    width: 100%;
}

.toolbar_actions>div {
    float: left;
    margin: 0 5% 0 0;
    width: 45%;
}

.toolbar_actions>div:last-child {
    margin: 0;
    width: 50%;
}

.toolbar_actions optgroup {
    font-style: normal;
    padding: 15px 0;
    text-indent: 10px;
    text-transform: uppercase;
}

.toolbar_actions option {
    padding: 5px;
    text-indent: 5px;
}

.toolbar_actions #menu-relativo option {
    padding: 5px;
    text-transform: none;
}

.toolbar_actions #menu-relativo option::before {
    content: "- ";
}

.toolbar_actions select {
    background: var(--primary);
    color: var(--white);
    max-width: 80%;
    padding: 8px 3px;
}

.toolbar_actions select:focus {
    border: 2px solid var(--gray-200);
}

#top-of-the-page {
    clear: none;
}

#user-tools {
    background: var(--gray-100);
    font-size: 95%;
    width: 100%;
    z-index: 1;
}

#user-tools a {
    color: #2c3e50;
    height: 36px;
    line-height: 36px;
    padding: 0 10px;
}

#user-tools li a {
    display: block;
}

#user-tools a:hover {
    color: #75ad0a;
}

#user-tools p {
    color: var(--gray-500);
    float: left;
    height: 36px;
    line-height: 36px;
}

#user-tools ul {
    float: right;
}

#user-tools li {
    float: left;
    list-style: none;
    margin: 0 0 0 10px;
}

#user-tools li:last-child {
    background: #c0392b;
}

#user-tools li:last-child:hover {
    background: var(--white);
}

#user-tools li:last-child a {
    color: var(--white);
    padding: 0 15px;
}

#user-tools li:last-child:hover a {
    color: #c0392b;
}

#user-tools .container,
#view {
    padding: 0 40px;
}

body.portal #user-tools .container,
body.portal #view {
    padding: 0 100px;
}

#view>div {
    background: var(--primary);
    overflow: hidden;
    width: 100%;
}

#view form {
    float: right;
    margin: 0;
}

#view label {
    color: var(--gray-300);
    width: 20%;
}

#view p {
    border: 2px solid var(--warning);
    color: var(--warning);
    font-size: 100%;
    font-weight: 300;
    height: 34px;
    line-height: 32px;
    margin: 8px;
    padding: 0 10px;
}

#view ul {
    overflow: hidden;
    width: 100%;
}

#view li {
    border-right: 2px solid #2c3e50;
    float: left;
    height: 50px;
    line-height: 50px;
    list-style: none;
}

#view li.main a {
    background: var(--primary);
    border: 2px solid var(--gray-300);
    color: var(--gray-300);
    line-height: 26px;
    margin: 10px;
    padding: 0 10px;
    text-transform: uppercase;
}

#view li.main a:hover {
    background: #2c3e50;
    border: 2px solid var(--gray-500);
    color: var(--gray-100);
}

#view li.main a span.fa {
    margin-right: .25rem;
}

#view li.error {
    background: #c0392b;
}

#view li.float-right {
    border-left: 2px solid #2c3e50;
    border-right: 0 none;
    float: right;
}

#view li.success {
    background: var(--success);
}

#view li.success:hover a {
    color: var(--gray-300);
}

#view li a {
    color: var(--gray-100);
    display: block;
    font-weight: 400;
    line-height: 1em;
    padding: 18px 25px;
    text-transform: none;
}

#view li.submenu>a {
    display: inline-block;
    float: left;
}

#view li.submenu li {
    border-right: 0 none;
}

#view li.submenu li a {
    color: var(--gray-300);
    font-weight: 300;
    padding: 0 10px;
}

#view li.submenu li a:before {
    content: "› ";
}

#view li.submenu ul {
    float: left;
    padding: 0 15px 0 0;
    width: auto;
}

#view li a:hover {
    background: #2c3e50;
    color: var(--success);
    color: rgba(236, 240, 241, 0.6);
}

#view li a strong {
    color: #75ad0a;
}

#view li a:hover strong {
    color: rgba(117, 173, 10, 0.6);
}

#welcome {
    color: var(--gray-400);
    padding: 0 0 10px;
}

.action-links {
    margin: 20px 0 0 15px;
}

body.login .action-links {
    display: block;
    margin: 20px auto 0;
    width: 35%;
}

.action-links a {
    border: 2px solid var(--gray-100);
    display: block;
    padding: 5px;
}

.action-links li {
    float: right;
    list-style: none;
}

body.login .action-links li {
    float: left;
    margin-right: 5px;
    margin-bottom: 5px;
}

.align-center {
    text-align: center;
}

.align-right {
    text-align: right;
}

.box {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-content: stretch;
    align-items: stretch;
    margin: 0 -20px;
    width: calc(100% + 40px);
}

.box>div {
    border: 2px solid var(--gray-100);
    flex-basis: 260px;
    flex-grow: 1;
    flex-shrink: 0;
    margin: 20px;
    padding: 35px;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

.box>div:hover {
    border: 2px solid var(--gray-300);
    border-radius: 9px;
}

.box>div.alert {
    border: 2px solid var(--warning);
}

.box>div.error {
    border: 2px solid var(--danger);
}

.box>div.info {
    border: 2px solid var(--gray-500);
}

.box>div.success {
    border: 2px solid var(--success);
}

.box>div.collapsed {
    border: 2px solid var(--gray-300);
    flex-basis: 100px;
}

.box>div.collapsed>h2:first-child {
    margin-bottom: 0;
}

.box>div.collapsed .content {
    display: none;
}

.box>div>h2[data-collapsible] {
    cursor: pointer;
}

.box>div>h2[data-collapsible]:after {
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 800;
    margin-left: 20px;
    opacity: 0.5;
}

.box>div>h2[data-collapsible]:after:hover {
    opacity: 1;
}

.box>div.collapsed>h2[data-collapsible]:after {
    content: "\f105";
}

.box>div p.description {
    color: var(--gray-600);
    font-size: 1.1rem;
    font-weight: 300;
    padding-bottom: 2rem;
}

.box>div>span {
    font-weight: 400;
    display: inline-block;
}

.box>div>h2:first-child,
.box>div>h3:first-child {
    border-left: 7px solid var(--gray-400);
    color: var(--gray-400);
    margin: 0 0 20px -37px;
    padding: 0 0 0 26px;
    text-transform: uppercase;
}

.box>div.alert>h2:first-child,
.box>div.alert>h3:first-child {
    border-left: 7px solid var(--warning);
    color: var(--warning);
}

.box>div.alert>h2:first-child a,
.box>div.alert>h3:first-child a {
    color: var(--warning);
}

.box>div.error>h2:first-child,
.box>div.error>h3:first-child {
    border-left: 7px solid var(--danger);
    color: var(--danger);
}

.box>div.error>h2:first-child a,
.box>div.error>h3:first-child a {
    color: var(--danger);
}

.box>div.info>h2:first-child,
.box>div.info>h3:first-child {
    border-left: 7px solid var(--gray-500);
    color: var(--gray-500);
}

.box>div.info>h2:first-child a,
.box>div.info>h3:first-child a {
    color: var(--primary);
}

.box>div.success>h2:first-child,
.box>div.success>h3:first-child {
    border-left: 7px solid var(--success);
    color: var(--success);
}

.box>div.success>h2:first-child a,
.box>div.success>h3:first-child a {
    color: var(--success);
}

.box *+h3 {
    color: var(--primary);
    line-height: 1.2em;
    margin: 30px 0 10px;
    padding: 5px 0 0;
}

.box *+h3:first-of-type {
    margin: 10px 0;
}

.box *+h3 a {
    color: var(--primary);
}

.box>div.alert *+h3 {
    border-top: 2px solid var(--warning);
    color: var(--warning);
}

.box>div.alert *+h3 a {
    color: var(--warning);
}

.box>div.error *+h3 {
    border-top: 2px solid var(--danger);
    color: var(--danger);
}

.box>div.error *+h3 a {
    color: var(--danger);
}

.box>div.success *+h3 {
    border-top: 2px solid #3DA050;
    color: #3DA050;
}

.box>div.success *+h3 a {
    color: #3DA050;
}

.box h3:hover {
    color: #000;
}

.box h3:hover a {
    color: #000;
}

.box ol {
    display: inline-block;
    padding: 0 0 0 15px;
    width: 100%;
}

.box ol li {
    background: var(--gray-100);
    margin: 0 0 5px;
    padding: 8px;
}

.box .box12 {
    flex-basis: calc(100% - 40px);
}

.box .box9 {
    flex-basis: calc(75% - 40px);
}

.box .box8 {
    flex-basis: calc(66.6667% - 40px);
}

.box .box6 {
    flex-basis: calc(50% - 40px);
}

.box .box4 {
    flex-basis: calc(33.3333% - 40px);
}

.box .box3 {
    flex-basis: calc(25% - 40px);
}

.box .box2 {
    flex-basis: calc(16.6666% - 40px);
}

.box .lista {
    margin: 0 -25px;
}

.box .lista h3 {
    border: 0 none !important;
    font-size: 120%;
    padding: 0 0 15px;
}

.box .lista h3 a {
    color: var(--primary)
}

.box .lista li {
    background-color: rgba(10, 61, 98, 0.02);
    border-top: 2px solid var(--primary);
    flex-basis: 285px;
    list-style: none;
    overflow: hidden;
    margin: 25px;
    padding: 25px;
}

.box>div.alert .lista li {
    border-top: 2px solid var(--warning);
}

.box>div.error .lista li {
    border-top: 2px solid var(--danger);
}

.box>div.success .lista li {
    border-top: 2px solid var(--success);
}

.box .lista .btn {
    margin: 15px 0 0;
}

.btn,
.object-tools a {
    border: 2px solid var(--gray-400);
    clear: both;
    color: var(--gray-400);
    float: right;
    font-size: .8rem;
    font-weight: 600;
    padding: 6px 10px;
    text-align: center;
    text-decoration: none;
    text-transform: uppercase;
    white-space: nowrap;
}

.btn:hover,
.object-tools a:hover {
    border: 2px solid #2c3e50;
    border-radius: 9px;
    color: #2c3e50;
}

tr:hover .btn,
tr:hover .object-tools a,
.primary:hover {
    background: #2c3e50;
    border: 2px solid #2c3e50;
    color: var(--white) !important;
}

.btn.danger,
.object-tools .danger {
    border: 2px solid #c0392b;
    color: #c0392b;
}

.btn.danger:hover,
.object-tools .danger:hover,
tr:hover .btn.danger,
tr:hover .object-tools .danger {
    background: #c0392b;
    border: 2px solid #c0392b !important;
    color: var(--white);
}

.btn.primary,
.object-tools .primary {
    border: 2px solid #2c3e50;
    color: #2c3e50;
}

.btn.success,
.object-tools .success {
    border: 2px solid var(--success);
    color: var(--success);
}

.btn.success:hover,
.object-tools .success:hover,
tr:hover .btn.success,
tr:hover .object-tools .success {
    background: var(--success);
    border: 2px solid var(--success);
    color: var(--white);
}

.object-tools a .fas,
.btn .fas {
    font-size: .9rem;
    margin-right: .25rem;
}

.container {
    clear: both;
    margin: 0 auto;
    overflow: hidden;
    padding: 40px;
    width: 100%;
}

body.portal .container {
    padding-left: 100px;
    padding-right: 100px;
}


.definition-list {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    width: 100%;
}

.definition-list>div {
    border-bottom: 2px solid var(--gray-100);
    flex-basis: 280px;
    flex-grow: 1;
    padding: .5rem 0;
}

.definition-list dt {
    color: var(--gray-600);
    float: none;
    font-size: .85rem;
    font-weight: 500;
    line-height: 1em;
    width: 100%;
}

.definition-list dt::after {
    content: ":";
}

.definition-list dd {
    font-size: 1.1rem;
    font-weight: 500;
    padding: 0.25rem 0 0;
}

.definition-list dd+dd {
    padding-top: 0;
}

td.disabled {
    background: #aaa;
    border: 1px solid var(--gray-100);
    color: var(--white);
    font-weight: 400;
    text-align: center;
}

.editalativo {
    margin: 0 0 10px;
    padding: 0 !important;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

.editalativo a {
    color: var(--success);
    display: block;
    font-size: 130%;
    line-height: 1.4em;
}

.errorlist {
    background: rgba(231, 76, 70, 0.1);
    border-top: 1px solid rgba(231, 76, 70, 0.4);
    padding: 0 0 5px !important;
}

.errorlist li {
    color: #c0392b;
    font-size: 95%;
    line-height: 1.2em;
    list-style: square;
    margin: 0 0 0 25px;
    padding: 10px 20px 10px 0;
}

.errornote {
    background: rgba(231, 76, 70, 0.1);
    border-left: 2px solid #c0392b;
    color: #c0392b;
    padding: 10px !important;
}

aside .etapas {
    border-bottom: 2px solid var(--gray-100);
    border-top: 3px solid var(--success);
    margin: 20px 0;
    padding: 20px 0;
}

.etapa.status_passada {
    color: var(--gray-400);
}

.etapa.status_etapaatual,
.etapa.status_marcoatual {
    color: #c0392b;
}

.etapa.status_proximo {
    color: var(--warning);
}

.etapa.status_atencao {
    color: var(--success);
}

.flex-container {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-content: stretch;
    align-items: stretch;
}

.flex-container>div,
.flex-container>li {
    flex-basis: 200px;
    flex-grow: 1;
    flex-shrink: 0;
}

.float-none {
    float: none;
}

.fontSize200 {
    font-size: 200%;
}

.false,
.False {
    color: #c0392b;
}

td.false {
    background: #c0392b;
    border: 1px solid var(--gray-100);
    color: var(--white);
    font-weight: 400;
    text-align: center;
}

.float-right {
    float: right !important;
}

.float-left {
    float: left !important;
}

.general-box {
    border: 2px solid var(--gray-200);
    display: inline-block;
    margin: 2rem 0 0;
    padding: 1.5rem 2rem 2rem;
    width: 100%;
}

.general-box .title {
    background: var(--white);
    color: var(--gray-400);
    font-size: 1.1rem;
    margin-top: -2.3rem;
    margin-left: -1rem;
    padding: 0 1rem;
}

.general-box .definition-list {
    margin: 1rem 0;
}

.general-box span.status {
    background: var(--white);
    margin-top: -2.5rem;
    float: right;
    font-weight: 900;
    padding: 5px 1rem;
    text-transform: uppercase;
}

.invisible {
    display: block !important;
    height: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
    text-indent: -9000px !important;
    width: 0 !important;
}

ul.messagelist {
    display: inline-block;
    font-size: 110%;
    margin: 10px 0 25px;
    width: 100%;
}

body.login ul.messagelist {
    display: block;
    margin: 10px auto 25px;
    width: 35%;
}

ul.messagelist a {
    text-decoration: underline;
}

ul.messagelist li {
    border-bottom: 2px solid #2c3e50;
    font-weight: 300;
    list-style: none;
    padding: 10px;
}

ul.messagelist li.error,
ul.messagelist li.warning {
    background: #f2dede;
    border-color: #ebccd1;
    color: #a94442;
}

ul.messagelist li.info {
    background: #d9edf7;
}

ul.messagelist li.success {
    background: var(--success);
    color: var(--white);
}

.mini {
    font-size: 80%;
}

.module {
    display: inline-block;
    width: 100%;
}

fieldset.module h2 {
    border-bottom: 2px solid var(--primary);
    border-left: 0 none;
    color: var(--primary);
    float: none;
    font-size: 140%;
    font-weight: 300;
    margin: 0 0 20px;
    padding: 0 0 10px !important;
    text-transform: none;
}

.msg {
    border-bottom: 0 none;
    border-right: 0 none;
    border-top: 0 none;
    clear: both;
    font-size: 105%;
    line-height: 1.2em;
    list-style: none;
    margin: 20px 0;
    padding: 15px;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

body.login .msg {
    margin: 20px auto !important;
    width: 35%;
}

.box .msg {
    margin: 10px 0 !important;
}

.msg.alert {
    background: #FCF8E3;
    border-left: 2px solid #C09853;
    color: #C09853;
}

.msg.alert:hover {
    background: #FCF8E3;
}

.msg.info {
    background: #d9edf7;
    border-left: 2px solid #3A87AD;
    color: #3A87AD;
}

.msg a {
    text-decoration: underline;
}

.msg p:last-child {
    padding: 0;
}

.mt-4 {
    margin-top: 4rem;
}

.none,
.None {
    color: #C09853;
}

.object-tools {
    float: right;
}

h1+.object-tools {
    margin: 3px 0 0;
}

h3+.object-tools,
h5+.object-tools {
    margin: 15px 0 0;
}

table.info+.object-tools {
    margin: 20px 0 0;
}

.field-get_acoes .object-tools {
    padding: 0 !important;
}

.field-get_acoes .object-tools li {
    margin: 3px 6px 3px 0;
}

.object-tools li {
    float: left;
    list-style: none;
    margin: 0 0 5px 5px;
}

.oculto {
    display: none;
}

.pagination {
    color: var(--gray-500);
    font-size: 95%;
    font-weight: 300;
    margin: 20px 0 0;
}

.pagination li {
    border: 2px solid var(--gray-100);
    float: left;
    list-style: none;
    margin: 0 5px 0 0;
    padding: 5px;
}

.pagination li a {
    color: var(--primary);
    font-weight: 600;
}

.searchbar-and-filters {
    background: var(--gray-100);
    display: inline-block;
    margin: 0 0 20px;
    padding: 15px 20px;
    width: 100%;
}

.searchbar-and-filters form {
    margin: 0;
}

.searchbar-and-filters input[type="submit"] {
    background: var(--gray-500);
    clear: none;
    float: left;
    font-size: 100%;
    height: 24px;
    padding: 0 10px;
}

.searchbar-and-filters label {
    float: left;
    margin: 0;
    width: auto;
}

.searchbar-and-filters select {
    float: left;
    font-size: 90%;
    height: 24px;
    margin: 0 20px 0 0;
    padding: 0;
    width: 120px;
}

.tabs {
    border-bottom: 2px solid var(--primary);
    display: inline-block;
    margin: 30px 0 10px;
    width: 100%;
}

.tabs a {
    color: var(--gray-400);
    display: block;
    padding: 5px 12px;
}

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

.tabs li {
    float: left;
    list-style: none;
    margin: 0 5px -2px 0;
}

.tabs li.active {
    border: 2px solid var(--primary);
    border-bottom: 2px solid var(--white);
    border-radius: 3px 3px 0 0;
}

.tabs li.active a {
    color: var(--primary);
}

.true,
.True {
    color: var(--success);
}

td.true {
    background: var(--success);
    border: 1px solid var(--gray-100);
    color: var(--white);
    font-weight: 400;
    text-align: center;
}

.tags {
    display: inline-block;
    padding: 0;
    width: 100%;
}

.tags li {
    background: var(--gray-100);
    border-radius: 2px;
    color: var(--gray-500);
    float: left;
    font-size: 90%;
    list-style: none;
    margin: 0 6px 6px 0;
    padding: 2px 6px;
}

dd .tags li {
    color: #2c3e50;
}

.tags li.active {
    background: var(--gray-400);
    color: var(--gray-100);
}

.timeline {
    display: inline-block;
}

.timeline h4 {
    padding: 5px 0;
}

.timeline li {
    border-bottom: 2px solid var(--gray-100);
    display: inline-block;
    list-style: none;
    padding: 15px 0 15px 35px;
    position: relative;
    width: 100%;
}

.timeline li:before {
    content: "\f133";
    font-family: "Font Awesome 5 Free";
    font-size: 140%;
    font-weight: 800;
    opacity: 0.5;
    position: absolute;
    left: 0;
    top: 18px;
}

.timeline li:last-child {
    border-bottom: 0 none;
}

.timeline li.now:before {
    color: var(--warning);
    content: "\f783";
}

.timeline li.now .date {
    color: var(--warning);
}

.timeline li.next:before {
    color: var(--success);
    content: "\f784";
    opacity: 1;
}

.timeline li.next .date {
    color: var(--success);
}

.timeline li.future:before {
    color: var(--success);
    content: "\f272";
}

.timeline li.future .date {
    color: var(--success);
}

.timeline li.past:before {
    color: var(--danger);
    content: "\f274";
}

.timeline li.past .date {
    color: var(--danger);
}

.timeline p {
    float: left;
    padding: 0;
}

.timeline .date {
    color: var(--gray-500);
}

.timeline .extra {
    color: var(--gray-400);
    font-size: 95%;
    line-height: 1.2em;
    margin: 5px 0 0;
}

.toggle-aside {
    background: url(../img/toggle-aside.png) no-repeat 0 center;
    background-size: 20px auto;
    display: block;
    float: left;
    opacity: 0.4;
    padding: 0 !important;
    text-indent: -9000px;
    width: 40px;
}

.toggle-aside:hover {
    opacity: 1;
}

.word-break-all {
    word-break: break-all;
}

/* Status */
.status {
    font-weight: 400;
    padding: 5px 7px;
}

h1 .status,
h2 .status {
    display: table;
    font-size: 70%;
    margin: 10px 0 0;
    padding: 3px 5px;
    text-transform: none;
}

h1 .status.alert,
h2 .status.alert {
    border-left: 2px solid var(--warning);
}

h1 .status.error,
h2 .status.error {
    border-left: 2px solid var(--danger);
}

h1 .status.success,
h2 .status.success {
    border-left: 2px solid var(--success);
}

td .status {
    display: inline-block;
    margin: 2px 0;
}

.status.alert,
.status.em-espera,
.status.nao-processado,
.status.nao-respondido {
    background: rgba(241, 196, 15, 0.1);
    color: var(--warning);
}

.status.error,
.status.ausente,
.status.eliminado,
.status.eliminado-edital,
.status.indeferido {
    background: rgba(231, 76, 60, 0.1);
    color: var(--danger);
}

.status.success,
.status.deferido,
.status.aprovado,
.status.habilitado {
    background: rgba(39, 174, 96, 0.1);
    color: var(--success);
}

/* changelist.css */
#changelist table tbody td,
#changelist table tbody th {
    border: 1px solid #eee;
}

#changelist #toolbar {
    background: var(--gray-100);
    margin: 0 0 20px;
    padding: 20px;
    position: relative;
}

#changelist #toolbar form {
    margin: 0;
}

#changelist #toolbar form input {
    clear: none;
    float: left;
    font-size: 100% !important;
}

#changelist #toolbar form input[type="submit"] {
    background: var(--gray-300);
    border: 2px solid var(--gray-300);
    color: var(--white);
    font-size: 95%;
    height: 34px;
    margin: 0 0 0 2px;
    padding: 0 10px;
}

#changelist #toolbar form input[type="submit"]:active,
#changelist #toolbar form input[type="submit"]:hover {
    background: #2c3e50;
    border: 2px solid #2c3e50;
}

#changelist #toolbar form label {
    float: left;
    margin: 0 5px 0 0;
    padding: 6px 0 0 !important;
    width: 18px !important;
}

#changelist .actions {
    color: var(--gray-500);
    float: right;
    font-size: 90%;
    margin: 0 0 15px;
}

#changelist .actions label {
    font-size: 100% !important;
    margin: 0 !important;
    padding: 0 5px 0 0 !important;
}

#changelist .actions select {
    border: 2px solid var(--gray-300) !important;
    color: var(--gray-500);
    font-size: 95%;
    height: 32px;
    max-width: 30%;
}

#changelist .actions span {
    border-right: 1px solid #ddd;
    display: inline-block;
    margin: 0 10px 0 0;
    padding: 0 10px 0 0;
}

#changelist .actions span:last-child {
    border: 0 none;
    margin: 0;
    padding: 0;
}

#changelist .actions .button {
    display: inline;
    font-size: 100%;
    height: 32px;
    margin: 0 5px 0 0;
    padding: 0 12px !important;
}

#changelist .paginator {
    background: none !important;
    border: 0 none !important;
    color: var(--gray-300);
    font-size: 85%;
    margin: 20px 0 0;
}

#changelist .paginator a {
    border: 2px solid var(--gray-400);
    color: var(--gray-400);
    margin: 0 5px 0 0;
    padding: 6px 10px;
}

#changelist .paginator a:hover {
    background: var(--gray-400);
    color: var(--white);
}

#changelist .paginator span {
    border: 2px solid #2c3e50;
    color: #2c3e50;
    margin: 0 5px 0 0;
    padding: 6px 10px;
}

#changelist-filter {
    background: var(--white);
    float: right;
    font-size: 95%;
    height: 100%;
    overflow: auto;
    padding: 55px 0 0 10px;
    width: 160px;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

#changelist-filter h2 {
    font-size: 160%;
    padding: 0;
    width: 100%;
}

#changelist-filter h3 {
    font-size: 100%;
    width: 100%;
}

#changelist-filter li {
    line-height: 1.1em;
    list-style: none;
    margin: 8px 0 0 !important;
    opacity: 0.5;
}

#changelist-filter li:hover {
    opacity: 1;
}

#changelist-filter li.selected {
    border-left: 2px solid var(--primary) !important;
    display: inline-block;
    margin: 10px 0 0 -8px !important;
    opacity: 1 !important;
    padding: 0 0 0 6px !important;
}

div#changelist-filter li.selected a {
    color: var(--primary) !important;
}

#changelist-form {
    display: inline-block;
    width: 100%;
}

#changelist-filter+#changelist-form {
    float: left;
    width: 90%;
    width: calc(100% - 180px);
}

#changelist-search input[type="text"] {
    height: 34px;
    width: 220px;
}

#changelist-search label {
    display: none;
}

#changelist-search .small {
    display: inline-block;
    margin: 7px 0 0 20px;
}

.change-list div.filtered {
    background: none !important;
}

.change-list .filtered table {
    border-right: 0 none !important;
}

.column-get_acoes {
    text-align: right;
}

/* dashboard.css */
.dashboard .module table td a {
    padding: 3px 6px !important;
}

.dashboard .module table td a:hover {
    border: 2px solid var(--primary);
    color: var(--primary);
}

ul.actionlist li {
    border: 2px solid var(--gray-100);
    clear: both;
    margin: 0 0 10px;
    padding: 10px;
    width: 100%;
}

.addlink,
.changelink {
    border: 2px solid var(--primary);
    color: var(--primary);
    font-weight: 400;
    text-decoration: none;
}

.addlink:hover,
.changelink:hover {
    background: var(--primary);
    border-radius: 9px;
    color: var(--white) !important;
}

.addlink:hover a:hover, .changelink:hover a:hover {
    color: var(--white) !important;
}

.addlink:hover a, .changelink:hover a {
    color: var(--gray-200) !important;
    font-weight: bold;
}


/* forms.css */
#errorMsg {
    background: #FCF8E3;
    border-left: 2px solid #C09853;
    color: #C09853;
    overflow: hidden;
    padding: 10px;
}

#errorMsg h3 {
    font-size: 90%;
    padding: 0 0 10px;
}

#errorMsg ol {
    display: inline-block;
    padding: 0 0 0 20px;
    width: 100%;
}

fieldset .field-box {
    margin: 0 !important;
    width: 50%;
}

fieldset .field-box.errors,
.form-row.errors {
    background: #FEEFB4;
    border: 2px solid #CC0000;
    color: #CC0000;
}

fieldset .field-box.errors {
    margin: 0.5% !important;
    width: 49% !important;
}

fieldset .field-box.errors label,
.form-row.errors label {
    color: #CC0000;
}

form .aligned li {
    list-style: none;
}

form .aligned .errorlist li {
    margin: 0;
    padding: 8px 10px;
}

form .aligned li label {
    float: none;
    text-align: left;
    width: auto !important;
}

form .aligned ul {
    display: inline-block;
    margin: 0 !important;
    padding: 0 !important;
}

form .aligned ul.errorlist {
    margin: 0 0 0 210px !important;
    padding: 0 !important;
}

body.login form .aligned ul.errorlist {
    margin: 0 !important;
    width: 100%;
}

form .aligned .form-row p,
form .ctrlHolder p {
    clear: none !important;
    margin: 0;
    padding: 3px 0 !important;
}

form .aligned .form-row p.help,
form .ctrlHolder .formHint {
    color: var(--gray-400);
    font-size: 90% !important;
    margin: 5px 0 0 170px;
    padding: 0 !important;
}

body.login form .aligned .form-row .help,
body.login form .ctrlHolder .formHint {
    margin: 5px 0 0 !important;
}

form .aligned .form-row .help-tooltip {
    margin: 0 !important;
}

form .aligned .form-row .datetime {
    margin: 0 0 0 200px !important;
}

form .form-row p,
form .ctrlHolder p {
    font-size: 95% !important;
    padding: 8px 0 !important;
}

.errorField {
    color: #c0392b;
    text-indent: 200px;
}

.form-row,
.ctrlHolder {
    border-bottom: 2px solid var(--white) !important;
    font-size: 100% !important;
    overflow: hidden;
    padding: 10px 0 !important;
}

.form-row.error,
.ctrlHolder.error {
    background: #f2dede;
    border-bottom: 2px solid #ebccd1 !important;
}

.form-row:last-child,
.ctrlHolder:last-child {
    border-bottom: 0 none !important;
}

.form-row>div {
    overflow: hidden;
    padding: 10px !important;
}

.form-row>div:nth-last-child(n+2),
.form-row>div:nth-last-child(n+2)~li {
    float: left;
    width: 50%;
}

.form-row label,
.ctrlHolder label {
    float: left;
    font-size: 100% !important;
    text-align: right;
    width: 260px;
}

body.login .form-row label,
body.login .ctrlHolder label {
    text-align: left;
}

.box .form-row label,
.box .ctrlHolder label {
    display: inline-block;
    float: none;
    text-align: left;
    width: 100%;
}

.ctrlHolder ul {
    margin: 0 0 0 200px;
}

.ctrlHolder ul li {
    display: inline-block;
    list-style: none;
    width: 100%;
}

.ctrlHolder ul li label {
    width: auto !important;
}

.form-row.errors {
    margin: 0 0 10px;
}

.inline-group div.add-row,
.inline-group .tabular tr.add-row td {
    background: 0 none !important;
}

.inline-group .tabular td.original p {
    display: none;
}

.inline-related {
    position: static !important;
}

.inline-related fieldset {
    background: #f8f8f8 !important;
}

.submitButton {
    border: 0 none !important;
    float: left;
}

.submit-row {
    background: none !important;
    border: 0 none !important;
    display: inline-block;
    margin: 15px 0 0 !important;
    padding: 0 !important;
    position: relative;
    text-align: left;
    width: 100%;
}

.submit-row input {
    clear: none;
    display: block;
    float: left;
}

.submit-row input[type="submit"]~button {
    margin-left: 10px;
}

.submit-row input[name="_addanother"],
.submit-row input[name="_continue"],
.submit-row button[name="wizard_goto_step"] {
    background: var(--white);
    border: 2px solid var(--gray-400);
    color: var(--gray-400);
    display: inline-block;
    font-size: 90%;
    padding: 0 8px;
}

.submit-row input[name="_addanother"]:hover,
.submit-row input[name="_continue"]:hover,
.submit-row button[name="wizard_goto_step"]:hover {
    border: 2px solid #2c3e50;
    border-radius: 9px;
    color: #2c3e50;
}

.submit-row p.deletelink-box {
    float: right !important;
    position: absolute;
    right: 0;
    margin: 4px 0 0;
}

.submit-row p.deletelink-box a {
    background: none;
    border: 2px solid #CC0000;
    color: #CC0000;
    font-size: 90%;
    padding: 4px 7px;
    height: auto;
}

.submit-row p.deletelink-box a:hover {
    border: 2px solid var(--gray-400);
    border-radius: 9px;
    color: var(--gray-400);
}

.submit-row+table {
    margin: 30px 0 0;
}

.dynamic-grupocriterio_set select {
    max-width: 600px !important;
    width: 100% !important;
}

/* crispy.forms */
#recaptcha_widget_div {
    display: inline-block;
}

.asteriskField {
    color: #c0392b;
    font-weight: 600;
    padding: 0 0 0 5px;
}

/* login.css */
body.login form {
    margin: 0 auto;
    width: 35%;
}

body.login input[type="password"],
body.login input[type="text"] {
    width: 100%;
}

body.login .form-row label {
    text-align: left;
}

/* dataTables */
div.dataTables_wrapper {
    overflow: auto;
}

div.dataTables_wrapper .dataTables_info {
    color: var(--gray-600);
    font-size: 90%;
}

div.dataTables_wrapper .dataTables_paginate {
    padding-top: 10px;
}

div.dataTables_wrapper .dataTables_filter input {
    border-style: solid;
    border-width: thin;
}

div.dataTables_wrapper .dataTables_filter label {
    padding-right: 0;
}

.dataTables_length label {
    color: var(--gray-600);
    display: flex;
    line-height: 38px;
    margin-bottom: 20px;
    font-size: 90%;
    font-weight: 300;
    width: auto;
}

.dataTables_length label select {
    flex-basis: 100px;
    margin: 0 6px;
    width: 80px;
}

/* widgets.css */
p.datetime input {
    margin: 0 5px 5px 10px;
    width: 100px;
}

.selector .selector-available h2,
.selector .selector-chosen h2 {
    background: none transparent !important;
    border: 0 none !important;
    color: var(--gray-600);
    font-size: 110%;
    font-weight: 600;
    margin: 0;
    padding: 0 !important;
    text-align: left;
}

.selector .selector-filter {
    background: none transparent !important;
    border: 0 none !important;
    margin: 0 0 5px !important;
    padding: 0 !important;
}

.selector .selector-filter label {
    display: inline-block;
    width: 10% !important;
}

.selector .selector-filter label img {
    float: right;
}

.selector-chosen select {
    border-top: 2px solid var(--gray-200) !important;
}

.stacked .selector-available input {
    width: 90% !important;
}

/* Filters */
.yadcf-filter-reset-button {
    background-color: transparent;
    color: #333;
    height: 30px;
    padding: 0 10px;
    font-size: 100%;
    font-weight: 600;
}

.yadcf-filter-reset-button:hover {
    background-color: transparent;
    color: var(--danger);
}

.yadcf-filter-wrapper input[type="text"] {
    height: 34px;
}

/* BODY classes */
body.admin #content .ha-subtemplate {
    float: right;
    width: 80%;
}

body.error ol {
    padding: 20px 0 0 15px;
}

body.error #content>h1 {
    color: #c0392b;
    float: none;
    font-size: 400%;
}

body.error #content>h2 {
    border: 2px solid #c0392b;
    color: #c0392b;
    padding: 20px;
}

body.index #content>h1 {
    display: none;
}

body.pdf caption {
    border: 0 none;
    display: inline-block;
    margin: 20px 0 0;
    width: 100%;
}

body.pdf dd {
    padding: 0;
}

body.pdf td {
    border: 1px solid #000;
    padding: 9px;
}

/* Media-queries */
@media print {
    @page {
        size: A4;
    }

    * {
        background: none !important;
        color: #000 !important;
        text-shadow: none !important;
        filter: none !important;
        -ms-filter: none !important;
    }

    body {
        font: 10pt serif;
    }

    a:link,
    a:visited {
        color: #333;
        text-decoration: none;
    }

    a:after {
        content: " (" attr(href)")";
    }

    a[href^="javascript:"]:after,
    a[href^="#"]:after {
        content: "";
    }

    aside.active+main {
        margin: 0;
        width: 100%;
    }

    dd {
        font-weight: 600;
    }

    div[data-tab],
    .holder,
    .pagination li:first-child,
    .print,
    .tab,
    .tab.no-print.active {
        display: block !important;
    }

    aside,
    footer,
    header h1 a span,
    input[type="submit"],
    footer nav,
    #about,
    #user-tools,
    #view,
    .breadcrumbs,
    .btn,
    .object-tools,
    .tabs {
        display: none !important;
    }

    h1,
    h2,
    h3,
    h4,
    h5 {
        page-break-after: avoid;
        padding: 30px 0 10px;
    }

    h1 {
        font-size: 20pt;
    }

    h2 {
        font-size: 16pt;
    }

    h3 {
        font-size: 14pt;
    }

    h4,
    h5 {
        font-size: 12pt;
    }

    header h1 a {
        background: none !important;
        padding: 0;
    }

    header h1 a:after {
        content: "";
    }

    img,
    table,
    tr,
    td,
    tr,
    th,
    dl,
    dt,
    dd,
    p {
        page-break-inside: avoid;
    }

    label {
        line-height: 24px;
    }

    main {
        width: 100% !important;
    }

    p {
        orphans: 3;
        widows: 3;
    }

    p a {
        word-wrap: break-word;
    }

    table {
        font: 10pt serif;
    }

    .box {
        margin: 0;
        width: 100%;
    }

    .box>div {
        border: 0 none !important;
        height: auto !important;
        margin: 20px 0;
        padding: 0;
        flex-basis: 100% !important;
    }

    .box h2 {
        border: 0 none !important;
        margin: 0;
        padding: 0 0 10px;
    }

    .box h3,
    .box .lista li {
        border: 0 none !important;
    }

    .container {
        padding: 0;
    }

    .flex-container {
        display: block;
    }

    .msg {
        border: 0 none !important;
        padding: 10px 0 !important;
    }
}

@media only screen and (max-device-width: 480px),
only screen and (min-device-width: 481px) and (max-device-width: 1024px) and (orientation:portrait),
only screen and (min-device-width: 481px) and (max-device-width: 1024px) and (orientation:landscape) {

    button,
    input[type="button"],
    input[type="submit"] {
        height: 56px;
    }

    .flex-container {
        flex-flow: column nowrap;
    }

    .flex-container>div,
    .flex-container>li {
        flex-basis: 50px;
    }
}

@media screen and (min-width: 1700px) {

    #user-tools .container,
    #view,
    .container {
        padding-left: 200px;
        padding-right: 200px;
    }
}

@media screen and (max-width: 1200px) {

    body.portal #user-tools .container,
    body.portal #view,
    body.portal .container {
        padding-left: 40px;
        padding-right: 40px;
    }
}

@media screen and (max-width: 1100px) {
    header h1 a {
        font-size: 130%;
    }
}

@media screen and (max-width: 940px) {

    .box .box9,
    .box .box8,
    .box .box6,
    .box .box4,
    .box .box3,
    .box .box2,
    .box .box1 {
        flex-basis: calc(100% - 40px);
    }
}

@media screen and (max-width: 800px) {
    fieldset .field-box {
        margin: 10px 0 !important;
    }

    fieldset .field-box,
    fieldset .field-box label {
        width: 100% !important;
    }

    fieldset .field-box p.help {
        margin: 5px 0 0 0 !important;
    }

    footer {
        padding: 5% 3%;
    }

    .form-row>div:nth-last-child(n+2),
    .form-row>div:nth-last-child(n+2)~li {
        width: 100%;
    }

    .form-row label,
    .ctrlHolder label {
        text-align: left;
    }

    form .aligned .form-row p.help,
    form .ctrlHolder .formHint {
        margin: 5px 0 0;
    }

    header h1 a {
        background-image: url(/logo/responsivo);
        background-position: 0 0;
        background-size: auto 60px;
        display: inline-block;
        height: auto;
        padding: 3px 0 0 55px;
    }

    header .container {
        padding: 20px 20px 0;
    }

    #about,
    #user-tools p,
    #view label {
        display: none;
    }

    #branding {
        float: none;
        width: 100%;
    }

    #content.colMS #content-main,
    #content.colMS #content-related,
    .form-row>div>input[type="text"][maxlength="255"],
    .form-row select,
    .toolbar_actions>div:last-child {
        width: 100%;
    }

    #content>h1 {
        font-size: 160%;
    }

    #user-tools .container,
    #view,
    .container {
        padding-left: 20px;
        padding-right: 20px;
    }

    #view {
        float: none;
        margin: 30px 0 0;
        overflow: hidden;
    }

    #view form {
        text-align: center;
    }

    .aligned label {
        width: 100% !important;
    }

    .box>div {
        padding: 25px;
    }

    .box>div>h2:first-child,
    .box>div>h3:first-child {
        margin-left: -27px;
        padding-left: 20px;
    }

    .box h2 {
        font-size: 140%;
    }

    .container {
        padding-bottom: 20px;
        padding-top: 20px;
    }

    .toolbar_actions {
        padding: 10px;
    }

    .toolbar_actions>div {
        margin-right: 0;
        width: 100%;
    }

    .toolbar_actions>div:last-child {
        margin-top: 10px;
    }

    .toolbar_actions select {
        max-width: 100%;
    }

    body.index .box4 {
        height: auto !important;
    }

    body.login form,
    body.login ul.messagelist,
    body.login #content>h1,
    body.login .action-links,
    body.login .errornote,
    body.login .msg {
        width: 100%;
    }
}

@media only screen and (min-device-width: 320px) and (max-device-width: 1024px) {
    header h1 a {
        background-size: auto 40px;
        font-size: 90%;
        padding-left: 30px;
    }

    header h1 a span {
        padding-right: 0;
    }

    #view li.main {
        text-align: center;
        width: 100%;
    }

    #view li.success {
        background-color: transparent;
    }

    #view li.success a {
        color: var(--success);
    }
}




.editalListaUnidades>li {
    display: inline;
}

.editalListaUnidades>li:after {
    content: ", ";
}

.editalListaUnidades>li:last-child:after {
    content: ".";
}

.form-row select {
    max-width: 100%;
}

.edital_aplicacao_unidade {
    border: 1px solid;
    height: 400px;
    overflow: scroll;
    padding: 10px;
    width: 170px;
    display: inline-block;
    float: left;
}

.planejamento_unidades li {
    display: inline;
}

.planejamento_unidades li:after {
    content: ", ";
}

.planejamento_unidades li:first-child:after {
    content: ".";
}

[tooltip]:before {
    /* needed - do not touch */
    content: attr(tooltip);
    position: absolute;
    opacity: 0;

    /* customizable */
    transition: all 0.35s ease;
    padding: 10px;
    color: #333;
    border-radius: 10px;
    box-shadow: 2px 2px 1px silver;
}

[tooltip]:hover:before {
    /* needed - do not touch */
    opacity: 1;

    /* customizable */
    background: yellow;
    margin-top: 20px;
    margin-left: 20px;
}

[tooltip]:not([tooltip-persistent]):before {
    pointer-events: none;
}

.popup {
    background-color: var(--white);
    border-radius: 10px 10px 10px 10px;
    box-shadow: 0 0 25px 5px var(--gray-400);
    color: #111;
    display: block;
    width: 790px;
    padding: 25px;
}

.bClose {
    background: none;
    border: 2px solid #CC0000;
    color: #CC0000;
    font-size: 90%;
    padding: 4px 7px;
    float: right;
}



.questao-correta {
    background: blue;
}

.questao-errada {
    background: red;
}

.modalDialog {
    position: fixed;
    overflow: scroll;
    font-family: Arial, Helvetica, sans-serif;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.8);
    z-index: 99999;
    opacity: 0;
    -webkit-transition: opacity 400ms ease-in;
    -moz-transition: opacity 400ms ease-in;
    transition: opacity 400ms ease-in;
    pointer-events: none;
}

.modalDialog:target {
    opacity: 1;
    pointer-events: auto;
}

.modalDialog>div {
    width: 80%;
    position: relative;
    margin: 10% auto;
    padding: 5px 20px 13px 20px;
    border-radius: 10px;
    background: var(--white);
    /*background: -moz-linear-gradient(var(--white), var(--gray-400));*/
    /*background: -webkit-linear-gradient(var(--white), var(--gray-400));*/
    /*background: -o-linear-gradient(var(--white), var(--gray-400));*/
}

.close {
    background: #606061;
    color: var(--white);
    line-height: 25px;
    position: absolute;
    right: -12px;
    text-align: center;
    top: -10px;
    width: 24px;
    text-decoration: none;
    font-weight: bold;
    -webkit-border-radius: 12px;
    -moz-border-radius: 12px;
    border-radius: 12px;
    -moz-box-shadow: 1px 1px 3px #000;
    -webkit-box-shadow: 1px 1px 3px #000;
    box-shadow: 1px 1px 3px #000;
}

.close:hover {
    background: #00d9ff;
}

.delete-confirmation div#content{
    display: flex;
    flex-direction: column;

    ul{
        margin-left:3rem; 
    }
}