:root {
    --font-sans: "Roboto", Arial, Helvetica, sans-serif;
    --font-condensed: "Roboto Condensed", "Roboto", Arial, Helvetica, sans-serif;
    --ink: #1f2933;
    --muted: #62717d;
    --line: #d9e2e8;
    --surface: #ffffff;
    --surface-soft: #f4f7f8;
    --primary: #2f91b4;
    --primary-dark: #00466e;
    --danger: #b42318;
    --success: #0f766e;
    --shadow: 0 18px 50px rgba(31, 41, 51, .18);
}

* {
    box-sizing: border-box;
}

html {
    overflow-y: scroll;
    scrollbar-gutter: stable;
}

[hidden] {
    display: none !important;
}

body {
    margin: 0;
    min-height: 100vh;
    background: #eeeeee;
    color: var(--ink);
    font-family: var(--font-condensed);
    line-height: 1.5;
}

body.body-lock {
    overflow: hidden;
}

a {
    color: var(--primary);
    text-decoration: none;
}

a:hover,
a:focus-visible {
    color: var(--primary-dark);
    text-decoration: underline;
}

button,
input,
select,
textarea {
    font: inherit;
}

hr {
    margin: 20px 0;
    border: 0;
    border-top: 1px solid #d5d5d5 !important;
}

small,
.small {
    font-size: 85%;
}

.center {
    text-align: center;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.page-shell {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    padding-bottom: var(--sticky-scroll-compensation, 0px);
    background: #f7f7f7;
}

.topbar {
    position: sticky;
    top: 0;
    z-index: 30;
    min-height: 80px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 0;
    padding: 0;
    background: #fff;
    border: 0;
    border-radius: 0;
    box-shadow: 0 0 2em rgba(0, 0, 0, .5);
}

.topbar-left {
    min-height: 80px;
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 0;
    min-width: 0;
}

.brand {
    min-height: 80px;
    display: inline-flex;
    align-items: center;
    color: var(--ink);
}

.brand-logo {
    display: block;
    width: auto;
    max-width: 160px;
    max-height: 80px;
    object-fit: contain;
}

.brand-logo-large {
    height: 80px;
}

.brand-logo-small {
    display: none;
    height: 55px;
    max-height: 55px;
}

.mobile-menu-button,
.icon-button,
.back-to-top {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    color: var(--ink);
    background: var(--surface-soft);
    border: 1px solid var(--line);
    border-radius: 4px;
    cursor: pointer;
}

.mobile-menu-button {
    display: none;
}

.topnav {
    flex: 1 1 auto;
    min-width: 0;
    min-height: 80px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 0;
    flex-wrap: wrap;
    padding-left: 0;
    padding-right: 0;
}

.topnav a,
.topnav .nav-button {
    min-height: 80px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 0;
    color: #000;
    background: transparent;
    border: 0;
    border-radius: 0;
    font-size: 18px;
    font-weight: 700;
    line-height: 80px;
    text-transform: uppercase;
    cursor: pointer;
}

.topnav .nav-button-primary {
    color: #000 !important;
    background: transparent !important;
    border-color: transparent !important;
}

.topnav>a,
.topnav>.topnav-dropdown,
.topnav>.nav-button {
    margin-left: 30px;
}

.topnav>.nav-button,
.topnav>.topnav-user {
    margin-left: auto;
    margin-right: 2em;
    padding-left: 2em;
    border-left: 1px solid #eeeeee;
}

.topnav a:hover,
.topnav a:focus-visible,
.topnav a.is-active,
.topnav .nav-button:hover,
.topnav .nav-button:focus-visible,
.topnav-dropdown:has(.topnav-dropdown-menu a.is-active)>.topnav-dropdown-trigger {
    color: #2f91b4;
    background: transparent;
    text-decoration: none;
}

.topnav .nav-button-primary:hover,
.topnav .nav-button-primary:focus-visible {
    color: #2f91b4 !important;
}

.topnav a.is-active,
.topnav-dropdown:has(.topnav-dropdown-menu a.is-active)>.topnav-dropdown-trigger {
    box-shadow: none;
}

.topnav-dropdown {
    position: relative;
}

.topnav-dropdown::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    height: 10px;
}

.topnav-dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 32;
    min-width: 200px;
    display: block;
    padding: 0;
    background: #fff;
    border: 0;
    border-radius: 0;
    box-shadow: 0 6px 12px rgba(0, 0, 0, .18);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-4px);
    transition: opacity 160ms ease, transform 160ms ease;
}

.topnav-dropdown:hover>.topnav-dropdown-menu,
.topnav-dropdown:focus-within>.topnav-dropdown-menu {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.topnav-menu-group {
    position: relative;
}

.topnav-dropdown-menu a {
    display: block;
    min-height: auto;
    width: 100%;
    padding: 10px 20px;
    color: #666;
    background: #fff;
    border-top: 1px solid #fff;
    font-size: 14px;
    font-weight: 700;
    line-height: 20px;
    text-transform: uppercase;
}

.topnav-submenu-trigger {
    display: flex !important;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.topnav-submenu {
    top: 0;
    left: 100%;
    min-width: 240px;
    transform: translateX(-4px);
}

.topnav-menu-group:hover>.topnav-submenu,
.topnav-menu-group:focus-within>.topnav-submenu {
    opacity: 1;
    pointer-events: auto;
    transform: translateX(0);
}

.topnav-dropdown-menu a:first-child {
    border-top: 0;
}

.topnav-dropdown-menu a:hover,
.topnav-dropdown-menu a:focus-visible {
    color: #2f91b4;
    background-color: transparent;
    box-shadow: none;
    text-decoration: none;
}

.topnav-dropdown-menu a.is-active {
    color: #2f91b4;
    background-color: transparent;
    box-shadow: none;
}

.topnav form {
    margin: 0;
}

.topnav-user {
    min-height: 80px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding-left: 0;
}

.user-chip {
    max-width: 180px;
    overflow: hidden;
    color: var(--muted);
    text-overflow: ellipsis;
    white-space: nowrap;
}

.nav-button-primary,
.button-primary {
    color: #fff !important;
    background: var(--primary) !important;
    border-color: var(--primary) !important;
}

@media (max-width: 1399px) and (min-width: 991px) {

    .topnav>a,
    .topnav>.topnav-dropdown>.topnav-dropdown-trigger,
    .topnav>.nav-button,
    .topnav-user .nav-button {
        font-size: 16px;
    }

    .topnav>a,
    .topnav>.topnav-dropdown,
    .topnav>.nav-button {
        margin-left: 20px;
    }

    .topnav>.nav-button,
    .topnav>.topnav-user {
        margin-left: auto;
        margin-right: 1.5em;
        padding-left: 1.5em;
    }
}

@media (max-width: 1249px) and (min-width: 991px) {

    .topnav>a,
    .topnav>.topnav-dropdown>.topnav-dropdown-trigger,
    .topnav>.nav-button,
    .topnav-user .nav-button {
        font-size: 14px;
    }

    .topnav>a,
    .topnav>.topnav-dropdown,
    .topnav>.nav-button {
        margin-left: 16px;
    }
}

.lettering {
    width: 100%;
    color: #666;
    background-color: #fff;
    box-shadow: 0 3px 4px rgba(0, 0, 0, .1);
    font-size: 18px;
    font-weight: 300;
    line-height: 1.3;
    padding-top: 45px;
    padding-bottom: 30px;
    transition: all 300ms ease;
}

.lettering-container {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
}

.lettering-container span:first-child {
    display: block;
    font-size: 72px;
    font-weight: 300;
    letter-spacing: -1px;
}

.lettering-container span:last-child {
    color: inherit;
    text-transform: uppercase;
}

.lettering.fixo {
    position: sticky;
    top: var(--topbar-height, 55px);
    z-index: 24;
    color: #fff;
    background-color: #444;
    font-size: 14px;
    line-height: inherit;
    padding-top: 10px;
    padding-bottom: 10px;
}

.lettering.fixo .lettering-container {
    display: block;
}

.lettering.fixo .lettering-container span:first-child {
    display: inline-block;
    margin-right: 1em;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 0;
}

.lettering.fixo .lettering-container span:last-child {
    display: inline;
}

.slideshow {
    position: sticky;
    top: calc(var(--topbar-height, 80px) + var(--lettering-fixed-height, 42px));
    z-index: 20;
    width: 100%;
    background: #fff;
    border-bottom: 1px solid #eeeeee;
}

.slideshow picture,
.slideshow img {
    display: block;
    width: 100%;
}

.slideshow img {
    height: clamp(230px, 30vw, 410px);
    object-fit: cover;
    object-position: center;
}

.home-hero {
    position: relative;
    isolation: isolate;
    min-height: clamp(270px, 36vw, 430px);
    overflow: hidden;
    background: #20272d;
    border-bottom: 1px solid #eeeeee;
}

.home-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background: linear-gradient(90deg, rgba(0, 0, 0, .52), rgba(0, 0, 0, .16) 52%, rgba(0, 0, 0, .06));
}

.home-hero-track {
    position: absolute;
    inset: 0;
    z-index: -2;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}

.home-hero-track img {
    width: 100%;
    height: 100%;
    min-width: 0;
    object-fit: cover;
}

.home-hero-caption {
    width: min(1180px, calc(100% - 32px));
    min-height: clamp(270px, 36vw, 430px);
    margin: 0 auto;
    display: grid;
    align-content: center;
    gap: 8px;
    padding: 34px 0;
    color: #fff;
}

.home-hero-caption h1 {
    max-width: 620px;
    margin: 0;
    font-size: clamp(2.15rem, 5vw, 4.1rem);
    line-height: .96;
    text-transform: uppercase;
}

.home-hero-caption p {
    max-width: 760px;
    margin: 0;
    color: rgba(255, 255, 255, .9);
    font-size: clamp(1rem, 2vw, 1.35rem);
    font-weight: 300;
    text-transform: uppercase;
}

.jumbotron::before,
.jumbotron::after,
.page-masthead::before,
.page-masthead::after {
    content: "";
    display: table;
}

.jumbotron::after,
.page-masthead::after {
    clear: both;
}

.jumbotron {
    /* margin-bottom: 40px; */
    padding-top: 40px;
    padding-bottom: 40px;
    color: #fff;
    background-color: #2f91b4;
}

.page-masthead .jumbotron {
    /* margin-top: 0 !important;
    margin-bottom: 0 !important; */
    padding: 60px 0;
}

.jumbotron-inner {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
    padding: 0;
    text-align: left;
}

.jumbotron h1,
.jumbotron h2,
.jumbotron h3 {
    margin-top: 0;
    color: inherit;
}

.jumbotron h1 {
    margin-bottom: 10px;
    font-size: 36px;
    font-weight: 500;
    line-height: 1.1;
}

.jumbotron p {
    margin: 0 !important;
    font-size: 42px;
    font-weight: 200;
}

.footer-container,
.breadcrumbs ol {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
}

.breadcrumbs {
    position: relative;
    width: 100%;
    transition: all 300ms ease;
    color: #777;
    background-color: #fff;
    border-top: 1px solid #e5e5e5;
    border-bottom: 1px solid #f7f7f7;
    box-shadow: 0 5px 6px rgba(0, 0, 0, .1);
    font-size: 18px;
    font-weight: 400;
    padding-top: 28px;
    padding-bottom: 28px;
}

.sticky-origin-marker {
    display: block;
    width: 0;
    height: 0;
    overflow: hidden;
    pointer-events: none;
}

.breadcrumbs ol {
    min-height: 0;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0;
    padding: 0;
    list-style: none;
}

.breadcrumbs li {
    display: inline-flex;
    align-items: center;
    font-size: inherit;
    font-weight: inherit;
}

.breadcrumbs li+li::before {
    content: "/";
    padding: 0 9px;
    color: #aaa;
}

.breadcrumbs .breadcrumbs-icon {
    color: #000;
    font-size: .9em;
}

.breadcrumbs .breadcrumbs-icon+li::before {
    content: "";
    padding: 0 5px;
}

.breadcrumbs span {
    color: #777;
}

.breadcrumbs.fixo {
    position: sticky;
    top: calc(var(--topbar-height, 55px) + var(--lettering-fixed-height, 42px));
    z-index: 23;
    background-color: #eee;
    border: 0;
    padding-top: 10px;
    padding-bottom: 10px;
    font-size: 14px;
}

.content {
    position: relative;
    z-index: 21;
    width: 100%;
    max-width: none;
    margin: 0;
    flex: 1;
    padding: 32px 20px 44px;
    background: #eeeeee;
}

body.home .content {
    width: 100%;
    max-width: none;
    margin: 0;
    padding-top: 20px;
    padding-right: 0;
    padding-bottom: 0;
    padding-left: 0;
    background: #fff;
}

.section-heading {
    margin: 0;
    padding-bottom: 0;
    border-bottom: 0;
}

.section-heading h2,
.section-heading h1 {
    margin: 0;
    color: #444;
    font-size: 35px;
    font-weight: 400;
    line-height: 1;
    padding-bottom: 0;
    text-transform: none;
}

.home-mainbody {
    padding: 0;
}

.home-featured-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    margin: 0;
    padding: 0;
    overflow: hidden;
    background: #444444;
}

.home-featured-card {
    position: relative;
    min-height: 150px;
    margin: 0;
    padding: 0;
    overflow: hidden;
    background: #fff;
    cursor: pointer;
}

.home-featured-card a {
    position: relative;
    display: block;
    min-height: 150px;
    color: #fff;
    text-decoration: none;
}

.home-featured-image {
    display: block;
    height: 150px;
    overflow: hidden;
}

.home-featured-image img {
    display: block;
    width: 100%;
    height: 150px;
    border: 0;
    object-fit: cover;
}

.home-featured-title {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0;
    margin: 0 !important;
    padding: 0 1em;
    overflow: hidden;
    color: #fff !important;
    font-size: 19px !important;
    font-weight: 300;
    line-height: 1.21 !important;
    background-color: transparent;
    transition: all 300ms ease;
}

.home-featured-card:hover .home-featured-title,
.home-featured-card:focus-within .home-featured-title {
    height: 100%;
    padding: 1em;
    background-color: #3c3c3c;
}

.button,
.nav-button {
    min-height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    padding: 8px 14px;
    color: var(--ink);
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 4px;
    font-weight: 700;
    text-decoration: none;
    cursor: pointer;
}

.button:hover,
.button:focus-visible,
.nav-button:hover,
.nav-button:focus-visible {
    color: #fff;
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    text-decoration: none;
}

.button-secondary {
    color: #fff;
    background: var(--primary-dark);
    border-color: var(--primary-dark);
}

.button-compact {
    min-height: 34px;
    padding: 6px 10px;
}

.alert {
    padding: 12px 14px;
    border: 1px solid var(--line);
    border-radius: 4px;
    background: var(--surface-soft);
}

.alert-error {
    color: var(--danger);
    background: #fff4f2;
    border-color: #f5c2bd;
}

.alert-danger {
    color: #a94442;
    background-color: #f2dede;
    border-color: #ebccd1;
}

.alert-info {
    color: #31708f;
    background-color: #d9edf7;
    border-color: #bce8f1;
}

.alert-success {
    color: #3c763d;
    background-color: #dff0d8;
    border-color: #d6e9c6;
}

.alert-warning {
    color: #8a6d3b;
    background-color: #fcf8e3;
    border-color: #faebcc;
}

.danger {
    color: #a94442;
}

.info {
    color: #31708f;
}

.success {
    color: #3c763d;
}

.warning {
    color: #8a6d3b;
}

.strong,
.stronger {
    font-weight: 700;
}

.home-prazos-module {
    padding: 0 20px 20px;
    background: #fff;
}

.entrada-container {
    display: flex;
    background: #fff;
}

.entrada-left-container {
    width: 75%;
    padding: 1.5em 0 1.5em 1em !important;
}

.entrada-left {
    padding: 0 1em 0 0;
    border-right: 1px solid #eeeeee;
}

.entrada-right {
    width: 25%;
    padding: 1.5em 1em;
}

.entrada-container h3,
.entrada-container h4 {
    margin-top: 0;
    color: #444;
    font-weight: 300;
}

.entrada-container h3 span {
    color: #888;
}

.entrada-separator {
    margin: 5em 0 3em !important;
}

.entrada-key {
    display: inline-flex;
    width: 2em;
    min-height: 2em;
    align-items: center;
    justify-content: center;
    padding: .65em .25em;
    color: #fff;
    background-color: #888;
    font-size: .75em;
    line-height: 1;
    vertical-align: bottom;
}

.status-panel,
.empty-state {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 14px 16px;
    color: var(--ink);
    background: var(--surface-soft);
    border: 1px solid var(--line);
    border-radius: 4px;
}

.status-panel-warning {
    background: #fff8e6;
    border-color: #f1d49b;
}

.status-panel-success {
    background: #edfdf8;
    border-color: #b9e6dc;
}

.status-panel-success .status-dot {
    background: var(--success);
    box-shadow: 0 0 0 4px rgba(15, 118, 110, .14);
}

.status-dot {
    width: 11px;
    height: 11px;
    flex: 0 0 auto;
    margin-top: 7px;
    background: #d97706;
    border-radius: 50%;
    box-shadow: 0 0 0 4px rgba(217, 119, 6, .14);
}

.empty-state {
    display: grid;
    gap: 6px;
    color: var(--muted);
}

.empty-state h2,
.empty-state h3,
.empty-state p {
    margin: 0;
}

.muted {
    color: var(--muted);
}

.floating-field,
.form-field,
.filter-field {
    display: grid;
    gap: 6px;
}

.floating-field {
    position: relative;
}

.floating-field input,
.form-field input,
.form-field select,
.form-field textarea,
.filter-field input,
.filter-field select {
    width: 100%;
    padding: .5em;
    color: var(--ink);
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 4px;
}

.floating-label,
.form-field span,
.filter-field span {
    color: var(--muted);
    font-size: .86rem;
    font-weight: 700;
}

.floating-field .floating-label {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    padding: 0 5px;
    color: var(--muted);
    background: var(--surface);
    line-height: 1;
    pointer-events: none;
    transition:
        color 160ms ease,
        font-size 160ms ease,
        top 160ms ease,
        transform 160ms ease;
}

.floating-field input:focus+.floating-label,
.floating-field input:not(:placeholder-shown)+.floating-label {
    top: 0;
    color: var(--accent);
    transform: translateY(-50%);
    font-size: .76rem;
}

.login-overlay {
    position: fixed;
    inset: 0;
    z-index: 50;
    background: rgba(0, 0, 0, .45);
}

.login-panel {
    position: fixed;
    top: 0;
    right: 0;
    z-index: 60;
    width: min(420px, 100vw);
    height: 100vh;
    display: grid;
    align-content: start;
    gap: 18px;
    padding: 22px;
    background: #fff;
    box-shadow: var(--shadow);
    transform: translateX(100%);
    transition: transform 180ms ease;
}

.login-panel.is-open {
    transform: translateX(0);
}

.login-panel-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.login-panel-header h2 {
    margin: 0;
}

.process-modal-overlay {
    position: fixed;
    inset: 0;
    z-index: 70;
    background: rgba(0, 0, 0, .45);
}

.process-modal {
    position: fixed;
    top: 50%;
    left: 50%;
    z-index: 80;
    width: min(930px, calc(100vw - 32px));
    display: grid;
    gap: 10px;
    padding: 3vw;
    font-size: 19px;
    font-weight: 300;
    background: #fff;
    border-radius: 6px;
    box-shadow: 0 8px 14px rgba(0, 0, 0, .16);
    transform: translate(-50%, -48%) scale(.98);
    opacity: 0;
    pointer-events: none;
    transition:
        opacity 160ms ease,
        transform 160ms ease;
}

.process-modal strong {
    font-weight: 600;
}

.process-modal-warning {
    color: #7d5a29;
    background: #fcefdc;
    border: 0;
}

.process-modal.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translate(-50%, -50%) scale(1);
}

.process-modal-header {
    position: absolute;
    top: 14px;
    right: 14px;
    display: block;
}

.process-modal-header .icon-button {
    width: 28px;
    height: 28px;
    min-height: 28px;
    padding: 0;
    color: inherit;
    background: transparent;
    border-color: transparent;
    font-size: 14px;
}

.process-modal-header .icon-button:hover,
.process-modal-header .icon-button:focus-visible {
    color: #5f4200;
    background: transparent;
    border-color: transparent;
}

.process-modal-body {
    display: grid;
    gap: 12px;
    align-items: center;
    min-height: 3.2em;
}

.process-modal-body .alert {
    margin: 0;
    padding: 0;
    color: inherit;
    background: transparent;
    border: 0;
}

.auth-method {
    display: grid;
    gap: 12px;
    padding: 16px;
    border: 1px solid var(--line);
    border-radius: 4px;
}

.auth-method h3,
.auth-method p {
    margin: 0;
}

.external-login-details summary {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
}

.external-login-details summary h4 {
    margin: 0;
}

.external-login-details summary small {
    flex-basis: 100%;
    order: 3;
}

.external-login,
.login-form {
    display: grid;
    gap: 14px;
}

.footer {
    margin-top: auto;
    color: #666;
    background: #f7f7f7;
}

.t3-copyright {
    padding: 40px 0 80px;
    border-top: 1px solid #d5d5d5;
    font-size: 12px;
}

.t3-copyright small {
    display: block;
    font-size: 100%;
}

.footer-logo img {
    width: 122px;
    max-width: 100%;
    height: auto;
}

.footer a {
    color: #666;
}

.footer hr {
    border: 0;
    border-top: 1px solid #d5d5d5;
}

.back-to-top {
    position: fixed;
    right: 18px;
    bottom: 18px;
    z-index: 40;
}

.afiliacoes-section,
.admin-section,
.password-reset-section {
    display: grid;
    gap: 1.5rem;
}

.dashboard-section {
    padding: 4px 0 10px;
}

.afiliacoes-kpis {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1rem;
}

.afiliacoes-kpi,
.afiliacoes-detail,
.afiliacoes-columns section,
.admin-card,
.afiliacoes-empty {
    min-width: 0;
    padding: 1rem;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 4px;
}

.afiliacoes-kpi span,
.afiliacoes-table td span {
    display: block;
    color: var(--muted);
    font-size: .85rem;
}

.afiliacoes-kpi strong {
    color: var(--ink);
    font-size: 2rem;
    line-height: 1;
}

.institution-page,
.affiliate-grid,
.institution-groups {
    display: grid;
    gap: 0;
}

.institution-hero {
    --institution-image-inset: 5%;
    position: sticky;
    top: calc(var(--topbar-height, 80px) + var(--lettering-fixed-height, 42px));
    z-index: 20;
    width: 100%;
    height: clamp(220px, 40vw, 400px);
    margin: 0;
    overflow: hidden;
    background: #2f91b4;
    text-align: center;
    border-bottom: 0;
}

.institution-hero::before,
.institution-hero::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    z-index: 1;
    width: 40%;
    pointer-events: none;
    background-repeat: no-repeat;
    background-size: 100% 100%;
}

.institution-hero::before {
    left: var(--institution-image-inset);
    background-image: url("../img/leftgrad.png");
}

.institution-hero::after {
    right: var(--institution-image-inset);
    background-image: url("../img/rightgrad.png");
}

.institution-hero img {
    position: absolute;
    top: 50%;
    left: var(--institution-image-inset);
    display: block;
    width: calc(100% - (var(--institution-image-inset) * 2));
    height: auto;
    min-height: 100%;
    margin: 0 auto;
    border: 0;
    transform: translateY(-50%);
}

.institution-hero figcaption {
    position: absolute;
    top: 0;
    right: 0;
    z-index: 2;
    display: flex;
    flex-direction: row-reverse;
    align-items: flex-start;
    max-width: min(460px, 90%);
    font-size: .82rem;
    text-align: left;
}

.institution-image-caption-toggle {
    display: grid;
    flex: 0 0 42px;
    width: 42px;
    height: 42px;
    padding: 0;
    color: #fff;
    background: transparent;
    border: 0;
    cursor: pointer;
    font-size: 1.3rem;
    place-items: center;
}

.institution-image-caption-toggle:hover,
.institution-image-caption-toggle:focus-visible {
    background: rgba(68, 68, 68, .92);
}

.institution-image-caption-content {
    display: block;
    overflow: hidden;
    color: #fff;
    background: rgba(68, 68, 68, .92);
    opacity: 0;
    transform: translateX(18px);
    visibility: hidden;
    transition: opacity .18s ease, transform .22s ease, visibility .22s ease;
}

.institution-image-caption-title,
.institution-image-caption-credit {
    display: block;
    padding: 9px 14px;
}

.institution-image-caption-credit {
    padding-top: 8px;
    padding-bottom: 9px;
    border-top: 1px solid rgba(255, 255, 255, .22);
    font-size: .76rem;
}

.institution-image-caption-credit i {
    margin-right: .45em;
}

.institution-image-caption-credit a {
    color: inherit;
    text-decoration: none;
}

.institution-image-caption-credit a:hover,
.institution-image-caption-credit a:focus-visible {
    text-decoration: underline;
}

.institution-image-caption-toggle:hover+.institution-image-caption-content,
.institution-image-caption-toggle:focus-visible+.institution-image-caption-content,
.institution-image-caption-content:focus-within {
    opacity: 1;
    transform: translateX(0);
    visibility: visible;
}

.institution-image-caption-toggle:focus-visible {
    outline: 2px solid #fff;
    outline-offset: -3px;
}

.institution-layout {
    display: grid;
    grid-template-columns: minmax(0, 72%) minmax(260px, 25%);
    gap: 3%;
    align-items: start;
}

.institution-layout:not(:has(.institution-aside)) {
    grid-template-columns: minmax(0, 1fr);
}

.institution-article {
    min-width: 0;
    padding: 0;
    background: transparent;
    border: 0;
    border-radius: 0;
}

.institution-aside section {
    min-width: 0;
    padding: 1em;
    background: #fff;
    border: 0;
    border-radius: 0;
}

.institution-article h3 {
    margin: 0 0 10px;
    padding: 0 0 15px;
    color: #444;
    font-size: clamp(2.1rem, 3.6vw, 35px);
    font-weight: 400;
    line-height: 1;
    text-transform: uppercase;
}

.institution-text {
    color: #444;
    font-size: 95%;
    line-height: 1.5em;
}

.institution-intro {
    color: #444;
    font-size: inherit;
    font-weight: 400;
}

.institution-text h1,
.institution-text h2,
.institution-text h3 {
    margin: 1.5em 0 .55em;
    color: var(--primary-dark);
    font-family: var(--font-condensed);
    line-height: 1.1;
}

.institution-text h1 {
    font-size: 1.55rem;
}

.institution-text h2 {
    font-size: 1.35rem;
}

.institution-text h3 {
    font-size: 1.12rem;
}

.institution-text p,
.institution-text ul,
.institution-text ol {
    margin-top: 0;
}

.institution-text p {
    margin-bottom: 15px;
}

.institution-text p:first-of-type {
    margin-top: 2em;
}

.institution-text li {
    margin-bottom: .45rem;
}

.institution-aside {
    display: grid;
    gap: 0;
    align-content: start;
}

.institution-module {
    margin: 1em 0 0;
    padding: 1em;
    background: #fff;
    border-bottom: 1px dotted #ccc;
    line-height: 1.5;
    transition: all .2s ease;
}

.institution-aside h4 {
    margin: .5em 0;
    padding: .5em 1em;
    color: #fff;
    background: #555;
    border-right: 80px solid #49afcd;
    font-size: .85rem;
    font-weight: 400;
    text-transform: uppercase;
}

.institution-module-trigger {
    display: block;
    width: 100%;
    height: 20px;
    margin: 0;
    padding: 0;
    background: transparent;
    border: 0;
    border-top: 1px solid #ddd;
    cursor: pointer;
    text-align: center;
}

.institution-module-trigger span {
    display: inline-block;
    width: 36px;
    height: 20px;
    margin-top: -7px;
    background-color: #fff;
    position: relative;
    transition: transform .2s ease;
}

.institution-module-trigger span::before,
.institution-module-trigger span::after {
    content: "";
    position: absolute;
    top: 8px;
    width: 11px;
    height: 2px;
    background: #777;
    transition: transform .2s ease, background .2s ease;
}

.institution-module-trigger span::before {
    left: 8px;
    transform: rotate(35deg);
}

.institution-module-trigger span::after {
    right: 8px;
    transform: rotate(-35deg);
}

.institution-module-trigger[aria-expanded="true"] span {
    margin-top: -9px;
}

.institution-module-trigger[aria-expanded="true"] span::before {
    transform: rotate(-35deg);
}

.institution-module-trigger[aria-expanded="true"] span::after {
    transform: rotate(35deg);
}

.institution-module-trigger:hover span::before,
.institution-module-trigger:hover span::after {
    background: #333;
}

.institution-slide-toggle .icon-chevron-down,
.institution-slide-toggle .icon-chevron-up {
    transition: transform .15s ease;
}

.institution-slide-toggle[aria-expanded="true"] .icon-chevron-down,
.institution-slide-toggle[aria-expanded="true"] .icon-chevron-up {
    transform: rotate(180deg);
}

@font-face {
    font-family: "Glyphicons Halflings";
    src: url("../fonts/glyphicons-halflings-regular.woff2") format("woff2"),
        url("../fonts/glyphicons-halflings-regular.woff") format("woff"),
        url("../fonts/glyphicons-halflings-regular.ttf") format("truetype");
}

.institution-module-body,
.institution-slide-panel {
    overflow: hidden;
}

.institution-module hr {
    margin: 1em 0;
    border: 0;
    border-top: 1px solid #ddd;
}

.institution-module-actions {
    display: flex;
    gap: .5em;
    justify-content: flex-end;
    margin-bottom: .75em;
}

.institution-module-actions .button,
.institution-slide-toggle {
    justify-content: flex-start;
    height: auto;
    min-width: 80px;
    padding: .5em !important;
    background: #f5f5f5;
    border: none;
    border-radius: 0;
    color: #49afcd;
    font-size: .85rem;
    font-weight: 400;
}

.institution-module-actions .button:hover,
.institution-slide-toggle:hover {
    background-color: #e6e6e6;
    color: #333;
}

.institution-edit-button {
    display: inline-flex;
    min-height: 0;
    align-items: center;
    gap: .45em;
    padding: 7px 12px 6px 8px !important;
    color: #333;
    background: #f5f5f5;
    border: 1px solid #ccc;
    border-radius: 0;
    font-size: .72rem;
    font-weight: 400;
    line-height: 1;
    text-decoration: none;
}

.institution-edit-button:hover,
.institution-edit-button:focus-visible {
    color: #333;
    background: #e6e6e6;
    border-color: #ccc;
    box-shadow: none;
    text-decoration: none;
}

.institution-record-actions {
    float: right;
    margin: 0 0 .35em .5em;
}

.institution-entry-actions {
    display: flex;
    justify-content: flex-end;
    margin: .75em 0;
}

.institution-create-button {
    display: inline-flex;
    min-height: 0;
    align-items: center;
    gap: .45em;
    padding: 7px 12px 6px 8px !important;
    color: #fff;
    background: #49afcd;
    border: 1px solid #49afcd;
    border-radius: 0;
    font-size: .72rem;
    font-weight: 400;
    line-height: 1;
    text-decoration: none;
}

.institution-create-button:hover,
.institution-create-button:focus-visible {
    color: #fff;
    background: #2f96b4;
    border-color: #2f96b4;
    box-shadow: none;
    text-decoration: none;
}

.institution-slide-toggle.button-info {
    display: flex;
    width: 100%;
    margin-top: 0;
    color: #fff;
    background: #49afcd;
    border-color: #49afcd;
    text-shadow: none;
}

.institution-slide-toggle.button-info:hover,
.institution-slide-toggle.button-info:focus-visible {
    background: #2f96b4;
}

.institution-module [class^="icon-"],
.institution-module [class*=" icon-"],
.institution-module .fa {
    display: inline-block;
    width: 1.1em;
    margin-right: .25em;
    font-style: normal;
    font-weight: normal;
    line-height: 1;
    text-align: center;
}

.institution-module [class^="icon-"],
.institution-module [class*=" icon-"] {
    position: relative;
    top: 1px;
    font-family: "Glyphicons Halflings";
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.institution-module .icon-white {
    color: #fff;
}

.institution-module .icon-calendar::before {
    content: "\e109";
}

.institution-module .icon-file::before {
    content: "\e022";
}

.institution-module .icon-user::before {
    content: "\e008";
}

.institution-module .icon-envelope::before {
    content: "\2709";
}

.institution-module .icon-print::before {
    content: "\e045";
}

.institution-module .icon-globe::before {
    content: "\e135";
}

.institution-module .icon-chevron-down::before {
    content: "\e114";
}

.institution-module .icon-chevron-up::before {
    content: "\e113";
}

.institution-module .icon-phone::before {
    content: "\e182";
}

.institution-module .icon-mobile::before {
    content: "\e145";
}

.institution-module .icon-map-marker::before {
    content: "\e062";
}

.institution-aside h5 {
    margin: 1em 0 .5em;
    padding: .5em 1em;
    color: #444;
    background: #dfe0e1;
    font-size: .85rem;
    font-weight: 400;
    text-transform: uppercase;
}

.institution-module p {
    margin: .5em 0;
    font-size: .85rem;
}

.institution-module .datas {
    color: #b15613;
    font-size: .8rem;
}

.institution-module .pessoas .button,
.institution-module .unidades .button {
    display: flex;
    width: 100%;
    height: auto;
    min-height: 0;
    margin-bottom: 1px;
    padding: 8px 8px 8px 6px;
    color: #2f91b4;
    background: #f5f5f5;
    border: none;
    border-radius: 0;
    font-size: 13px;
    font-weight: 400;
    line-height: 1.42857143;
    justify-content: flex-start;
    text-align: left;
    text-transform: uppercase;
}

.institution-module .pessoas .button:hover,
.institution-module .pessoas .button:focus-visible {
    color: #333;
    background: #e6e6e6;
    border-color: #ccc;
    box-shadow: none;
    text-decoration: none;
}

.institution-module .unidades {
    position: relative;
    z-index: 1;
}

.institution-module .unidades:hover {
    box-shadow: 0 0 8px 0 rgba(0, 0, 0, .3);
}

.institution-module .unidades:hover .button-info,
.institution-module .unidades:focus-within .button-info {
    color: #fff;
    background: #2f96b4;
    border-color: #2f96b4;
}

.institution-module .unidades .button-info {
    margin-bottom: 0;
    color: #fff;
    background: #49afcd;
    border-color: #49afcd;
}

.institution-module .unidades .button-info:hover,
.institution-module .unidades .button-info:focus-visible {
    color: #fff;
    background: #2f96b4;
    border-color: #2f96b4;
    box-shadow: none;
}

.institution-person,
.institution-contact-card {
    margin: 0;
    padding: .5em 0;
    border-top: 0;
    font-size: .85rem;
}

.institution-person:first-of-type,
.institution-contact-card:first-of-type {
    padding-top: .5em;
}

.institution-person strong,
.institution-contact-card strong {
    color: var(--ink);
}

.institution-person .cargo,
.institution-person .area {
    color: #777;
    font-size: .8em;
    font-weight: 400;
    text-transform: uppercase;
}

.institution-person .anoletivo,
.institution-person .titulo,
.institution-contact-card .titulo {
    margin-bottom: .5em;
    padding: .5em 1em;
    color: #444;
    background: #dfe0e1;
    font-weight: 400;
}

.institution-person .responsavel,
.institution-person .coordenador {
    color: var(--ink);
    font-weight: 400;
    line-height: 1.2;
}

.institution-person .datas {
    margin: .1em 0;
}

.institution-person .infotable {
    display: table;
    width: 100%;
}

.institution-person .foto {
    display: table-cell;
    width: 65px;
    min-width: 65px;
    padding-right: 1em;
    vertical-align: top;
}

.institution-person img.foto {
    display: block;
    width: 65px;
    min-width: 65px;
    height: auto;
}

.institution-person .informacao {
    display: table-cell;
    width: 80%;
    padding-left: 0;
    border-left: 0;
    vertical-align: top;
}

.institution-person .email,
.institution-contact-card .email,
.institution-person .telefone,
.institution-contact-card .telefone,
.institution-contact-card .fax,
.institution-contact-card .site {
    overflow-wrap: anywhere;
}

.institution-contact-card p {
    margin: 0;
    overflow-wrap: anywhere;
    padding-left: 1em;
}

.institution-contact-card .cpostal {
    display: inline-block;
    padding-left: 1.45em;
}

.institution-contacts {
    display: grid;
    gap: 4px;
    margin: 0;
}

.institution-contacts dt {
    color: var(--muted);
    font-size: .82rem;
    font-weight: 700;
    text-transform: uppercase;
}

.institution-contacts dd {
    margin: 0 0 10px;
    overflow-wrap: anywhere;
}

.institution-links {
    display: grid;
    gap: 0;
    width: 100%;
    margin-top: 0;
    position: absolute;
    z-index: 2;
    left: 0;
    box-shadow: 0 5px 8px 0 rgba(0, 0, 0, .15);
}

.institution-links a {
    display: block;
    min-height: 0;
    margin: 0 !important;
    padding-left: 23px !important;
    color: #49afcd;
    background: #fff !important;
    border: 0;
    border-bottom: 1px solid #ddd !important;
    border-radius: 0;
    font-weight: 400;
    line-height: 1.42857143;
    text-align: left;
}

.institution-links a:hover,
.institution-links a:focus-visible {
    color: #333 !important;
    background: #e6e6e6 !important;
    border-color: #ddd;
    text-decoration: none;
}

.public-article {
    display: grid;
    gap: 22px;
}

.affiliate-row {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px 3%;
    padding-bottom: 20px;
    margin-bottom: 20px;
    border-bottom: 1px solid #bbb;
}

.institution-group {
    width: 100%;
    min-width: 0;
}

.affiliate-category-row {
    padding-bottom: 20px;
    margin-bottom: 20px;
    border-bottom: 1px solid #bbb;
}

.institution-group h3 {
    display: block;
    width: 22.75%;
    box-sizing: border-box;
    margin: 0;
    padding: 20px;
    color: #fff !important;
    background-color: #444;
    box-shadow: 0 0 8px rgba(0, 0, 0, .2);
    cursor: default !important;
    font-size: 22px;
    font-weight: 300;
    text-transform: uppercase;
}

.affiliate-card {
    min-width: 0;
    padding: 20px;
    overflow: visible;
    background: #fff;
    border: 0;
    border-radius: 0;
    transition: box-shadow 140ms ease;
}

.affiliate-card:hover,
.affiliate-card:focus-within {
    box-shadow: 0 0 8px rgba(0, 0, 0, .2);
}

.affiliate-card a {
    display: grid;
    color: var(--ink);
    text-decoration: none;
}

.affiliate-card-image {
    display: block;
    max-height: 150px;
    margin-bottom: 0;
    overflow: hidden;
    background: #eee;
}

.affiliate-card-image img {
    display: block;
    width: 100%;
    min-height: 150px;
    object-fit: cover;
    border: 0;
}

.affiliate-card-body {
    display: grid;
    padding: 0;
}

.affiliate-card-body strong {
    min-height: 2.5em;
    margin-bottom: 15px;
    color: #444;
    font-size: 19px;
    font-weight: 300;
    line-height: 1.21;
}

.afiliacoes-actions,
.afiliacoes-filters,
.filter-actions,
.admin-actions,
.admin-row-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: end;
    gap: .75rem;
}

.afiliacoes-filters,
.admin-form {
    padding: 1rem;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 4px;
}

.afiliacoes-table-wrap,
.admin-table {
    overflow-x: auto;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 4px;
}

.afiliacoes-table {
    width: 100%;
    border-collapse: collapse;
}

.afiliacoes-table th,
.afiliacoes-table td {
    padding: .75rem 1rem;
    border-bottom: 1px solid var(--line);
    text-align: left;
    vertical-align: top;
}

.afiliacoes-table th {
    color: var(--ink);
    font-size: .8rem;
    text-transform: uppercase;
}

.active-filters {
    margin: 1em 0 0 0;
}

.colocacoes-page {
    display: block;
}

.article-title,
.article-subtitle {
    margin: 0;
    color: #444;
    font-size: 28px;
    font-weight: 400;
    line-height: 1;
    text-transform: none;
}

.article-subtitle {
    margin-top: .5em;
    font-size: 21px;
}

.colocacoes-filter-panel,
.calendar-edit-tabs {
    margin: 0 0 1em;
    padding: 1em;
    background-color: #fff;
}

.colocacoes-filter-row {
    display: flex;
    flex-wrap: wrap;
    align-items: end;
    gap: 0;
    margin-right: -10px;
    margin-left: -10px;
}

.colocacoes-filter-row+.colocacoes-filter-row {
    margin-top: 1em;
}

.form-column {
    min-width: 170px;
    padding-right: 10px;
    padding-left: 10px;
}

#fitem-anoletivo,
#fitem-uc,
#fitem-turma,
#fitem-ordem {
    width: 17%;
}

#fitem-estudante,
.colocacoes-instituicao-field {
    flex: 1 1 32%;
}

.colocacoes-instituicao-field {
    flex: 0 0 50%;
    max-width: 50%;
}

#fitem-npp {
    width: 18%;
}

.colocacoes-filter-actions {
    flex: 1 1 auto;
}

#fitem-npp .control-label,
#fitem-ordem .control-label {
    font-size: 80%;
}

.colocacoes-page .control-label {
    display: block;
    float: none !important;
    width: auto !important;
    min-width: 100px;
    max-width: 100%;
    margin: .3em 0 .2em !important;
    padding: 0 !important;
    color: #444;
    text-align: left !important;
    font-weight: 700;
    line-height: 1.42857143;
    text-transform: uppercase;
}

.colocacoes-page .form-control,
.parametros-page .form-control,
.distribuicao-page .form-control {
    display: block;
    width: 100%;
    min-height: 34px;
    padding: .58em .75em;
    color: #444;
    background-color: #fff;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
}

.colocacoes-page .form-control:focus,
.parametros-page .form-control:focus,
.distribuicao-page .form-control:focus,
.perfis-edit-page .perfil-bloco select:focus {
    outline: 0;
    border-color: #66afe9;
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 8px rgba(102, 175, 233, .6);
}

.parametros-page input.form-control[readonly],
.parametros-page textarea.form-control[readonly] {
    color: #555;
    background-color: #eeeeee;
    border-color: #cccccc;
    cursor: not-allowed;
    opacity: 1;
}

.parametros-page button[disabled],
.parametros-page input[type="submit"][disabled] {
    cursor: not-allowed;
    opacity: .55;
    box-shadow: none !important;
}

.calendario-page {
    display: block;
}

.calendario-export {
    margin: 1em 0;
}

.calendario-filter-panel {
    margin-bottom: 0;
}

.calendario-instituicao-field {
    flex: 1 1 40%;
    min-width: 260px;
}

.calendario-panel {
    border-top: 1px solid #d5d5d5;
}

#painelCalendario {
    overflow-x: auto;
    overflow-y: hidden;
}

#calendario {
    margin-bottom: 2em;
}

.linhaCalendario {
    display: table;
    margin-bottom: .5em;
}

.linhaCalendario:first-child {
    margin-bottom: 0;
}

.ucCalendario,
.semana {
    display: table-cell;
    padding: 0 1px 0 0;
    vertical-align: top;
}

.ucCalendario .cab,
.semana .cab {
    min-height: 2em !important;
    margin-bottom: .5em;
    box-shadow: 1px 0 0 #000;
}

.ucCalendario .designacao,
.semana .datas,
.semana .turmas {
    width: 115px;
    min-height: 3.5em;
    padding: .5em;
    font-size: 90%;
    line-height: 1.2;
    text-align: center;
}

.ucCalendario .designacao {
    width: 155px;
    text-align: left;
}

.semana .datas {
    font-weight: 700;
    text-transform: lowercase;
}

.semana .cab.hoje {
    color: #fff;
    background-color: #f00;
}

.semana .turmas {
    display: block;
    border: 0;
    color: #444;
}

.semana button.turmas {
    cursor: pointer;
}

.semana .turmas.hoje {
    box-shadow: 0 0 0 2px #f00 inset;
}

.semana .evento {
    background-color: #ddd !important;
    cursor: default !important;
}

.semana .cor0 {
    background-color: #f0f0f0;
}

.semana .cor1 {
    background-color: #fff79d;
}

.ucCalendario .cor1,
.semana .cor1.ativo,
.ver-turmas-grid .cor1,
.perfis-edit-page .perfil-bloco.cor1 {
    background-color: #efd96f;
}

.semana .cor2 {
    background-color: #aae5e1;
}

.ucCalendario .cor2,
.semana .cor2.ativo,
.ver-turmas-grid .cor2,
.perfis-edit-page .perfil-bloco.cor2 {
    background-color: #83d0c3;
}

.semana .cor3 {
    background-color: #c7f1ff;
}

.ucCalendario .cor3,
.semana .cor3.ativo,
.ver-turmas-grid .cor3,
.perfis-edit-page .perfil-bloco.cor3 {
    background-color: #9bd9e6;
}

.semana .cor4 {
    background-color: #ffcbd3;
}

.ucCalendario .cor4,
.semana .cor4.ativo,
.ver-turmas-grid .cor4,
.perfis-edit-page .perfil-bloco.cor4 {
    background-color: #e4a0b1;
}

.semana .cor5 {
    background-color: #f2bb72;
}

.ucCalendario .cor5,
.semana .cor5.ativo,
.ver-turmas-grid .cor5,
.perfis-edit-page .perfil-bloco.cor5 {
    background-color: #eb9443;
}

.semana .cor6 {
    background-color: #c6b9e4;
}

.ucCalendario .cor6,
.semana .cor6.ativo,
.ver-turmas-grid .cor6,
.perfis-edit-page .perfil-bloco.cor6 {
    background-color: #ac98db;
}

.semana .cor7 {
    background-color: #b4de9e;
}

.ucCalendario .cor7,
.semana .cor7.ativo,
.ver-turmas-grid .cor7,
.perfis-edit-page .perfil-bloco.cor7 {
    background-color: #9bd07f;
}

.calendario-detail .calendario-colocacoes-heading,
.calendario-detail .calendario-detail-summary {
    border-left: 8px solid #f0f0f0;
}

.calendario-detail .cor1 {
    border-left-color: #efd96f;
}

.calendario-detail .cor2 {
    border-left-color: #83d0c3;
}

.calendario-detail .cor3 {
    border-left-color: #9bd9e6;
}

.calendario-detail .cor4 {
    border-left-color: #e4a0b1;
}

.calendario-detail .cor5 {
    border-left-color: #eb9443;
}

.calendario-detail .cor6 {
    border-left-color: #ac98db;
}

.calendario-detail .cor7 {
    border-left-color: #9bd07f;
}

.calendario-empty {
    padding: 1em;
    background: #f0f0f0;
}

#listaDinamica {
    margin-top: 1em;
}

#listaDinamica .painel {
    padding: 1em;
    background: #fff;
    margin-bottom: 1em;
}

#listaDinamica h1.left {
    margin: 0;
    color: #444;
    font-size: 28px;
    font-weight: 400;
    text-align: left;
}

.estagio {
    margin: 0;
    background: #fff;
    border-bottom: 1px dotted #ccc;
}

.estagio dt.area h5 {
    margin: 0;
    color: #444;
    font-size: 14px;
    font-weight: 400;
}

.calendario-detail {
    margin-top: 0;
}

.calendario-detail-heading,
.calendario-detail-empty {
    margin-top: 0;
    padding: .75em 1em;
}

.calendario-detail-heading {
    background: #eee;
}

.calendario-detail-heading h5 {
    margin: 0;
    color: #444;
    font-size: 14px;
    font-weight: 700;
    text-transform: lowercase;
}

.calendario-detail-summary {
    cursor: default;
    padding: 1em;
}

.calendario-detail-summary dt.area {
    padding: 0;
    background: transparent;
}

.calendario-detail-summary dt.area h3 {
    margin: 0;
    color: #333;
    font-size: 24px;
    font-weight: 400;
    line-height: 1.25;
}

.calendario-detail-summary dt.area h4 {
    margin: .25em 0 0;
    color: #555;
    font-size: 18px;
    font-weight: 400;
}

.calendario-detail-empty {
    background: #fff;
}

.calendario-colocacoes-heading {
    margin-top: 0;
}

.calendario-detail .muted {
    color: #777;
}

@media (min-width: 992px) {
    .ucCalendario .designacao {
        position: absolute;
        box-shadow: 5px 0 10px rgba(0, 0, 0, .1);
    }

    .ucCalendario .designacao.cab {
        background-color: #fff;
        box-shadow: 1px 0 0 #000;
    }

    .linhaCalendario div:nth-child(2) {
        padding-left: 155px;
    }
}

.parametros-page .form-row,
.distribuicao-page .form-row {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
    gap: 0;
    margin-right: -10px;
    margin-left: -10px;
}

.parametros-page .form-column {
    width: 25%;
    min-width: 170px;
    padding-right: 10px;
    padding-left: 10px;
    margin-bottom: 15px;
    box-sizing: border-box;
}

.estudante-edit-page #form-row-multi-28 .form-column {
    flex: 1 1 50%;
    width: auto;
}

.estudante-edit-page #form-row-multi-19 .form-column {
    flex: 1 1 25%;
    width: auto;
}

.estudante-edit-page .form-field-body-wide,
.estudante-edit-page .form-field-body,
.estudante-edit-page .searchable-select {
    width: 100%;
}

.estudante-edit-page #fin-estado {
    width: 120px;
}

.estudante-edit-page #form-row-estado,
.parametros-page #form-row-submit,
.calendario-edit-page #form-row-anoletivo {
    display: block;
    margin-right: 0;
    margin-left: 0;
}

.parametros-page #form-row-submit .form-control,
.calendario-edit-page #fin-saveCalendario .form-control,
.vagas-edit-page #fin-saveVagas .form-control {
    display: inline-block;
    width: auto;
}

.parametros-page .control-label {
    display: inline-block;
    max-width: 100%;
    margin-bottom: 5px;
    font-weight: 700;
}

.parametros-page h4,
.distribuicao-page h4 {
    margin-top: 10px;
    margin-bottom: 10px;
    color: #444;
    font-size: 18px;
    font-weight: 300;
}

.parametros-page #fin-submit {
    padding-right: 0;
    padding-left: 0;
}

.parametros-page .btn,
.distribuicao-page .btn {
    height: 34px;
    border: none !important;
    border-radius: 0 !important;
}

.btn[aria-disabled="true"],
.nav-button[aria-disabled="true"] {
    cursor: progress;
    opacity: .75;
    pointer-events: none;
}

.distribuicao-page .page-header {
    margin: 0 0 20px;
    border-bottom: 1px solid #d5d5d5;
}

.distribuicao-page .page-header h1 {
    margin: 0;
    padding-bottom: 20px;
    color: #444;
    font-size: 36px;
    font-weight: 300;
}

.distribuicao-page #output {
    min-height: 20px;
}

.parametros-page input.required,
.parametros-page select.required,
.parametros-page textarea.required,
.parametros-page div.required {
    border-color: #ff7766;
}

.calendario-edit-page {
    color: #444;
}

.calendario-edit-page form,
.painel {
    padding: 1em;
    background-color: #fff;
}

.calendario-edit-page #fin-anoletivo {
    width: 220px;
}

.calendar-edit-tab-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0;
    margin: 0;
    border-bottom: 1px solid #9ca8b3;
}

.calendar-edit-tab-list button {
    position: relative;
    display: block;
    margin: 0 5px -1px 0;
    padding: .75em 1rem;
    border: 1px solid #c0c6cf;
    border-radius: 5px 5px 0 0;
    color: #000;
    background-color: #f4f5f6;
    cursor: pointer;
    box-shadow: inset 0 -5px 5px -3px rgba(0, 0, 0, .05);
}

.calendar-edit-tab-list button:hover {
    background-color: #e6e8ec;
}

.calendar-edit-tab-list button.active {
    border-color: #666666;
    background-color: #fff;
    cursor: default;
    border-bottom: 0;
    box-shadow: none;
}

.calendar-edit-tab-panel {
    display: none;
    padding: 1.25em;
    border: 1px solid #666;
    border-top: 0;
}

.calendar-edit-tab-panel.active {
    display: block;
}

.calendario-edit-page .table.instituicoes {
    display: block;
    width: 100%;
    margin-bottom: 0;
}

.calendario-edit-page .table.instituicoes .row {
    display: flex;
    margin: 0;
}

.calendario-edit-page .table.instituicoes .row.head {
    color: #fff;
    background-color: var(--primary);
    border: none;
    font-weight: bold;
    text-transform: uppercase;
}

.calendario-edit-page .table.instituicoes .row.subhead {
    padding-top: 2em;
    text-transform: uppercase;
    font-weight: 700;
    font-size: 93%;
}

.calendario-edit-page .table.instituicoes .row.subhead~.subhead {
    border-top: 2px solid #000000;
}

.calendario-edit-page .table.instituicoes .col,
.vagas-restantes-table .col {
    padding: .5em .75em;
    box-sizing: border-box;
}

.calendario-edit-page .table.instituicoes .col-turma {
    flex: 0 0 16.66666667%;
    max-width: 16.66666667%;
    font-weight: 700;
}

.calendario-edit-page .table.instituicoes .col-data {
    flex: 0 0 41.66666667%;
    max-width: 41.66666667%;
}

.calendario-edit-page .table.instituicoes input.js-dtp {
    display: block;
    width: 12em;
    max-width: 100%;
    min-height: 26px;
    margin: auto;
    padding: .5em .75em;
    border: 1px solid #ccc;
    border-radius: 0;
    background: #fff;
    color: #444;
}

.calendario-edit-page .center {
    text-align: center;
}

.calendario-edit-page #fin-saveCalendario,
.vagas-edit-page #fin-saveVagas {
    width: 100%;
    padding-right: 0;
    padding-left: 0;
    text-align: center;
}

.vagas-edit-page .table.instituicoes .row.subhead {
    padding-top: 1em;
}

.vagas-edit-page .table.instituicoes .row.subhead~.subhead {
    margin-top: .75em;
}

.vagas-edit-page .table.instituicoes .row.instituicao {
    align-items: stretch;
    border-top: 1px solid #dddddd;
}

.vagas-edit-page .table.instituicoes .row.instituicao.selected {
    color: #444444;
    background-color: #ccf2ff !important;
    border-top-color: #ffffff;
    border-bottom: 1px solid #ffffff;
}

.vagas-edit-page .table.instituicoes .row.instituicao.selected:hover {
    color: #ffffff;
    background-color: #0099cc !important;
}

.vagas-edit-page .table.instituicoes .row.instituicao.filtrar {
    background-color: #fff;
}

.vagas-edit-page .table.instituicoes .row.instituicao.filtrar:hover {
    background-color: #eee;
}

.vagas-edit-page .table.instituicoes .row.instituicao.invalid {
    background-color: #ffd9b2;
}

.vagas-edit-page .table.instituicoes .row.instituicao.invalid:hover {
    background-color: #ff8800;
}

.vagas-edit-page .table.instituicoes .col-instituicao {
    flex: 0 0 33.33333333%;
    max-width: 33.33333333%;
    min-width: 220px;
}

.vagas-edit-page .table.instituicoes .col-vagas-title {
    flex: 0 0 66.66666667%;
    max-width: 66.66666667%;
}

.vagas-edit-page .table.instituicoes .col-vaga {
    flex: 0 0 calc(66.66666667% / var(--vagas-turmas-count, 8));
    max-width: calc(66.66666667% / var(--vagas-turmas-count, 8));
    min-width: 0;
    white-space: nowrap;
}

.vagas-edit-page .table.instituicoes select {
    display: block;
    width: 100%;
    min-height: 28px;
    padding: .5em;
    border: 1px solid #cccccc;
    border-radius: 0;
    color: #444444;
    background-color: #ffffff;
    text-align: left !important;
    font-weight: normal !important;
}

.vagas-edit-page .table.instituicoes select option:disabled {
    color: #666666;
    background-color: #cccccc;
}

.vagas-edit-page .table.instituicoes select option:enabled {
    color: #000000;
    background-color: #ffffff;
}

.vagas-edit-page .table.instituicoes input.vagas {
    display: block;
    width: 100%;
    min-height: 28px;
    padding: .5em;
    border: 1px solid #cccccc;
    border-radius: 0;
    color: #444444;
    background-color: #ffffff;
    font-size: 14px;
}

.vagas-edit-page .table.instituicoes .row.instituicao.selected select,
.vagas-edit-page .table.instituicoes .row.instituicao.selected input.vagas {
    border-color: #3a97cc !important;
}

.vagas-edit-page .table.instituicoes .row.instituicao.invalid select,
.vagas-edit-page .table.instituicoes .row.instituicao.invalid input.vagas {
    border-color: #cc8f52 !important;
}

.vagas-edit-page .vagas-add-row {
    border-top: 1px solid #dddddd;
}

.vagas-edit-page .vagas-add-row .col {
    padding-top: .75em;
    padding-bottom: .75em;
}

.vagas-restantes-container {
    margin: 0;
    padding: 0;
    background: #fff;
}

.vagas-restantes-actions {
    margin: 0 0 20px;
    padding: 1em;
    text-align: center;
}

.vagas-restantes-table .row {
    display: flex;
    width: 100%;
    margin: 0;
}

.vagas-restantes-table {
    width: 100%;
}

.vagas-restantes-table .col {
    min-width: 0;
}

.vagas-restantes-table .row.instituicao {
    border-top: 1px solid #dddddd;
}

.vagas-restantes-table .col-instituicao {
    flex: 0 0 var(--instituicao-width, 36%);
    max-width: var(--instituicao-width, 36%);
}

.vagas-restantes-table .col-vaga {
    flex: 0 0 var(--turma-width, 8%);
    max-width: var(--turma-width, 8%);
    min-width: 0;
}

.vagas-restantes-table .row.head .col-vaga {
    font-weight: 700;
}

.vagas-restantes-table .row.subhead .col {
    flex: 0 0 100%;
    max-width: 100%;
}

.vagas-restantes-table .center {
    text-align: center;
}

@media screen and (max-width: 991px) {
    .parametros-page .form-column {
        width: 50%;
    }

    .admin-filter-form {
        grid-template-columns: 1fr;
    }

    .admin-edit-row,
    .admin-edit-row-access,
    .group-edit-header {
        grid-template-columns: 1fr;
    }
}

@media screen and (max-width: 640px) {
    .parametros-page .form-column {
        width: 100%;
    }
}

.js-enabled select[data-searchable] {
    display: none;
}

.searchable-select {
    position: relative;
    display: inline-block;
    vertical-align: top;
    font-size: 16px;
    user-select: none;
}

.searchable-select::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 8px;
    width: 0;
    height: 0;
    border-top: 5px solid #999;
    border-right: 4px solid transparent;
    border-left: 4px solid transparent;
    pointer-events: none;
    transform: translateY(-50%);
}

.searchable-select-input {
    display: block;
    width: 100%;
    height: auto;
    min-height: 34px;
    padding: .58em .75em;
    overflow: hidden;
    color: #444;
    background-color: #fff;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-shadow: 0 0 3px #fff inset, 0 1px 1px rgba(0, 0, 0, .1);
    font-size: 1em;
    line-height: normal;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.searchable-select-input:focus {
    outline: 0;
    border-color: #66afe9;
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0;
    box-shadow: 0 0 3px #fff inset, 0 1px 1px rgba(0, 0, 0, .1);
}

.searchable-select-list {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 1010;
    max-height: 240px;
    overflow-y: auto;
    margin-top: -1px;
    padding: 0 0 4px 4px;
    background: #fff;
    border: 1px solid #aaa;
    border-top: 0;
    box-shadow: 0 4px 5px rgba(0, 0, 0, .15);
}

.searchable-select-option {
    display: block;
    width: 100%;
    min-height: 25px;
    margin: 0;
    padding: 5px 6px;
    color: #444;
    background: transparent;
    border: 0;
    font-size: 16px;
    line-height: 15px;
    text-align: left;
    word-wrap: break-word;
    cursor: pointer;
}

.group-result {
    display: block;
    margin: .5em 0 0 0;
    padding: 5px 6px;
    color: #444;
    font-size: 16px;
    font-weight: 700;
    line-height: 15px;
    cursor: default;
}

.searchable-select-option.group-option,
.searchable-select-option.group-options {
    padding-left: 15px;
}

.searchable-select-option:hover,
.searchable-select-option:focus,
.searchable-select-option.is-selected {
    color: #fff;
    background-color: #3875d7;
    outline: 0;
}

.colocacoes-control {
    display: flex;
    align-items: stretch;
    gap: 4px;
}

.colocacoes-control .form-control,
.colocacoes-control .searchable-select {
    min-width: 0;
    flex: 1 1 auto;
}

.filter-clear-control {
    width: 34px;
    min-height: 34px;
    display: inline-flex;
    flex: 0 0 34px;
    align-items: center;
    justify-content: center;
    color: #b94a48 !important;
    background: #fff;
    font-weight: 700;
    line-height: 1;
    text-decoration: none;
    font-size: 25px;
    padding: 0.25em .75em;
    border: 1px solid #999999;
    border-radius: 4px;
    transition: 0.3s all;
}

.filter-clear-control:hover,
.filter-clear-control:focus-visible {
    color: #fff !important;
    background: #b94a48;
    text-decoration: none;
}

.colocacoes-filter-separator {
    margin: 3em 0 1em;
    border: 0;
    border-top: 1px solid #d5d5d5;
}

.painel .btn {
    margin-left: 1em;
}

.directory-edit-page .painel {
    margin-bottom: 1em;
}

.directory-selector-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1em;
}

.directory-add-button {
    display: table;
    margin: 0 0 1em auto !important;
}

.directory-edit-page .searchable-select-large {
    display: block;
    width: 100%;
}

.directory-edit-page .searchable-select-large .searchable-select-input {
    min-height: 44px;
    padding: .75em 1em;
}

.directory-edit-page .searchable-select-large .searchable-select-list {
    max-height: 380px;
}

.directory-edit-page .searchable-select-large .searchable-select-option {
    min-height: 32px;
    padding: 8px;
    line-height: 16px;
}

.directory-record-form h3,
.directory-relation-section h3,
.directory-relation-form h4 {
    margin: 0 0 1em;
    color: #444;
    font-weight: 400;
}

.directory-form-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1em;
}

.directory-span-2 {
    grid-column: span 2;
}

.directory-span-all {
    grid-column: 1 / -1;
}

.directory-page-control,
.directory-page-toolbar {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: .75em;
}

.directory-page-control .searchable-select {
    flex: 1 1 320px;
    min-width: 0;
}

.directory-page-control .btn,
.directory-page-toolbar .btn {
    margin-left: 0;
}

.directory-page-toolbar {
    justify-content: flex-end;
    margin-bottom: 1em;
}

.institutional-page-edit textarea {
    min-height: 12em;
    font-family: Consolas, "Courier New", monospace;
    line-height: 1.45;
}

.institutional-image-preview {
    display: block;
    width: min(100%, 520px);
    max-height: 260px;
    object-fit: contain;
    object-position: left center;
    background: #f4f5f6;
    border: 1px solid #d5d5d5;
}

.directory-form-actions,
.directory-section-heading {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    margin-top: 1em;
}

.directory-section-heading {
    justify-content: space-between;
    margin-top: 0;
}

.directory-section-heading h3 {
    margin-bottom: 0;
}

.directory-relation-form {
    margin-top: 1em;
    padding-top: 1em;
    border-top: 1px solid #d5d5d5;
}

.directory-edit-page .btn i {
    margin-right: 1em;
}

.directory-edit-page .btn-compact {
    display: inline-flex;
    align-items: center;
    padding: .45em .75em;
    white-space: nowrap;
}

.directory-edit-page .admin-table .btn {
    margin-left: 0;
}

@media (max-width: 760px) {

    .directory-selector-grid,
    .directory-form-grid {
        grid-template-columns: 1fr;
    }

    .directory-span-2 {
        grid-column: auto;
    }

    .directory-span-all {
        grid-column: auto;
    }
}

.colocacoes-pagination {
    display: flex;
    justify-content: center;
}

#paginacaoTop.colocacoes-pagination {
    border-top: 1px solid #d5d5d5;
}

#paginacaoFoot.colocacoes-pagination {
    margin-top: 1em;
}

.pagination {
    display: flex;
    flex-wrap: wrap;
    gap: 0;
    margin: 0;
    padding: 0;
    list-style: none;
}

.page-item {
    display: inline-block;
}

.page-link {
    position: relative;
    display: block;
    margin-left: -1px;
    padding: 6px 12px;
    color: var(--primary);
    background-color: #fff;
    border: 1px solid #ddd;
    line-height: 1.42857143;
    text-decoration: none;
}

.page-item:first-child .page-link {
    margin-left: 0;
    border-top-left-radius: 4px;
    border-bottom-left-radius: 4px;
}

.page-item:last-child .page-link {
    border-top-right-radius: 4px;
    border-bottom-right-radius: 4px;
}

.page-link:hover,
.page-link:focus-visible {
    z-index: 2;
    color: #23527c;
    background-color: #eee;
    border-color: #ddd;
    text-decoration: none;
}

.page-item.active .page-link {
    z-index: 3;
    color: #fff;
    background-color: var(--primary);
    border-color: var(--primary);
    cursor: default;
}

.page-item.disabled .page-link {
    color: #777;
    background-color: #fff;
    border-color: #ddd;
    cursor: not-allowed;
    pointer-events: none;
}

.btn {
    display: inline-flex;
    min-height: 34px;
    min-width: 150px;
    align-items: center;
    justify-content: center;
    gap: 0;
    padding: 6px 12px;
    border: 1px solid #ccc;
    background-image: unset;
    cursor: pointer;
    text-transform: uppercase;
    font-size: 14px;
    line-height: 1.42857143;
    text-decoration: none;
    transition: all .2s;
    vertical-align: baseline;
}

.btn>i,
.button>i,
.nav-button>i {
    margin-right: 1em;
}

.btn:hover,
.btn:focus-visible {
    position: relative;
    z-index: 1;
    box-shadow: 0 0 15px #666;
}

.btn-primary {
    color: #fff;
    background-color: #2f91b4;
    border-color: #2a81a0;
}

.btn-primary:hover,
.btn-primary:focus-visible,
.btn-primary a:hover,
a.btn-primary:hover {
    color: #fff;
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
    text-decoration: none;
}

.btn-success {
    color: #fff;
    background-color: #5cb85c;
    border-color: #4cae4c;
}

.btn-success:hover,
.btn-success:focus-visible {
    color: #fff;
    background-color: #449d44;
    border-color: #398439;
}

.editar-preferencias-form {
    margin: 0 0 1em;
    background: #fff;
    padding: 1em;
}

.editar-preferencias-form h3 {
    margin: 20px 0 10px;
    color: #555;
}

.editar-preferencias-form h3 span {
    font-size: 70%;
    font-weight: 400;
}

.editar-preferencias-help,
.editar-preferencias-note {
    font-size: 1.2em;
    line-height: 1.6;
}

.editar-preferencias-help {
    position: relative;
    margin: .75em 1em .9em;
    padding: 1em 1.25em 1em 1.5em;
    border-left: 5px solid #0099cc;
    background: #f2fbfe;
    color: #444;
}

.editar-preferencias-note {
    position: relative;
    margin: 0 1em 1em;
    padding: .9em 1.25em .9em 1.5em;
    border-left: 5px solid #d5d5d5;
    background: #f7f7f7;
    color: #444;
}

.editar-preferencias-form hr {
    margin: 16px 0;
}

.editar-preferencias-help>strong,
.editar-preferencias-note strong:last-child {
    color: #d00;
}

.editar-preferencias-help a,
.editar-preferencias-note a {
    font-weight: 600;
}

.calendarizacao-static .institution-intro h1,
.calendarizacao-static h1 {
    margin: 0 1rem 1rem;
}

.calendarizacao-stage,
.calendarizacao-note {
    position: relative;
    margin: .75em 1em .9em;
    padding: 1em 1.25em 1em 1.5em;
    color: #444;
}

.calendarizacao-stage {
    border-left: 5px solid #d5d5d5;
    background: #f7f7f7;
}

.calendarizacao-stage-primary {
    border-left-color: #0099cc;
    background: #f2fbfe;
}

.calendarizacao-stage h2 {
    margin: 0 0 .35em;
    color: #444;
    font-size: 1.35em;
    font-weight: 700;
}

.calendarizacao-stage h3 {
    margin: .85em 0 .2em;
    color: #444;
    font-size: 1.1em;
    font-weight: 600;
}

.calendarizacao-stage h3:first-of-type {
    margin-top: .25em;
}

.calendarizacao-stage p {
    margin: 0 0 .35em;
    font-size: 1.15em;
    line-height: 1.55;
}

.calendarizacao-note {
    margin-top: 1em;
    padding-top: .75em;
    padding-bottom: .75em;
    border-left: 5px solid #d5d5d5;
    background: #f7f7f7;
    font-size: 1.05em;
}

.editar-preferencias-tabs {
    margin-top: 0;
    padding: 1em;
    background-color: #fff;
}

.editar-preferencias-tabs .calendar-edit-tab-list button {
    padding: 1.75rem 2.25rem 1.5rem;
    font-size: 18px;
}

.editar-preferencias-tabs .calendar-edit-tab-panel {
    padding: 1.25em;
}

.preferencias-edit-page .table.instituicoes {
    display: block;
    width: 100%;
    margin: 0 !important;
    border-bottom: 1px solid #d5d5d5;
}

.afiliacoes-section .platform-blocked-alert {
    box-sizing: border-box;
    width: 100%;
    margin: 1.75rem 0;
    padding: 1.5rem 1.75rem;
    border-radius: 14px;
    line-height: 1.55;
    box-shadow: 0 10px 26px rgba(20, 40, 55, .14);
}

.afiliacoes-section .platform-blocked-alert + .platform-blocked-alert {
    margin-top: 2rem;
}

.preferencias-edit-page .table.instituicoes .row {
    display: flex;
    align-items: stretch;
    width: 100%;
    margin: 0;
    border-top: 1px solid #d5d5d5;
}

.preferencias-edit-page .table.instituicoes .row>div {
    box-sizing: border-box;
    padding: .5em .75em;
}

.preferencias-edit-page .table.instituicoes .col-xs-3 {
    flex: 0 0 25%;
    max-width: 25%;
}

.preferencias-edit-page .table.instituicoes .col-xs-6 {
    flex: 0 0 50%;
    max-width: 50%;
}

@media (min-width: 768px) {
    .preferencias-edit-page .table.instituicoes .col-sm-2 {
        flex: 0 0 16.66666667%;
        max-width: 16.66666667%;
    }

    .preferencias-edit-page .table.instituicoes .col-sm-4 {
        flex: 0 0 33.33333333%;
        max-width: 33.33333333%;
    }

    .preferencias-edit-page .table.instituicoes .col-sm-6 {
        flex: 0 0 50%;
        max-width: 50%;
    }
}

@media (min-width: 992px) {
    .preferencias-edit-page .table.instituicoes .col-md-2 {
        flex: 0 0 16.66666667%;
        max-width: 16.66666667%;
    }

    .preferencias-edit-page .table.instituicoes .col-md-4 {
        flex: 0 0 33.33333333%;
        max-width: 33.33333333%;
    }

    .preferencias-edit-page .table.instituicoes .col-md-6 {
        flex: 0 0 50%;
        max-width: 50%;
    }
}

@media (min-width: 1200px) {
    .preferencias-edit-page .table.instituicoes .col-lg-2 {
        flex: 0 0 16.66666667%;
        max-width: 16.66666667%;
    }

    .preferencias-edit-page .table.instituicoes .col-lg-4 {
        flex: 0 0 33.33333333%;
        max-width: 33.33333333%;
    }

    .preferencias-edit-page .table.instituicoes .col-lg-6 {
        flex: 0 0 50%;
        max-width: 50%;
    }
}

.preferencias-edit-page .table.instituicoes .row.meta {
    background-color: #d5d5d5;
    border-top: none;
    color: #444;
    text-transform: uppercase;
}

.preferencias-edit-page .table.instituicoes .row.head {
    background-color: #0099cc;
    border: none;
    color: #fff;
    font-size: 90%;
    font-weight: bold;
    text-transform: uppercase;
}

.preferencias-edit-page .table.instituicoes .row.subhead {
    padding-top: 2em;
    background: transparent;
    color: #444;
    font-weight: 700;
    font-size: 90%;
    text-transform: uppercase;
}

.preferencias-edit-page .table.instituicoes .row.subhead~.subhead {
    border-top: 2px solid #000000;
}

.preferencias-edit-page .table.instituicoes .row.instituicao {
    cursor: pointer;
    line-height: 2.3;
    transition: background-color .2s ease-in;
}

.preferencias-edit-page .table.instituicoes .row.instituicao:hover {
    background-color: #eeeeee !important;
}

.preferencias-edit-page .table.instituicoes .row.instituicao.selected {
    background-color: #ccf2ff !important;
    border-color: #ffffff;
}

.preferencias-edit-page .table.instituicoes .row.instituicao.selected select {
    border-color: #0099cc;
}

.preferencias-edit-page .table.instituicoes .row.instituicao.selected:hover {
    background-color: #0099cc !important;
}

.preferencias-edit-page .table.instituicoes .row.instituicao.selected:hover .hotspot {
    color: #ffffff;
}

.preferencias-edit-page .table.instituicoes select {
    display: block;
    width: 100%;
    max-width: none;
    min-width: 3em;
    min-height: 0;
    margin: auto;
    padding: .5em !important;
    border: 1px solid #cccccc;
    border-radius: 0;
    background-color: #ffffff;
    color: #444;
    font-weight: 600;
    text-align: center;
}

.preferencias-edit-page .table.instituicoes select.rejeitar {
    color: #ff1c00;
}

.preferencias-edit-page .table.instituicoes select option:enabled {
    color: #000000;
}

.preferencias-edit-page .table.instituicoes select option.rejeitar {
    color: #ff7766;
}

.editar-preferencias-warning .alert {
    margin-bottom: 0;
}

#form-row-aceito {
    margin-top: 1em;
}

#form-row-aceito input {
    transform: scale(1.5);
    margin: 3px 0 0 1.5em;
    vertical-align: text-top;
}

#form-row-aceito label {
    display: inline-block;
    padding-left: .75em;
}

#form-row-saveEscolhas {
    text-align: center;
}

#saveEscolhas {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: auto;
    min-width: 13em;
    margin: 2em 0;
    transform: scale(1.5);
}

#saveEscolhas i {
    margin-right: 1em;
}

#saveEscolhas[disabled],
#saveEscolhas:disabled,
.preferencias-edit-page .btn[disabled],
.preferencias-edit-page .btn:disabled {
    cursor: not-allowed;
    opacity: .55;
    box-shadow: none !important;
    filter: grayscale(.25);
}

#saveEscolhas[disabled]:hover,
#saveEscolhas:disabled:hover,
.preferencias-edit-page .btn[disabled]:hover,
.preferencias-edit-page .btn:disabled:hover {
    color: #fff;
    background-color: #5cb85c;
    border-color: #4cae4c;
}

.opcoes-areas-form {
    margin: 0 0 1em;
    padding: 1em;
    background-color: #fff;
}

.opcoes-areas-form h3 span {
    font-size: 70%;
}

.opcoes-areas-table {
    display: block;
    width: 100%;
    margin-top: 2em;
    border-bottom: 1px solid #d5d5d5;
}

.opcoes-areas-table .row {
    display: flex;
    align-items: stretch;
    width: 100%;
    margin: 0;
}

.opcoes-areas-table .row>div {
    box-sizing: border-box;
    padding: .5em .75em;
}

.opcoes-areas-table .col-xs-3 {
    flex: 0 0 25%;
    max-width: 25%;
}

@media (min-width: 768px) {
    .opcoes-areas-table .col-sm-2 {
        flex: 0 0 16.66666667%;
        max-width: 16.66666667%;
    }

    .opcoes-areas-table .col-sm-4 {
        flex: 0 0 33.33333333%;
        max-width: 33.33333333%;
    }
}

@media (min-width: 992px) {
    .opcoes-areas-table .col-md-1 {
        flex: 0 0 8.33333333%;
        max-width: 8.33333333%;
    }

    .opcoes-areas-table .col-md-5 {
        flex: 0 0 41.66666667%;
        max-width: 41.66666667%;
    }
}

@media (min-width: 1200px) {
    .opcoes-areas-table .col-lg-1 {
        flex: 0 0 8.33333333%;
        max-width: 8.33333333%;
    }

    .opcoes-areas-table .col-lg-5 {
        flex: 0 0 41.66666667%;
        max-width: 41.66666667%;
    }
}

.opcoes-areas-table .row.head {
    color: #fff;
    background-color: #3a97cc;
    border: none;
    font-size: 90%;
    font-weight: 700;
    text-transform: uppercase;
}

.opcoes-areas-table .row.area {
    border-top: 1px solid #fff !important;
    border-bottom: none;
    cursor: pointer;
    line-height: 2.3;
    transition: background-color .2s ease-in;
}

.opcoes-areas-table .row.area select {
    display: block;
    width: 100%;
    min-height: 0;
    margin: auto;
    padding: .5em !important;
    border: 1px solid #ccc;
    border-radius: 0;
    background-color: #fff;
    color: #444;
}

.opcoes-areas-table .row.area:hover {
    background-color: #ccc;
}

.opcoes-areas-table .row.area select.rejeitar {
    color: #cc0000;
}

.opcoes-areas-table .row.area select option {
    color: #000;
}

.opcoes-areas-table .row.area.opcao1 {
    background-color: #aed4ea;
}

.opcoes-areas-table .row.area.opcao1:hover {
    background-color: #3a97cc;
}

.opcoes-areas-table .row.area.opcao1 select {
    border-color: #3a97cc;
}

.opcoes-areas-table .row.area.opcao2 {
    background-color: #ccc;
}

.opcoes-areas-table .row.area.opcao2:hover {
    background-color: #888;
}

.opcoes-areas-table .row.area.opcao3 {
    background-color: #ffd9b2;
}

.opcoes-areas-table .row.area.opcao3:hover {
    background-color: #cc8f52;
}

.opcoes-areas-table .row.area.opcao3 select {
    border-color: #cc8f52;
}

.opcoes-areas-table .row.area.opcao1:hover .hotspot,
.opcoes-areas-table .row.area.opcao2:hover .hotspot,
.opcoes-areas-table .row.area.opcao3:hover .hotspot {
    color: #fff;
}

.opcoes-areas-table .opcoes-areas-class-column {
    border-left: 1px solid #fff;
}

.opcoes-areas-table .opcoes-areas-total {
    border: none;
}

.opcoes-areas-warning {
    margin-top: 1em;
}

#form-row-saveOpcoes {
    text-align: center;
}

#saveOpcoes {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: auto;
    min-width: 14em;
    margin: 1em 0;
    padding: 4px 40px;
}

#saveOpcoes i {
    margin-right: 1em;
}

#saveOpcoes[disabled],
#saveOpcoes:disabled {
    cursor: not-allowed;
    opacity: .55;
    box-shadow: none !important;
    filter: grayscale(.25);
}

.preferencias-view-page,
.atribuicoes-view-page {
    display: block;
    color: #444;
}

.student-summary-card {
    margin-bottom: 20px;
    padding: 1em;
    border: 1px solid transparent;
    border-radius: 4px;
    background: #f7f7f7;
    color: #444;
}

.student-summary-card h4 {
    margin: 10px 0;
    font-size: 18px;
}

.student-summary-card .info {
    color: #0099cc !important;
}

.preferencias-view-page .strong,
.atribuicoes-view-page .strong {
    font-weight: 500 !important;
}

.preferencias-edit-page .stronger,
.preferencias-view-page .stronger,
.atribuicoes-view-page .stronger,
.student-summary-card .stronger {
    font-weight: 600 !important;
}

.ver-preferencias-panel {
    margin: 0 0 1em;
    padding: 1em;
    background-color: #fff;
}

.ver-preferencias-table {
    display: block;
    width: 100%;
    margin: 0 !important;
    border-bottom: 1px solid #d5d5d5;
}

.ver-preferencias-table .row {
    display: flex;
    margin: 0;
    border-top: 1px solid #d5d5d5;
}

.ver-preferencias-table .row>div {
    box-sizing: border-box;
    padding: .5em .75em;
}

.ver-preferencias-table .col-pref {
    flex: 0 0 33.33333333%;
    max-width: 33.33333333%;
}

.ver-preferencias-table .col-instituicao {
    flex: 0 0 41.66666667%;
    max-width: 41.66666667%;
}

.ver-preferencias-table .col-turma {
    flex: 0 0 25%;
    max-width: 25%;
    border-left: 1px solid #fff;
}

.ver-preferencias-table .row.meta {
    border-top: none;
    background-color: #d5d5d5;
    text-transform: uppercase;
}

.ver-preferencias-table .row.head {
    border: none;
    background-color: #0099cc;
    color: #fff;
    font-size: 90%;
    font-weight: bold;
    text-transform: uppercase;
}

.ver-preferencias-spacer {
    line-height: 1.42857143;
}

.ver-preferencias-export {
    display: table;
    width: 100%;
    text-align: center;
    table-layout: fixed;
}

.ver-preferencias-export .btn>i {
    margin-right: .25em;
}

.atribuicoes-panel {
    margin: 0 0 1em;
    padding: 1em;
    background-color: #fff;
}

.atribuicoes-table {
    display: block;
    width: 100%;
    margin: 0 !important;
    border-bottom: 1px solid #d5d5d5;
}

.atribuicoes-table .row {
    display: flex;
    margin: 0;
    border-top: 1px solid #d5d5d5;
}

.atribuicoes-table .row>div {
    box-sizing: border-box;
    padding: .5em .75em;
}

.atribuicoes-table .col-instituicao {
    flex: 0 0 41.66666667%;
    max-width: 41.66666667%;
}

.atribuicoes-table .col-pref {
    flex: 0 0 33.33333333%;
    max-width: 33.33333333%;
}

.atribuicoes-table .col-turma {
    flex: 0 0 25%;
    max-width: 25%;
    border-left: 1px solid #fff;
}

.atribuicoes-table .col-area {
    flex: 0 0 75%;
    max-width: 75%;
}

.atribuicoes-table .row.meta {
    border-top: none;
    background-color: #d5d5d5;
    text-transform: uppercase;
}

.atribuicoes-table .row.head {
    border: none;
    background-color: #0099cc;
    color: #fff;
    font-size: 90%;
    font-weight: bold;
    text-transform: uppercase;
}

.atribuicoes-spacer {
    line-height: 1.42857143;
}

.atribuicoes-export {
    display: table;
    width: 100%;
    text-align: center;
    table-layout: fixed;
}

.atribuicoes-export .btn>i {
    margin-right: .25em;
}

@media (min-width: 768px) {
    .ver-preferencias-table .col-pref {
        flex-basis: 25%;
        max-width: 25%;
    }

    .ver-preferencias-table .col-instituicao {
        flex-basis: 58.33333333%;
        max-width: 58.33333333%;
    }

    .ver-preferencias-table .col-turma {
        flex-basis: 16.66666667%;
        max-width: 16.66666667%;
    }

    .atribuicoes-table .col-instituicao {
        flex-basis: 58.33333333%;
        max-width: 58.33333333%;
    }

    .atribuicoes-table .col-pref {
        flex-basis: 25%;
        max-width: 25%;
    }

    .atribuicoes-table .col-turma {
        flex-basis: 16.66666667%;
        max-width: 16.66666667%;
    }

    .atribuicoes-table .col-area {
        flex-basis: 83.33333333%;
        max-width: 83.33333333%;
    }
}

@media (min-width: 992px) {
    .ver-preferencias-table .col-pref {
        flex-basis: 16.66666667%;
        max-width: 16.66666667%;
    }

    .ver-preferencias-table .col-instituicao {
        flex-basis: 75%;
        max-width: 75%;
    }

    .ver-preferencias-table .col-turma {
        flex-basis: 8.33333333%;
        max-width: 8.33333333%;
    }

    .atribuicoes-table .col-instituicao {
        flex-basis: 75%;
        max-width: 75%;
    }

    .atribuicoes-table .col-pref {
        flex-basis: 16.66666667%;
        max-width: 16.66666667%;
    }

    .atribuicoes-table .col-turma {
        flex-basis: 8.33333333%;
        max-width: 8.33333333%;
    }

    .atribuicoes-table .col-area {
        flex-basis: 91.66666667%;
        max-width: 91.66666667%;
    }
}

.btn-danger {
    color: #fff;
    background-color: #ff7766;
    border-color: #ff604c;
}

.btn-danger:hover,
.btn-danger:focus-visible {
    color: #fff;
    background-color: #ff4a33;
    border-color: #ff2a0f;
}

span.filtros {
    display: inline-block;
    margin-right: .7em;
    padding-right: .55em;
    vertical-align: top;
    border-right: 1px solid #d5d5d5;
}

span.filtros:last-child {
    border-right: 0;
}

span.filtros a.close {
    margin-right: .45em;
    padding: 0 5px 2px 8px;
    color: #b94a48 !important;
    border: 1px solid #b94a48;
    font-size: 20px;
    line-height: unset;
    opacity: 1;
    text-shadow: none;
    vertical-align: baseline;
}

span.filtros a.close:hover {
    color: #fff !important;
    background-color: #b94a48;
    text-decoration: none;
}

.colocacoes-page a span.icon_desc {
    display: inline-block;
    width: 0;
    margin: 0 0 0 3px;
    overflow: hidden;
    font-size: 70%;
    font-weight: 300;
    line-height: unset;
    text-transform: uppercase;
    vertical-align: middle;
    white-space: nowrap;
    transition: all .3s ease;
}

.colocacoes-page a:hover span.icon_desc {
    width: 50px;
}

.estagio {
    margin: 0 !important;
    padding: 1em;
    background-color: #fff;
    transition: all .2s;
}

.estagio.anoletivo {
    box-shadow: inset 0 10px 10px -10px rgba(0, 0, 0, .3);
}

.estagio.instituicao {
    box-shadow: inset 0 7px 10px -10px rgba(0, 0, 0, .3);
}

.estagio.estudante {
    padding: 1.5em 3em;
}

.estagio.estudante:hover,
dl.estagio.estudante:hover {
    background-color: #fafafa;
}

.estagio.inativo {
    background-color: #ffda99;
}

.estagio.inativo:hover {
    background-color: #ffd388;
}

.colocacoes-student-body {
    /* padding: .5em 2em !important; */
}

.estagio .colocacoes-heading {
    margin: 0;
    padding: 0 !important;
    line-height: 1.42857143;
}

.estagio-heading {
    border-bottom: 1px dotted #ccc;
    margin: 0 !important;
    background-color: #fff;
    padding: 1em;
}

.colocacoes-heading-ano {
    color: #555;
    font-size: 145%;
    font-weight: 300;
}

.colocacoes-heading-instituicao {
    color: #333;
    font-size: 125%;
    font-weight: 400;
}

.colocacoes-heading-unidade {
    font-size: 115%;
    font-weight: 400;
}

.estagio .filter-icon,
.estagio a.small,
.estagio div.bloco a,
.estagio div.area a {
    margin-left: 3px;
    color: #2f91b4;
}

.estagio .filter-icon i,
.estagio a.small i {
    font-size: .82em;
}

.estagio div.estudante,
.perfis-edit-page dl.estagio div.estudante {
    font-size: 110%;
    font-weight: 400;
}

.colocacoes-count {
    display: inline-block;
    padding: .25em .5em;
    background: #eee;
    font-size: 75%;
    font-weight: 400;
    text-transform: uppercase;
}

.estagio div.numero,
.perfis-edit-page .numero {
    font-size: 80%;
    font-weight: 300;
}

.colocacoes-student-placements {
    margin-top: .25em;
}

.colocacao-placement {
    display: block;
}

.colocacoes-student-placements.is-grouped .colocacao-placement {
    padding: .25em 0 0 0;
    border-top: 0;
}

.colocacoes-student-placements.is-grouped .colocacao-placement:first-child {
    padding-top: 0;
    border-top: 0;
}

.colocacoes-student-placements.is-grouped .colocacao-placement.inativo {
    background-color: rgba(255, 218, 153, .35);
}

.estagio div.bloco,
.estagio div.area {
    display: inline-block;
}

.estagio div.bloco a i,
.estagio div.area a i {
    display: inline-block;
    width: 0;
    margin: 0 0 -3px 3px;
    overflow: hidden;
    vertical-align: baseline;
    transition: width .15s ease;
}

.estagio div.bloco a:hover i,
.estagio div.bloco a:focus-visible i,
.estagio div.area a:hover i,
.estagio div.area a:focus-visible i {
    width: 15px;
}

.estagio div.bloco {
    font-size: 85%;
    font-weight: 400;
}

.estagio div.area {
    color: #777;
    font-size: 80%;
    font-weight: 400;
    text-transform: uppercase;
}

.ver-turmas-grid {
    display: block;
    overflow: hidden;
}

.ver-turmas-grid .bloco {
    float: left;
    min-width: 4em;
    min-height: 2.5em;
    padding: .5em 1em;
    box-sizing: border-box;
}

.ver-turmas-row .ver-turmas-student {
    margin-bottom: .25em;
    font-size: 110%;
    font-weight: 400;
}

.ver-turmas-grid .bloco {
    display: block;
    text-align: center;
    font-size: 100%;
    font-weight: 700;
}

.ver-turmas-grid .bloco .cab {
    font-weight: 700;
    text-transform: uppercase;
}

.ver-turmas-grid .cor0 {
    min-width: 8em;
    color: #fff;
    background-color: #000;
}

.ver-turmas-edit-actions {
    margin: 0 0 .5em;
    text-align: right;
    float: right
}

.ver-turmas-student .numero {
    font-size: 80%;
}

.perfis-edit-page #fitem-anoletivo,
.perfis-edit-page #fitem-turma,
.perfis-edit-page #form-row-npp {
    width: 20%;
}

.perfis-edit-page #fitem-estudante {
    width: 60%;
}

dl.estagio {
    border-bottom: 1px dotted #ccc;
    margin: 0 !important;
    padding: 1em;
    background-color: #fff;
    transition: all .2s;
}

dl.estagio.estudante {
    padding: .5em 1em;
}

dl.estagio.instituicao {
    box-shadow: inset 0 7px 10px -10px rgba(0, 0, 0, .3);
}

dl.estagio dd {
    margin: 0 !important;
    padding: .5em 2em !important;
}

.perfis-edit-page .editar-perfis-student {
    position: relative;
}

.perfis-edit-page .editar-perfis-student-main {
    display: flex;
    align-items: flex-start;
    min-height: 87px;
}

.perfis-edit-page .editar-perfis-student-info {
    flex: 1 1 auto;
    min-width: 0;
    padding-top: .1em;
}

.perfis-edit-page .editar-perfis-student-name {
    display: inline;
}

.perfis-edit-page .editar-perfis-edit-actions {
    float: right;
    max-width: calc(100% - 110px);
    margin-right: -1.5em;
    margin-bottom: .5em;
    margin-left: 1em;
    font-weight: 400;
    text-align: right;
}

.ver-turmas-edit-actions .btn,
.perfis-edit-page .editar-perfis-edit-actions .btn {
    border: 0;
    border-radius: 0;
}

.perfis-edit-page .fotosmall {
    flex: 0 0 auto;
    width: auto;
    max-width: 87px;
    height: auto;
    margin: 0 1em 0 0;
}

.perfis-edit-page .validado {
    position: absolute;
    top: 32px;
    left: -76px;
    width: auto;
    max-width: none;
    height: auto;
}

.perfis-edit-page .editar-perfis-blocks {
    display: block;
    overflow: hidden;
    margin-top: .25em;
}

.perfis-edit-page .perfil-bloco {
    float: left;
    width: 25%;
    min-height: 16em;
    padding: 1%;
    box-sizing: border-box;
    font-size: 92%;
    font-weight: 400;
}

.perfis-extra-page .perfil-bloco {
    min-height: 17em;
}

.perfis-edit-page .perfil-bloco .cab {
    padding-bottom: 1em;
    text-transform: uppercase;
}

.perfis-edit-page .perfil-bloco select {
    width: 100%;
    max-width: 100%;
    margin: 0;
    min-height: 34px;
    padding: .58em .75em;
    color: #444;
    background-color: #fff;
    border: 1px solid #ccc;
    border-radius: 0;
}

.perfis-edit-page .perfil-bloco select:disabled {
    color: #777;
    background-color: #eee;
    opacity: 1;
}

.perfis-edit-page .perfil-bloco>div:last-child {
    margin-top: 1em;
    min-height: 2.75em;
}

.perfis-edit-page .perfil-bloco select[hidden] {
    display: none;
}

.perfis-edit-page .perfil-bloco>div.stronger:not(.cab),
.perfis-edit-page .editar-perfis-extra-link {
    /* display: inline; */
}

.perfis-edit-page .editar-perfis-extra-link {
    margin-left: .35em;
}

.editar-perfis-extra-instituicoes {
    background-color: #fff;
}

.editar-perfis-extra-instituicoes .searchable-select {
    display: block;
    width: 100%;
}

.editar-perfis-extra-type {
    margin-top: .45em;
}

.editar-perfis-extra-type span {
    display: inline-block;
    margin-right: .75em;
    white-space: nowrap;
}

.editar-perfis-extra-type input {
    margin: 0 .25em 0 0;
    vertical-align: middle;
}

.perfis-edit-page .perfil-bloco.opcao-rejeitada .opcao,
.perfis-edit-page .perfil-bloco .opcao option.reject {
    color: #cc0000;
}

.perfis-edit-page .perfil-bloco .opcao option:not(.reject) {
    color: #000;
}

.editar-perfis-save {
    padding: 1em 0;
}

.editar-perfis-messages .alert {
    margin-bottom: .75em;
}

@media (max-width: 1200px) {
    .perfis-edit-page .perfil-bloco {
        width: 33.333%;
        padding: 2%;
    }
}

@media (max-width: 799px) {
    .perfis-edit-page .perfil-bloco {
        width: 50%;
        padding: 3%;
    }
}

@media (max-width: 600px) {

    .perfis-edit-page #fitem-anoletivo,
    .perfis-edit-page #fitem-turma,
    .perfis-edit-page #fitem-estudante,
    .perfis-edit-page #form-row-npp,
    .perfis-edit-page .perfil-bloco {
        width: 100%;
    }

    .perfis-edit-page .perfil-bloco {
        padding: 5%;
    }
}

div.alertas span.alerta,
div.alertas span.erro,
div.alertas span.info,
div.alertas span.sucesso {
    display: inline-block;
    margin: 1em 1px 0 0;
    padding: .5em 1em;
    color: #fff !important;
    background-color: #f26522;
    font-size: 70%;
    font-weight: 400;
    text-transform: uppercase;
}

div.alertas span.erro {
    background-color: #d9534f;
}

div.alertas span.info {
    background-color: #337ab7;
}

div.alertas span.sucesso {
    background-color: #5cb85c;
}

.afiliacoes-columns,
.admin-form-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1rem;
}

.admin-table-row {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr auto;
    gap: 14px;
    align-items: center;
    padding: 14px;
    border-bottom: 1px solid var(--line);
}

.admin-table-head {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr auto;
    gap: 14px;
    padding: 10px 14px;
    color: var(--ink);
    background: #f3f6f8;
    border-bottom: 1px solid var(--line);
    font-size: .8rem;
    font-weight: 700;
    text-transform: uppercase;
}

.admin-table-row:last-child {
    border-bottom: 0;
}

.admin-table-row span,
.admin-table-row small {
    display: block;
    color: var(--muted);
}

.admin-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    padding: 0;
    border: 0;
}

.admin-roles {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    padding: 1em;
    border: 1px solid #ccc;
    border-radius: .5em;
    margin: 2em 0;
}

.admin-roles label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.admin-filter-form {
    display: grid;
    grid-template-columns: minmax(260px, 1fr) minmax(180px, 260px) minmax(160px, 220px) auto;
    gap: 1rem;
    align-items: end;
    margin-bottom: 1rem;
}

.admin-filter-actions {
    display: flex;
    gap: .75rem;
}

.admin-pagination {
    margin-top: 1rem;
}

.roles-card+.roles-card {
    margin-top: 1rem;
}

.admin-edit-panel {
    display: block;
}

.admin-edit-main {
    display: grid;
    gap: 1rem;
}

.admin-edit-list {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 4px;
}

.admin-edit-heading {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: #f3f6f8;
    border-bottom: 1px solid var(--line);
}

.admin-edit-heading h3 {
    margin: 0;
    color: var(--ink);
    font-size: 1.2rem;
}

.admin-edit-heading span {
    color: var(--muted);
    font-size: .9rem;
}

.admin-edit-row {
    display: grid;
    grid-template-columns: 60px minmax(140px, 220px) minmax(120px, 170px) minmax(140px, 220px) 70px auto;
    gap: 1rem;
    align-items: start;
    padding: .75rem 1rem;
    border-bottom: 1px solid var(--line);
}

.group-edit-header {
    display: grid;
    grid-template-columns: 60px minmax(140px, 220px) minmax(120px, 170px) minmax(140px, 220px) 70px auto;
    gap: 1rem;
    padding: .55rem 1rem;
    color: var(--muted);
    background: #fafafa;
    border-bottom: 1px solid var(--line);
    font-size: .74rem;
    font-weight: 700;
    text-transform: uppercase;
}

.admin-edit-row-access {
    grid-template-columns: 70px minmax(140px, 210px) minmax(120px, 170px) minmax(360px, 1fr) auto;
}

.admin-edit-row:last-child {
    border-bottom: 0;
}

.admin-edit-id,
.admin-edit-meta {
    display: grid;
    gap: .15rem;
    align-self: center;
}

.admin-edit-id strong,
.admin-edit-meta strong {
    color: var(--ink);
    font-size: 1.05rem;
}

.admin-edit-id span,
.admin-edit-meta span {
    color: var(--muted);
    font-size: .78rem;
    text-transform: uppercase;
}

.admin-edit-id {
    align-self: start;
    padding-top: .5em;
}

.group-edit-row {
    --depth: 0;
    position: relative;
    grid-template-columns: 60px minmax(140px, 220px) minmax(120px, 170px) minmax(140px, 220px) 70px auto;
    padding-left: calc(1rem + (var(--depth) * 1.45rem));
    background: #fff;
}

.group-edit-row:nth-of-type(even) {
    background: #fcfcfc;
}

.group-edit-row:hover {
    background: #f7fafc;
}

.group-edit-row.depth-1 {
    --depth: 1;
}

.group-edit-row.depth-2 {
    --depth: 2;
}

.group-edit-row.depth-3 {
    --depth: 3;
}

.group-edit-row.depth-4 {
    --depth: 4;
}

.group-edit-row.depth-5 {
    --depth: 5;
}

.group-edit-row::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: calc(1.15rem + ((var(--depth) - 1) * 1.45rem));
    display: none;
    border-left: 1px dotted #9aa7b0;
}

.group-edit-row::after {
    content: "";
    position: absolute;
    top: 50%;
    left: calc(1.15rem + ((var(--depth) - 1) * 1.45rem));
    display: none;
    width: 1.15rem;
    border-top: 1px dotted #9aa7b0;
}

.group-edit-row.depth-1::before,
.group-edit-row.depth-1::after,
.group-edit-row.depth-2::before,
.group-edit-row.depth-2::after,
.group-edit-row.depth-3::before,
.group-edit-row.depth-3::after,
.group-edit-row.depth-4::before,
.group-edit-row.depth-4::after,
.group-edit-row.depth-5::before,
.group-edit-row.depth-5::after {
    display: block;
}

.inline-checkboxes {
    display: flex;
    flex-wrap: wrap;
    gap: .4rem .75rem;
}

.groups-edit-list .form-field {
    gap: .25rem;
}

.groups-edit-list .form-field span {
    display: none;
}

.groups-edit-list .form-field input,
.groups-edit-list .form-field select {
    min-height: 0;
    padding: .45em .55em;
    background: #fff;
}

.group-tree-marker strong {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 32px;
    min-height: 24px;
    padding: 0 .45rem;
    color: var(--muted);
    background: #eef3f6;
    border: 1px solid var(--line);
    border-radius: 999px;
    font-size: .78rem;
}

.group-user-count {
    align-self: center;
}

.group-user-count strong {
    display: inline-flex;
    justify-content: center;
    min-width: 34px;
    padding: .2rem .45rem;
    color: var(--primary-dark);
    background: #e8f3fa;
    border-radius: 999px;
    font-size: .85rem;
}

.groups-edit-list .admin-row-actions {
    justify-content: flex-end;
    align-self: start;
}

.inline-checkboxes label {
    display: inline-flex;
    align-items: center;
    align-self: flex-start;
    gap: .35rem;
    min-height: 26px;
    padding: .2rem .45rem;
    background: #f7fafc;
    border: 1px solid var(--line);
    border-radius: 4px;
    font-size: .86rem;
}

.admin-edit-row .form-field {
    align-self: start;
}

.role-groups-field {
    align-self: start;
}

.inline-checkboxes input {
    flex: 0 0 auto;
    width: 14px;
    height: 14px;
    min-height: 0;
    margin: .18rem 0 0;
    padding: 0;
    accent-color: var(--primary);
}

.role-groups-field .inline-checkboxes input[type="checkbox"],
.hierarchy-checkbox input[type="checkbox"] {
    display: inline-block;
    flex: 0 0 auto;
    width: 14px;
    height: 14px;
    min-width: 14px;
    min-height: 0;
    padding: 0;
    border-radius: 2px;
}

.role-groups-field .inline-checkboxes span {
    color: var(--ink);
    font-size: .86rem;
    font-weight: 400;
    line-height: 1.25;
}

.admin-groups-field {
    margin-top: 1rem;
}

.admin-tab-list {
    display: flex;
    gap: 0;
    margin: -1rem -1rem 1rem;
    padding: 0 1rem;
    border-bottom: 1px solid var(--line);
    background: #f3f6f8;
}

.admin-tab-list button {
    margin: 0 2px -1px 0;
    padding: .85rem 1rem;
    border: 1px solid transparent;
    border-radius: 4px 4px 0 0;
    color: var(--primary-dark);
    background: transparent;
    font-weight: 700;
}

.admin-tab-list button:hover {
    background: #eef3f6;
}

.admin-tab-list button.active {
    border-color: var(--line) var(--line) #fff;
    color: var(--ink);
    background: #fff;
}

.admin-tab-panel {
    display: none;
}

.admin-tab-panel.active {
    display: block;
}

.admin-groups-field {
    padding: 0;
    border: 0;
}

.admin-groups-field legend {
    margin-bottom: .4rem;
    color: var(--ink);
    font-weight: 700;
}

.hierarchy-checkboxes {
    display: grid;
    gap: 0;
    padding: .35rem 0;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 4px;
}

.user-groups-tree .hierarchy-checkboxes {
    max-width: 460px;
}

.hierarchy-checkbox {
    --depth: 0;
    position: relative;
    display: flex;
    align-items: center;
    gap: .55rem;
    min-height: 30px;
    padding: .32rem .7rem .32rem calc(.9rem + (var(--depth) * 1.75rem));
    color: var(--ink);
}

.hierarchy-checkbox:hover {
    background: #f7fafc;
}

.hierarchy-checkbox input {
    flex: 0 0 auto;
    width: 14px;
    height: 14px;
    min-width: 14px;
    min-height: 0;
    margin: .2rem 0 0;
    padding: 0;
    accent-color: var(--primary);
}

.hierarchy-checkbox span {
    color: var(--ink);
    font-size: .92rem;
    font-weight: 400;
    line-height: 1.25;
}

.hierarchy-checkbox.depth-1 {
    --depth: 1;
}

.hierarchy-checkbox.depth-2 {
    --depth: 2;
}

.hierarchy-checkbox.depth-3 {
    --depth: 3;
}

.hierarchy-checkbox.depth-4 {
    --depth: 4;
}

.hierarchy-checkbox.depth-5 {
    --depth: 5;
}

.hierarchy-checkbox::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: calc(1.05rem + ((var(--depth) - 1) * 1.75rem));
    display: none;
    border-left: 1px dotted #9aa7b0;
}

.hierarchy-checkbox::after {
    content: "";
    position: absolute;
    top: 50%;
    left: calc(1.05rem + ((var(--depth) - 1) * 1.75rem));
    display: none;
    width: 1.2rem;
    border-top: 1px dotted #9aa7b0;
}

.hierarchy-checkbox.depth-1::before,
.hierarchy-checkbox.depth-1::after,
.hierarchy-checkbox.depth-2::before,
.hierarchy-checkbox.depth-2::after,
.hierarchy-checkbox.depth-3::before,
.hierarchy-checkbox.depth-3::after,
.hierarchy-checkbox.depth-4::before,
.hierarchy-checkbox.depth-4::after,
.hierarchy-checkbox.depth-5::before,
.hierarchy-checkbox.depth-5::after {
    display: block;
}

.status-label {
    display: inline-flex;
    align-items: center;
    min-height: 26px;
    padding: 3px 8px;
    color: var(--primary-dark);
    background: #e8f3fa;
    border: 1px solid #c7deed;
    border-radius: 4px;
    font-size: .82rem;
    font-weight: 700;
}

.form-hint {
    color: var(--muted);
}

.filter-field-wide {
    min-width: min(100%, 320px);
}

@media (min-width: 1200px) {

    .footer-container,
    .breadcrumbs ol,
    .lettering-container,
    .jumbotron-inner {
        width: 85vw;
    }

    .content {
        padding-right: 7.5vw;
        padding-left: 7.5vw;
    }

    .home-prazos-module {
        padding-right: 7.5vw;
        padding-left: 7.5vw;
    }
}

@media (min-width: 991px) {
    .topbar-left {
        /* border-left: 70px solid #666666; */
        margin-right: 2em;
    }
}

@media (min-width: 768px) {
    .jumbotron {
        padding-top: 64px;
        padding-bottom: 64px;
    }

    .jumbotron h1 {
        font-size: 63px;
    }
}

@media (max-width: 990px) {
    .lettering {
        font-size: 14px;
    }

    .lettering-container span:first-child {
        font-size: 36px;
    }

    .lettering.fixo {
        font-size: 12px;
    }

    .lettering.fixo .lettering-container span:first-child {
        margin-right: .5em;
        font-size: 14px;
    }

    .page-masthead .jumbotron {
        padding-top: 40px;
        padding-bottom: 40px;
    }

    .topbar {
        align-items: stretch;
        flex-wrap: wrap;
    }

    .topbar-left {
        width: 100%;
    }

    .brand-logo-large {
        display: block;
        height: 80px;
        max-height: 80px;
    }

    .brand-logo-small {
        display: none;
    }

    .mobile-menu-button {
        display: inline-flex;
        width: auto;
        margin-right: 15px;
        padding: 0 12px;
        color: #fff;
        background: #2f91b4;
        border-color: #2f91b4;
        border-radius: 0;
        font-size: 14px;
        font-weight: 700;
        text-transform: uppercase;
    }

    .topnav {
        display: none;
        width: 100%;
        min-height: 0;
        padding-bottom: 0;
        justify-content: stretch;
        align-items: stretch;
        gap: 0;
        background: #eeeeee;
        border-top: 1px solid #e1e1e1;
    }

    .topnav.is-open {
        display: grid;
    }

    .topnav a,
    .topnav-dropdown,
    .topnav .nav-button {
        width: 100%;
        min-height: auto;
        margin-left: 0;
        justify-content: flex-start;
        padding: 0;
        line-height: 20px;
    }

    .topnav>a,
    .topnav-dropdown>.topnav-dropdown-trigger,
    .topnav .nav-button,
    .topnav-user {
        padding: 20px;
        color: #000;
        background: #eeeeee;
        border-top: 1px solid #e1e1e1;
        font-size: 14px;
        line-height: 20px;
        text-transform: uppercase;
    }

    .topnav>.nav-button,
    .topnav>.topnav-user {
        margin-left: 0;
        margin-right: 0;
        border-left: 0;
    }

    .topnav-user {
        width: 100%;
        min-height: 0;
    }

    .topnav-dropdown::after {
        display: none;
    }

    .topnav-dropdown-menu {
        position: static;
        display: none;
        min-width: 0;
        padding-left: 0;
        background: #eeeeee;
        border: 0;
        border-top: 1px solid #e1e1e1;
        border-left: 0;
        box-shadow: none;
        opacity: 1;
        pointer-events: auto;
        transform: none;
    }

    .topnav-dropdown.is-expanded>.topnav-dropdown-menu {
        display: block;
    }

    .topnav-menu-group.is-expanded>.topnav-submenu {
        display: block;
    }

    .topnav-submenu {
        min-width: 0;
        transform: none;
    }

    .topnav-submenu-trigger i {
        transform: rotate(90deg);
    }

    .topnav-dropdown-menu a {
        min-height: auto;
        padding: 20px 20px 20px 30px;
        color: #000;
        background: #eeeeee;
        border-top: 1px solid #e1e1e1;
        line-height: 20px;
        text-transform: uppercase;
    }

    .topnav-dropdown-menu .topnav-dropdown-menu a {
        padding-left: 45px;
    }

    .topnav-dropdown-menu .topnav-dropdown-menu .topnav-dropdown-menu a {
        padding-left: 60px;
    }

    .topnav-dropdown-menu a:hover,
    .topnav-dropdown-menu a:focus-visible {
        color: #2f91b4;
        background: #eeeeee;
    }

    .topnav-dropdown-menu a.is-active {
        color: #2f91b4;
    }

    .topnav-user,
    .admin-table-row,
    .afiliacoes-filters {
        display: grid;
        grid-template-columns: 1fr;
        align-items: stretch;
    }

    #fitem-anoletivo,
    #fitem-uc,
    #fitem-turma,
    #fitem-estudante,
    #fitem-instituicao,
    #fitem-npp,
    #fitem-ordem,
    .colocacoes-filter-actions {
        width: 100%;
        flex-basis: 100%;
        max-width: 100%;
    }

    .slideshow img {
        height: 220px;
    }

    .home-hero,
    .home-hero-caption {
        min-height: 320px;
    }

    .home-hero-track {
        grid-template-columns: 1fr;
    }

    .home-hero-track img:nth-child(n+2) {
        display: none;
    }

    .home-featured-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .institution-layout {
        grid-template-columns: 1fr;
    }

    .institution-article,
    .institution-aside section {
        padding: 16px;
    }

    .institution-article {
        padding: 0;
    }

    .affiliate-row {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 4%;
        border-bottom: 0;
    }

    .institution-group h3 {
        width: 48%;
    }

    .entrada-container {
        display: block;
    }

    .entrada-left-container {
        width: 100%;
        padding: 1.5em 1em !important;
        border-bottom: 1px solid #eeeeee;
    }

    .entrada-left {
        padding: 0;
        border-right: 0;
    }

    .entrada-right {
        width: 100%;
    }

    .estagio-heading {
        padding-right: 1.5em;
        padding-left: 1.5em;
    }

    .colocacoes-student-body {
        padding-right: .5em !important;
        padding-left: .5em !important;
    }

    .colocacoes-heading-ano {
        font-size: 130%;
    }

    .colocacoes-heading-instituicao {
        font-size: 112%;
    }
}

@media (max-width: 767px) {
    .page-masthead .jumbotron {
        padding-left: 20px;
    }

    .page-masthead .jumbotron-inner {
        padding: 0;
    }
}

@media (max-width: 640px) {
    .home-featured-grid {
        grid-template-columns: 1fr;
    }

    .home-featured-title {
        height: auto;
        padding: .8em;
        background-color: #3c3c3c;
    }

    .affiliate-row {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .institution-group h3 {
        width: 100%;
    }

    .affiliate-card-body strong {
        min-height: 0;
    }

    .institution-hero {
        height: 210px;
    }
}

@media (max-width: 990px) {
    .page-masthead .jumbotron {
        padding-top: 30px;
        padding-bottom: 30px;
    }

    .jumbotron h1 {
        font-size: 36px;
        line-height: 1.1;
    }

    .topbar {
        align-items: stretch;
        flex-wrap: wrap;
        min-height: 80px;
        padding: 0;
    }

    .topbar-left {
        width: 100%;
        min-height: 80px;
    }

    .brand-logo-large {
        display: block;
        height: 80px;
        max-height: 80px;
    }

    .brand-logo-small {
        display: none;
    }

    .mobile-menu-button {
        display: inline-flex;
        position: absolute;
        top: 0;
        right: 0;
        width: 72px;
        height: 80px;
        margin: 0;
        padding: 0;
        color: #000;
        background: transparent;
        border: 0;
        border-left: 1px solid #eeeeee;
        border-radius: 0;
        font-size: 14px;
        line-height: 80px;
    }

    .mobile-menu-button:hover,
    .mobile-menu-button:active,
    .mobile-menu-button:focus-visible {
        color: #2f91b4;
        background: #eeeeee;
        box-shadow: none;
        outline: none;
    }

    .topnav {
        display: none;
        width: 100%;
        min-height: 0;
        padding: 0;
        justify-content: stretch;
        align-items: stretch;
        gap: 0;
        background: #eeeeee;
        border-top: 1px solid #e1e1e1;
    }

    .topnav.is-open {
        display: grid;
    }

    .topnav a,
    .topnav-dropdown,
    .topnav .nav-button {
        width: 100%;
        min-height: auto;
        margin-left: 0;
        justify-content: flex-start;
        padding: 0;
        line-height: 20px;
    }

    .topnav>a,
    .topnav-dropdown>.topnav-dropdown-trigger,
    .topnav .nav-button,
    .topnav-user {
        padding: 20px;
        color: #000;
        background: #fff;
        border-top: 1px solid #e1e1e1;
        font-size: 14px;
        line-height: 20px;
        text-transform: uppercase;
    }

    .topnav>a:hover,
    .topnav>a:focus-visible,
    .topnav>a.is-active,
    .topnav-dropdown>.topnav-dropdown-trigger:hover,
    .topnav-dropdown>.topnav-dropdown-trigger:focus-visible,
    .topnav-dropdown>.topnav-dropdown-trigger.is-active,
    .topnav-dropdown:has(.topnav-dropdown-menu a.is-active)>.topnav-dropdown-trigger,
    .topnav>.nav-button:hover,
    .topnav>.nav-button:focus-visible,
    .topnav>.topnav-user {
        color: #2f91b4;
        background: #fff;
    }

    .topnav-dropdown>.topnav-dropdown-trigger,
    .topnav-submenu-trigger {
        justify-content: space-between;
    }

    .topnav-dropdown-trigger i,
    .topnav-submenu-trigger i {
        margin-left: auto;
        transform: rotate(-90deg);
    }

    .topnav-dropdown.is-expanded>.topnav-dropdown-trigger i,
    .topnav-menu-group.is-expanded>.topnav-submenu-trigger i {
        transform: rotate(0deg);
    }

    .topnav>.nav-button,
    .topnav>.topnav-user {
        margin-left: 0;
        margin-right: 0;
        border-left: 0;
    }

    .topnav-user {
        width: 100%;
        min-height: 0;
        display: grid;
        grid-template-columns: 1fr;
        align-items: stretch;
        gap: 0;
        padding-left: 20px;
        border-left: 0;
    }

    .topnav-dropdown::after {
        display: none;
    }

    .topnav-dropdown-menu {
        position: static;
        display: none;
        min-width: 0;
        padding-left: 0;
        background: #eeeeee;
        border: 0;
        border-top: 0;
        border-left: 0;
        box-shadow: none;
        opacity: 1;
        pointer-events: auto;
        transform: none;
    }

    .topnav-dropdown.is-expanded>.topnav-dropdown-menu {
        display: block;
    }

    .topnav-menu-group.is-expanded>.topnav-submenu {
        display: block;
    }

    .topnav-dropdown-menu a {
        min-height: auto;
        padding: 20px;
        color: #000;
        background: #eeeeee;
        border-top: 0;
        box-shadow: inset 0 1px 0 #e1e1e1;
        line-height: 20px;
        text-transform: uppercase;
    }

    .topnav-dropdown-menu .topnav-dropdown-menu a {
        padding-left: 20px;
    }

    .topnav-dropdown-menu .topnav-dropdown-menu .topnav-dropdown-menu a {
        padding-left: 20px;
    }

    .topnav-dropdown-menu a:hover,
    .topnav-dropdown-menu a:focus-visible {
        color: #2f91b4;
        background: #eeeeee;
    }

    .topnav-dropdown-menu a.is-active {
        color: #2f91b4;
    }
}

@media (max-width: 990px) {
    .page-masthead .jumbotron {
        padding-top: 30px;
        padding-bottom: 30px;
    }

    .jumbotron h1 {
        font-size: 36px;
        line-height: 1.1;
    }

    .jumbotron p {
        font-size: 26px;
        line-height: 1.2;
    }

    .topnav-dropdown>.topnav-dropdown-trigger,
    .topnav-submenu-trigger {
        justify-content: space-between;
    }

    .topnav>a,
    .topnav>.topnav-dropdown,
    .topnav>.nav-button {
        margin-left: 0;
    }

    .topnav-dropdown-trigger i,
    .topnav-submenu-trigger i {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        margin-left: auto;
        color: currentColor;
        font-size: 12px;
        line-height: 1;
        transition: transform 160ms ease;
    }

    .topnav-dropdown-trigger i {
        transform: rotate(-90deg);
    }

    .topnav-submenu-trigger i {
        transform: rotate(0deg);
    }

    .topnav-dropdown:hover>.topnav-dropdown-trigger i,
    .topnav-dropdown:focus-within>.topnav-dropdown-trigger i {
        transform: rotate(-90deg);
    }

    .topnav-menu-group:hover>.topnav-submenu-trigger i,
    .topnav-menu-group:focus-within>.topnav-submenu-trigger i {
        transform: rotate(0deg);
    }

    .topnav-dropdown.is-expanded>.topnav-dropdown-trigger i,
    .topnav-dropdown.is-expanded:hover>.topnav-dropdown-trigger i,
    .topnav-dropdown.is-expanded:focus-within>.topnav-dropdown-trigger i {
        transform: rotate(0deg);
    }

    .topnav-menu-group.is-expanded>.topnav-submenu-trigger i,
    .topnav-menu-group.is-expanded:hover>.topnav-submenu-trigger i,
    .topnav-menu-group.is-expanded:focus-within>.topnav-submenu-trigger i {
        transform: rotate(90deg);
    }

    .topnav-dropdown-menu {
        margin-left: 0;
        padding-left: 0;
        background: #eeeeee;
        border-top: 0;
    }

    .topnav-menu-group,
    .topnav-submenu {
        margin-left: 0;
        padding-left: 0;
        left: auto;
    }

    .topnav-dropdown-menu a {
        display: flex !important;
        align-items: center;
        justify-content: flex-start;
        padding: 20px !important;
        background: #eeeeee;
        border-top: 0;
        font-size: 13px;
        font-weight: 400;
        box-shadow: inset 0 1px 0 #e1e1e1;
    }

    .topnav>.topnav-dropdown>.topnav-dropdown-menu,
    .topnav>.topnav-dropdown>.topnav-dropdown-menu>a,
    .topnav>.topnav-dropdown>.topnav-dropdown-menu>.topnav-menu-group>.topnav-submenu-trigger {
        background: #eeeeee;
    }

    .topnav-dropdown-menu .topnav-dropdown-menu a,
    .topnav-dropdown-menu .topnav-dropdown-menu .topnav-dropdown-menu a {
        padding-left: 20px !important;
    }

    .topnav-dropdown-menu .topnav-dropdown-menu a {
        background: #e1e1e1;
    }

    .topnav-dropdown-menu a:hover,
    .topnav-dropdown-menu a:focus-visible {
        color: #2f91b4;
        background: #eeeeee;
    }

    .topnav-dropdown-menu a.is-active {
        color: #2f91b4;
    }

    .topnav-dropdown-menu .topnav-dropdown-menu a:hover,
    .topnav-dropdown-menu .topnav-dropdown-menu a:focus-visible {
        color: #2f91b4;
        background: #e1e1e1;
    }

    .topnav-dropdown-menu .topnav-dropdown-menu a.is-active {
        color: #2f91b4;
    }

    .topnav-dropdown:hover>.topnav-dropdown-menu,
    .topnav-dropdown:focus-within>.topnav-dropdown-menu,
    .topnav-menu-group:hover>.topnav-submenu,
    .topnav-menu-group:focus-within>.topnav-submenu {
        display: none;
    }

    .topnav-dropdown.is-expanded>.topnav-dropdown-menu,
    .topnav-menu-group.is-expanded>.topnav-submenu {
        display: block;
    }
}
