@charset "UTF-8";
:root {
  --ufal-estudante-color: #657988;
  --ufal-estudante-alt: #51616f;
  --ufal-servidor-color: #144a8d;
  --ufal-servidor-alt: #073164;
  --ufal-transparencia-color: #359e00;
  --ufal-transparencia-alt: #377c15;
  --ufal-informacao-color: #eac102;
  --ufal-informacao-alt: #cc8f04;
}

@keyframes pulse {
  0%, 100% {
    /* Cor azul-500 com 70% de opacidade */
    box-shadow: 0 0 0 0 rgba(59, 130, 246, 0.7);
  }
  70% {
    box-shadow: 0 0 0 12px rgba(59, 130, 246, 0);
  }
}
@keyframes floatNote {
  0% {
    transform: translateY(0) scale(0.6) rotate(0deg);
    opacity: 0;
  }
  30% {
    opacity: 1;
  }
  100% {
    transform: translateY(-38px) scale(1.25) rotate(20deg);
    opacity: 0;
  }
}
@keyframes circle-in {
  from {
    clip-path: circle(0% at 50% 0%);
  }
  to {
    clip-path: circle(120% at 50% 0%);
  }
}
::view-transition-old(root) {
  animation-delay: 500ms;
}

::view-transition-new(root) {
  animation: circle-in 500ms;
}

.animate-pulse-glow {
  animation: pulse 2.5s infinite;
}

body.frontend.section-ufal {
  --current-color: var(--ufal-main-color);
  --current-alt: var(--ufal-alt-color);
}
body.frontend.section-ufal #content-core a:hover {
  color: var(--ufal-main-color);
}
body.frontend.section-ufal #left-column {
  background-color: var(--ufal-main-color);
}
body.frontend.section-ufal .buttonItem:hover,
body.frontend.section-ufal .descriptionItem .title {
  background-color: var(--ufal-main-color);
}
body.frontend.section-ufal .pagination {
  --bs-pagination-active-bg: var(--ufal-main-color);
  --bs-pagination-active-border-color: var(--ufal-main-color);
}
body.frontend.section-ufal .btn-primary {
  --ufal-main-color: var(--ufal-main-color);
  --ufal-alt-color: var(--ufal-alt-color);
  background-color: var(--ufal-main-color);
}
body.frontend.section-ufal .btn-primary:hover {
  background-color: var(--ufal-alt-color);
}
body.frontend.section-ufal .portletNavigationTree a:hover {
  background-color: var(--ufal-alt-color);
}
body.frontend.section-ufal .highlightedSearchTerm {
  color: var(--ufal-main-color);
}
body.frontend.section-ufal .lista-detalhe a:hover {
  color: var(--ufal-main-color) !important;
}
@media (min-width: 992px) {
  body.frontend #menu li.ufal {
    --current-color: var(--ufal-main-color);
    --current-alt: var(--ufal-alt-color);
  }
  body.frontend #menu li.ufal > .dropdown {
    background: var(--ufal-main-color);
  }
  body.frontend #menu li.ufal > .dropdown li:hover, body.frontend #menu li.ufal > .dropdown li:focus-within, body.frontend #menu li.ufal > .dropdown > li.inPath {
    background-color: var(--ufal-alt-color);
  }
  body.frontend #menu li.ufal > .dropdown .dropdown a:hover, body.frontend #menu li.ufal > .dropdown .dropdown a:focus-within {
    background-color: var(--ufal-alt-color);
    color: #fff !important;
  }
  body.frontend #menu li.ufal:hover, body.frontend #menu li.ufal.inPath {
    background-color: var(--ufal-main-color);
  }
}

body.frontend.section-estudante {
  --current-color: var(--ufal-estudante-color);
  --current-alt: var(--ufal-estudante-alt);
}
body.frontend.section-estudante #content-core a:hover {
  color: var(--ufal-estudante-color);
}
body.frontend.section-estudante #left-column {
  background-color: var(--ufal-estudante-color);
}
body.frontend.section-estudante .buttonItem:hover,
body.frontend.section-estudante .descriptionItem .title {
  background-color: var(--ufal-estudante-color);
}
body.frontend.section-estudante .pagination {
  --bs-pagination-active-bg: var(--ufal-estudante-color);
  --bs-pagination-active-border-color: var(--ufal-estudante-color);
}
body.frontend.section-estudante .btn-primary {
  --ufal-main-color: var(--ufal-estudante-color);
  --ufal-alt-color: var(--ufal-estudante-alt);
  background-color: var(--ufal-estudante-color);
}
body.frontend.section-estudante .btn-primary:hover {
  background-color: var(--ufal-estudante-alt);
}
body.frontend.section-estudante .portletNavigationTree a:hover {
  background-color: var(--ufal-estudante-alt);
}
body.frontend.section-estudante .highlightedSearchTerm {
  color: var(--ufal-estudante-color);
}
body.frontend.section-estudante .lista-detalhe a:hover {
  color: var(--ufal-estudante-color) !important;
}
@media (min-width: 992px) {
  body.frontend #menu li.estudante {
    --current-color: var(--ufal-estudante-color);
    --current-alt: var(--ufal-estudante-alt);
  }
  body.frontend #menu li.estudante > .dropdown {
    background: var(--ufal-estudante-color);
  }
  body.frontend #menu li.estudante > .dropdown li:hover, body.frontend #menu li.estudante > .dropdown li:focus-within, body.frontend #menu li.estudante > .dropdown > li.inPath {
    background-color: var(--ufal-estudante-alt);
  }
  body.frontend #menu li.estudante > .dropdown .dropdown a:hover, body.frontend #menu li.estudante > .dropdown .dropdown a:focus-within {
    background-color: var(--ufal-estudante-alt);
    color: #fff !important;
  }
  body.frontend #menu li.estudante:hover, body.frontend #menu li.estudante.inPath {
    background-color: var(--ufal-estudante-color);
  }
}

body.frontend.section-servidor {
  --current-color: var(--ufal-servidor-color);
  --current-alt: var(--ufal-servidor-alt);
}
body.frontend.section-servidor #content-core a:hover {
  color: var(--ufal-servidor-color);
}
body.frontend.section-servidor #left-column {
  background-color: var(--ufal-servidor-color);
}
body.frontend.section-servidor .buttonItem:hover,
body.frontend.section-servidor .descriptionItem .title {
  background-color: var(--ufal-servidor-color);
}
body.frontend.section-servidor .pagination {
  --bs-pagination-active-bg: var(--ufal-servidor-color);
  --bs-pagination-active-border-color: var(--ufal-servidor-color);
}
body.frontend.section-servidor .btn-primary {
  --ufal-main-color: var(--ufal-servidor-color);
  --ufal-alt-color: var(--ufal-servidor-alt);
  background-color: var(--ufal-servidor-color);
}
body.frontend.section-servidor .btn-primary:hover {
  background-color: var(--ufal-servidor-alt);
}
body.frontend.section-servidor .portletNavigationTree a:hover {
  background-color: var(--ufal-servidor-alt);
}
body.frontend.section-servidor .highlightedSearchTerm {
  color: var(--ufal-servidor-color);
}
body.frontend.section-servidor .lista-detalhe a:hover {
  color: var(--ufal-servidor-color) !important;
}
@media (min-width: 992px) {
  body.frontend #menu li.servidor {
    --current-color: var(--ufal-servidor-color);
    --current-alt: var(--ufal-servidor-alt);
  }
  body.frontend #menu li.servidor > .dropdown {
    background: var(--ufal-servidor-color);
  }
  body.frontend #menu li.servidor > .dropdown li:hover, body.frontend #menu li.servidor > .dropdown li:focus-within, body.frontend #menu li.servidor > .dropdown > li.inPath {
    background-color: var(--ufal-servidor-alt);
  }
  body.frontend #menu li.servidor > .dropdown .dropdown a:hover, body.frontend #menu li.servidor > .dropdown .dropdown a:focus-within {
    background-color: var(--ufal-servidor-alt);
    color: #fff !important;
  }
  body.frontend #menu li.servidor:hover, body.frontend #menu li.servidor.inPath {
    background-color: var(--ufal-servidor-color);
  }
}

body.frontend.section-transparencia {
  --current-color: var(--ufal-transparencia-color);
  --current-alt: var(--ufal-transparencia-alt);
}
body.frontend.section-transparencia #content-core a:hover {
  color: var(--ufal-transparencia-color);
}
body.frontend.section-transparencia #left-column {
  background-color: var(--ufal-transparencia-color);
}
body.frontend.section-transparencia .buttonItem:hover,
body.frontend.section-transparencia .descriptionItem .title {
  background-color: var(--ufal-transparencia-color);
}
body.frontend.section-transparencia .pagination {
  --bs-pagination-active-bg: var(--ufal-transparencia-color);
  --bs-pagination-active-border-color: var(--ufal-transparencia-color);
}
body.frontend.section-transparencia .btn-primary {
  --ufal-main-color: var(--ufal-transparencia-color);
  --ufal-alt-color: var(--ufal-transparencia-alt);
  background-color: var(--ufal-transparencia-color);
}
body.frontend.section-transparencia .btn-primary:hover {
  background-color: var(--ufal-transparencia-alt);
}
body.frontend.section-transparencia .portletNavigationTree a:hover {
  background-color: var(--ufal-transparencia-alt);
}
body.frontend.section-transparencia .highlightedSearchTerm {
  color: var(--ufal-transparencia-color);
}
body.frontend.section-transparencia .lista-detalhe a:hover {
  color: var(--ufal-transparencia-color) !important;
}
@media (min-width: 992px) {
  body.frontend #menu li.transparencia {
    --current-color: var(--ufal-transparencia-color);
    --current-alt: var(--ufal-transparencia-alt);
  }
  body.frontend #menu li.transparencia > .dropdown {
    background: var(--ufal-transparencia-color);
  }
  body.frontend #menu li.transparencia > .dropdown li:hover, body.frontend #menu li.transparencia > .dropdown li:focus-within, body.frontend #menu li.transparencia > .dropdown > li.inPath {
    background-color: var(--ufal-transparencia-alt);
  }
  body.frontend #menu li.transparencia > .dropdown .dropdown a:hover, body.frontend #menu li.transparencia > .dropdown .dropdown a:focus-within {
    background-color: var(--ufal-transparencia-alt);
    color: #fff !important;
  }
  body.frontend #menu li.transparencia:hover, body.frontend #menu li.transparencia.inPath {
    background-color: var(--ufal-transparencia-color);
  }
}

body.frontend.section-acesso-a-informacao {
  --current-color: var(--ufal-informacao-color);
  --current-alt: var(--ufal-informacao-alt);
}
body.frontend.section-acesso-a-informacao #content-core a:hover {
  color: var(--ufal-informacao-color);
}
body.frontend.section-acesso-a-informacao #left-column {
  background-color: var(--ufal-informacao-color);
}
body.frontend.section-acesso-a-informacao .buttonItem:hover,
body.frontend.section-acesso-a-informacao .descriptionItem .title {
  background-color: var(--ufal-informacao-color);
}
body.frontend.section-acesso-a-informacao .pagination {
  --bs-pagination-active-bg: var(--ufal-informacao-color);
  --bs-pagination-active-border-color: var(--ufal-informacao-color);
}
body.frontend.section-acesso-a-informacao .btn-primary {
  --ufal-main-color: var(--ufal-informacao-color);
  --ufal-alt-color: var(--ufal-informacao-alt);
  background-color: var(--ufal-informacao-color);
}
body.frontend.section-acesso-a-informacao .btn-primary:hover {
  background-color: var(--ufal-informacao-alt);
}
body.frontend.section-acesso-a-informacao .portletNavigationTree a:hover {
  background-color: var(--ufal-informacao-alt);
}
body.frontend.section-acesso-a-informacao .highlightedSearchTerm {
  color: var(--ufal-informacao-color);
}
body.frontend.section-acesso-a-informacao .lista-detalhe a:hover {
  color: var(--ufal-informacao-color) !important;
}
@media (min-width: 992px) {
  body.frontend #menu li.acesso-a-informacao {
    --current-color: var(--ufal-informacao-color);
    --current-alt: var(--ufal-informacao-alt);
  }
  body.frontend #menu li.acesso-a-informacao > .dropdown {
    background: var(--ufal-informacao-color);
  }
  body.frontend #menu li.acesso-a-informacao > .dropdown li:hover, body.frontend #menu li.acesso-a-informacao > .dropdown li:focus-within, body.frontend #menu li.acesso-a-informacao > .dropdown > li.inPath {
    background-color: var(--ufal-informacao-alt);
  }
  body.frontend #menu li.acesso-a-informacao > .dropdown .dropdown a:hover, body.frontend #menu li.acesso-a-informacao > .dropdown .dropdown a:focus-within {
    background-color: var(--ufal-informacao-alt);
    color: #fff !important;
  }
  body.frontend #menu li.acesso-a-informacao:hover, body.frontend #menu li.acesso-a-informacao.inPath {
    background-color: var(--ufal-informacao-color);
  }
}

html {
  scroll-behavior: smooth;
}

body.lock {
  overflow: hidden;
}

body:not(.section-ufal, .section-estudante, .section-servidor, .section-transparencia) {
  --current-color: var(--ufal-main-color);
}
body:not(.section-ufal, .section-estudante, .section-servidor, .section-transparencia) #global-menu > li.ufal {
  background-color: var(--ufal-main-color);
}
body:not(.section-ufal, .section-estudante, .section-servidor, .section-transparencia) #global-menu > li.ufal > .dropdown {
  visibility: visible;
  opacity: 1;
  z-index: 152;
  border-top-left-radius: 0;
}

body.frontend {
  background-image: url("../imgs/background.png");
  background-position: center top;
  background-repeat: repeat-x;
  line-height: 1;
  display: flex;
  flex-direction: column;
  height: 100%;
}
body.frontend .skiplinks {
  position: relative;
}
body.frontend .skiplinks a {
  position: absolute;
  top: -100vh;
  background-color: #fff;
  transition: top 0.2s ease-in-out;
  white-space: nowrap;
  width: auto;
  padding: 10px 15px;
  z-index: 199;
}
body.frontend .skiplinks a:focus {
  top: 0;
}
body.frontend .skiplinks a:focus-visible {
  outline-color: #c2850c;
  outline-offset: -4px;
  outline-style: dashed;
  outline-width: 4px;
}
body.frontend .text-bg-main {
  background-color: var(--ufal-main-color);
}
body.frontend .btn-chatbot {
  /* Tamanho (64x64px, como o w-16/h-16 do Tailwind) */
  width: 4rem;
  height: 4rem;
  /* Gradiente personalizado (replicando o do Tailwind) */
  background: linear-gradient(to bottom right, #3b82f6, #06b6d4);
  border: none;
  font-size: 1.75rem; /* Tamanho do ícone */
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease-in-out;
  z-index: 1000;
}
body.frontend .btn-chatbot img {
  width: 40px;
}
body.frontend .btn-chatbot:hover {
  /* Efeito de escala (replicando o hover:scale-110 do Tailwind) */
  transform: scale(1.1);
  /* Escurecendo ligeiramente o gradiente no hover */
  background: linear-gradient(to bottom right, #2563eb, #0891b2);
}
body.frontend #chatbot {
  display: none;
  flex-direction: column;
  position: fixed;
  right: 20px;
  bottom: 10px;
  border-radius: 5px;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
  width: min(450px, 100%);
  height: 600px;
  z-index: 1001;
  background: #fff;
}
body.frontend #chatbot iframe {
  background-color: #ffffff;
  width: 100%;
  height: 100%;
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
}
body.frontend #chatbot a {
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
  display: block;
  background-color: #333;
  color: #fff;
  font-family: "Arial";
  padding: 10px 10px;
  text-align: right;
}
body.frontend #chatbot span {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media (max-width: 480px) {
  body.frontend #chatbot {
    right: 0 !important;
    bottom: 0;
  }
}
body.frontend .btn-radio {
  width: 3.25rem; /* Levemente menor que os 4rem do chatbot */
  height: 3.25rem;
  background: linear-gradient(to bottom right, #e64851, #a93d43);
  border: none;
  font-size: 1.35rem; /* Tamanho do ícone ajustado */
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out, background 0.3s ease-in-out;
  color: #ffffff;
}
body.frontend .btn-radio img {
  width: 35px;
}
body.frontend .btn-radio:hover {
  transform: scale(1.15) rotate(-6deg);
  background: linear-gradient(to bottom right, #a93d43, #7c3aed);
  box-shadow: 0 8px 20px rgba(236, 72, 153, 0.5) !important;
}
body.frontend .radio-player-card {
  width: 200px;
  right: 20px;
  bottom: 10px;
  background: rgba(18, 22, 31, 0.54);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1.5px solid rgba(0, 149, 218, 0.4);
  border-radius: 1.25rem;
  box-shadow: 0 14px 35px rgba(0, 0, 0, 0.45), 0 0 18px rgba(230, 72, 81, 0.2);
  transition: all 0.3s ease;
  z-index: 1001;
}
body.frontend .badge-live {
  background-color: #e64851;
  color: #ffffff;
}
body.frontend .radio-avatar {
  width: 3.5rem;
  height: 3.5rem;
  background: linear-gradient(135deg, rgba(230, 72, 81, 0.25), rgba(0, 149, 218, 0.25));
  border: 2px solid #0095da;
  color: #e64851;
  box-shadow: 0 0 12px rgba(0, 149, 218, 0.35);
}
body.frontend .radio-avatar img {
  width: 35px;
}
body.frontend .btn-play-theme {
  width: 2.75rem;
  height: 2.75rem;
  background: linear-gradient(135deg, #e64851, #0095da);
  color: #ffffff;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
body.frontend .btn-play-theme:hover {
  transform: scale(1.1);
  color: #ffffff;
  background: linear-gradient(135deg, #0095da, #e64851);
  box-shadow: 0 0 14px rgba(230, 72, 81, 0.6) !important;
}
body.frontend .radio-player-card .btn-player-sub {
  width: 2.25rem;
  height: 2.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: transform 0.15s ease;
}
body.frontend .radio-player-card .btn-player-sub:hover {
  transform: scale(1.08);
}
body.frontend {
  /* Animação com notas musicais flutuantes */
}
body.frontend .music-note {
  position: absolute;
  font-size: 0.95rem;
  color: #ec4899;
  pointer-events: none;
  opacity: 0;
  animation: floatNote 2.2s infinite ease-in-out;
  font-weight: bold;
  text-shadow: 0 0 4px rgba(236, 72, 153, 0.6);
}
body.frontend .music-note-1 {
  top: -5px;
  left: 15%;
  animation-delay: 0s;
}
body.frontend .music-note-2 {
  top: -5px;
  right: 15%;
  animation-delay: 1.1s;
}
body.frontend .btn-ufal, body.frontend .btn-govbr {
  color: #fff !important;
  text-decoration: none !important;
  display: block;
  margin-bottom: 5px;
  font-size: 16px;
}
body.frontend .btn-ufal {
  background-color: var(--ufal-main-color);
}
body.frontend .btn-govbr {
  background-color: var(--ufal-servidor-color);
}
body.frontend .move-up-hover {
  transition: all 0.2s ease-in-out;
}
body.frontend .move-up-hover:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.08);
}
body.frontend .scale-up-hover {
  transition: all 0.2s ease-in-out;
}
body.frontend .scale-up-hover:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.08);
}
body.frontend .highlightedSearchTerm {
  color: var(--ufal-main-color);
}
body.frontend {
  /* fullcalendar */
}
body.frontend .fc-header-toolbar {
  text-transform: capitalize;
}
body.frontend .legenda {
  list-style: none;
  margin: 10px 0;
  padding: 0;
}
body.frontend .legenda li {
  display: inline-block;
  margin-right: 10px;
  font-size: 13px;
}
body.frontend #searchGadget_form {
  flex-grow: 1;
  position: relative;
}
body.frontend #searchGadget_form .searchField {
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  line-height: 1.5;
  border: var(--bs-border-width) solid var(--bs-border-color);
  border-radius: var(--bs-border-radius);
}
body.frontend #searchGadget_form .searchField:focus {
  box-shadow: 0 0 0 0.25rem rgba(from var(--ufal-main-color) r g b/0.4);
}
body.frontend .btn-login {
  background-color: var(--ufal-main-color);
  border-radius: 50px;
  padding: 7px 10px;
  color: #ffffff;
  transition: 0.2s all ease-in-out;
  margin-left: 10px;
}
body.frontend .btn-login:hover {
  text-decoration: none;
  background-color: var(--ufal-alt-color);
}
body.frontend .shortcut svg {
  width: 23px;
  height: 20px;
}
body.frontend {
  /* cabecalho */
}
body.frontend #header .social {
  display: flex;
  gap: 10px;
  align-items: center;
}
body.frontend #header .social li {
  margin: 0;
  display: inherit;
}
body.frontend #header h1 {
  font-family: "Gill Sans MT";
  text-transform: uppercase;
  font-size: 23px;
  line-height: 22px;
  display: inline-block;
}
body.frontend #header h1 a {
  color: #fff;
}
body.frontend #searchGadget_form button[type=submit] {
  margin-top: 0;
}
body.frontend .options {
  display: flex;
  z-index: 10;
  align-items: center;
  position: absolute;
  right: 0;
  top: 7px;
  gap: 10px;
}
body.frontend .options a {
  background-color: transparent;
  border: none;
  color: #fff;
  font-size: 22px !important;
}
body.frontend .options a:hover {
  color: var(--ufal-main-color);
}
body.frontend .portal-logo:hover {
  text-decoration: none;
}
body.frontend .identificacao img {
  vertical-align: top;
}
body.frontend #header .social a:hover {
  background-color: var(--ufal-main-color);
  color: #fff;
}
body.frontend {
  /* menu */
}
body.frontend #menu .has_subtree input {
  display: none;
}
body.frontend #menu li.ufal:hover .dropdown {
  border-top-left-radius: 0;
}
body.frontend #menu li.acesso-a-informacao {
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
}
body.frontend #menu li.acesso-a-informacao a:after {
  content: "\f08e";
  font-family: "Font Awesome 7 Free";
  padding-left: 8px;
}
body.frontend {
  /* busca */
}
body.frontend #busca {
  margin-bottom: 20px;
}
body.frontend .portletEditoriais {
  padding: 28px 30px;
}
body.frontend .portletEditoriais h3 {
  color: #fff;
}
body.frontend .portletEditoriais ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
body.frontend .portletEditoriais ul a {
  color: #fff;
  font-size: 14px;
  display: block;
  padding-bottom: 10px;
}
body.frontend .portletEditoriais ul a.selected {
  font-family: "ProximaNovaBold";
}
body.frontend .autorelated {
  position: relative;
}
body.frontend .autorelated .row {
  border-top: 1px solid #eee;
  margin-top: 10px;
  margin-bottom: 10px;
  padding-top: 13px;
}
body.frontend .autorelated h3 {
  padding: 10px 0;
  margin: 0;
}
body.frontend #content-core .portalMessage {
  display: none;
}
body.frontend #content.frontpage {
  padding: 0 !important;
}
body.frontend #accessibility {
  list-style: none;
  padding: 7px 0;
  margin: 0;
  display: inline-block;
}
body.frontend #accessibility li {
  display: inline-block;
  margin-right: 5px;
}
body.frontend #accessibility li a {
  font-size: 10px;
  color: #fff;
}
body.frontend #accessibility li a span {
  border: 1px solid #fff;
  padding: 0 2px;
}
body.frontend .contrast-toggle {
  color: #ffffff;
}
body.frontend .contrast-toggle.large {
  background-color: #fff;
  text-decoration: none;
  color: #000;
  padding: 7px 10px;
  border-radius: 15px;
  transition: all 0.2s ease-in-out;
  font-size: 0.95rem;
  display: inline-flex;
  align-items: center;
}
body.frontend .contrast-toggle.large:hover .contrast-text {
  visibility: visible;
  max-width: 150px;
  margin-left: 5px;
}
body.frontend .contrast-toggle.large .contrast-text {
  max-width: 0;
  overflow: hidden;
  white-space: nowrap; /* Prevents text wrapping while sliding */
  transition: all 0.4s ease-in-out;
  margin-left: 0;
  visibility: hidden;
}
body.frontend .emec {
  --emec-color: #1964AF;
  display: block;
  max-width: 130px;
  padding: 11px 17px;
  margin: 0 auto;
  background-color: #fff;
  border: 2px solid var(--emec-color);
  border-radius: 8px;
  color: var(--emec-color);
  text-align: center;
}
body.frontend .emec .emec-logo {
  margin-bottom: 15px;
}
body.frontend .emec span {
  margin: 0;
  letter-spacing: -1px;
  text-transform: uppercase;
  font-size: 1.1rem;
}
body.frontend #footer {
  padding: 50px 0 !important;
}
body.frontend #footer .portal-logo {
  font-family: "Gill Sans MT";
  text-transform: uppercase;
  font-size: 19px;
  line-height: 22px;
  color: #ffffff;
}
body.frontend #footer .social {
  margin-bottom: 0 !important;
}
body.frontend #footer .social a.radio {
  padding-top: 0;
}
body.frontend #footer .links-uteis {
  margin-bottom: 0 !important;
}

@media (min-width: 1400px) {
  h1 a.portal-logo {
    max-width: 240px;
    display: block;
  }
}
/* DEKTOP */
@media (min-width: 992px) {
  #header .social {
    display: inline-block;
    list-style: none;
    padding: 4px 0;
  }
  #header .mobile-site-actions {
    display: none;
  }
  #header #mobile-login {
    display: none;
  }
  #header .site-actions {
    display: flex;
    gap: 15px;
    list-style: none;
    margin-bottom: 0;
    padding: 0;
  }
  #header .site-actions li a {
    font-size: 14px;
    font-family: "ProximaNova";
    color: #fff;
  }
  #header .site-actions li a:after {
    display: block;
    content: "";
    border-bottom: solid 2px var(--current-color, var(--ufal-main-color));
    transform: scaleX(0);
    transition: transform 250ms ease-in-out;
  }
  #header .site-actions li a:hover {
    text-decoration: none;
  }
  #header .site-actions li a:hover:after {
    transform: scalex(1);
  }
  .mobile-actions {
    display: none;
  }
  /* menu global */
  #menu {
    width: 100%;
  }
  #menu a:hover {
    text-decoration: none;
  }
  #menu ul {
    list-style: none;
    margin: 0;
    padding: 0;
  }
  #menu .close {
    display: none;
  }
  #menu > ul {
    position: relative;
    padding: 0;
    display: flex;
    align-items: center;
  }
  #menu > ul > .inPath .nav-item:first-child.inPath {
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px;
  }
  #menu > ul > .inPath .nav-item:first-child.inPath:hover {
    border-bottom-left-radius: 0;
  }
}
@media (min-width: 992px) and (hover: none) {
  #menu > ul > li.has_subtree > label {
    display: flex;
    margin: 0 10px;
    color: #ffffff;
  }
  #menu > ul > li.has_subtree > label::before {
    font-family: "Font Awesome 7 Free";
    font-size: 0.8rem;
    content: "\f107";
    transform: rotate(270deg);
    transition: all 0.2s ease-in-out;
  }
  #menu > ul > li.has_subtree > .opener:checked ~ label::before {
    transform: rotate(360deg);
  }
}
@media (min-width: 992px) {
  #menu > ul > li.has_subtree:has(:focus-visible) > label {
    display: flex;
    margin: 0 10px;
    color: #ffffff;
  }
  #menu > ul > li.has_subtree:has(:focus-visible) > label::before {
    font-family: "Font Awesome 7 Free";
    font-size: 0.8rem;
    content: "\f107";
    transform: rotate(270deg);
    transition: all 0.2s ease-in-out;
  }
  #menu > ul > li.has_subtree:has(:focus-visible) > .opener:checked ~ label::before {
    transform: rotate(360deg);
  }
  #menu > ul > li {
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
  }
  #menu > ul > li.inPath .dropdown {
    z-index: 150;
    visibility: visible;
    opacity: 1;
  }
  #menu > ul > li.nav-item > a {
    padding: 10px 16px;
    display: block;
    color: #fff;
    font-family: "ProximaNovaBold";
    text-decoration: none;
  }
  #menu > ul > li.shortcut {
    border-radius: 0;
  }
  #menu > ul > li.shortcut a {
    color: #fff;
    transition: 0.2s all ease-in-out;
    padding-left: 10px;
    font-size: 19px;
  }
  #menu > ul > li.shortcut a:hover {
    color: var(--ufal-main-color);
  }
  #menu > ul > li.shortcut .search {
    margin-left: 15px;
    border-left: 1px solid #ffffff;
  }
}
@media (min-width: 992px) and (hover: none) {
  #menu > ul > li.has_subtree > a {
    padding-right: 0;
  }
  #menu > ul > li > .opener:checked ~ .dropdown {
    visibility: visible;
    opacity: 1;
  }
  #menu > ul > li:not(.inPath) > .opener:checked ~ .dropdown {
    z-index: 152;
  }
}
@media (min-width: 992px) {
  #menu > ul > li:has(:focus-visible).has_subtree > a {
    padding-right: 0;
  }
  #menu > ul > li:has(:focus-visible) > .opener:checked ~ .dropdown {
    visibility: visible;
    opacity: 1;
  }
  #menu > ul > li:has(:focus-visible):not(.inPath) > .opener:checked ~ .dropdown {
    z-index: 152;
  }
}
@media (min-width: 992px) and (hover: hover) {
  #menu > ul > li:hover .dropdown {
    visibility: visible;
    opacity: 1;
    z-index: 152;
  }
}
@media (min-width: 992px) {
  #menu > ul > li.ufal.inPath > .dropdown {
    border-top-left-radius: 0;
  }
  #menu > ul > li > .dropdown {
    position: absolute;
    width: 100%;
    top: 99%;
    left: 0;
    border-radius: 5px;
    transition: all 0.2s ease-in-out;
    opacity: 0;
    visibility: hidden;
    display: flex;
    flex-wrap: wrap;
  }
  #menu > ul > li > .dropdown > li {
    display: flex;
    align-items: center;
    transition: all 0.2s ease-in-out;
  }
  #menu > ul > li > .dropdown > li.has_subtree {
    position: relative;
  }
  #menu > ul > li > .dropdown > li > a {
    color: #fff;
    padding: 15px 16px;
    display: block;
    text-decoration: none;
  }
}
@media (min-width: 992px) and (hover: hover) {
  #menu > ul > li > .dropdown > li:hover .dropdown {
    max-height: 1500px;
    visibility: visible;
  }
}
@media (min-width: 992px) and (hover: none) {
  #menu > ul > li > .dropdown > li.has_subtree > a {
    padding-right: 0;
    padding-left: 10px;
  }
  #menu > ul > li > .dropdown > li.has_subtree label {
    display: flex;
    margin: 0 8px;
    color: #ffffff;
    height: 100%;
    align-items: center;
  }
  #menu > ul > li > .dropdown > li.has_subtree label::before {
    font-family: "Font Awesome 7 Free";
    font-size: 0.8rem;
    content: "\f107";
    transform: rotate(270deg);
    transition: all 0.2s ease-in-out;
  }
  #menu > ul > li > .dropdown > li.has_subtree.inPath .opener:not(:checked) ~ label::before, #menu > ul > li > .dropdown > li.has_subtree:not(.inPath) .opener:checked ~ label::before {
    transform: rotate(360deg);
  }
  #menu > ul > li > .dropdown > li:not(.inPath) .opener:checked ~ .dropdown, #menu > ul > li > .dropdown > li.inPath .opener:not(:checked) ~ .dropdown {
    max-height: 1500px;
    visibility: visible;
  }
}
@media (min-width: 992px) {
  #menu > ul > li > .dropdown > li:has(:focus-visible).has_subtree > a {
    padding-right: 0;
    padding-left: 10px;
  }
  #menu > ul > li > .dropdown > li:has(:focus-visible).has_subtree label {
    display: flex;
    margin: 0 8px;
    color: #ffffff;
    height: 100%;
    align-items: center;
  }
  #menu > ul > li > .dropdown > li:has(:focus-visible).has_subtree label::before {
    font-family: "Font Awesome 7 Free";
    font-size: 0.8rem;
    content: "\f107";
    transform: rotate(270deg);
    transition: all 0.2s ease-in-out;
  }
  #menu > ul > li > .dropdown > li:has(:focus-visible).has_subtree.inPath .opener:not(:checked) ~ label::before, #menu > ul > li > .dropdown > li:has(:focus-visible).has_subtree:not(.inPath) .opener:checked ~ label::before {
    transform: rotate(360deg);
  }
  #menu > ul > li > .dropdown > li:has(:focus-visible):not(.inPath) .opener:checked ~ .dropdown, #menu > ul > li > .dropdown > li:has(:focus-visible).inPath .opener:not(:checked) ~ .dropdown {
    max-height: 1500px;
    visibility: visible;
  }
  #menu > ul > li > .dropdown > li .dropdown {
    overflow: hidden;
    max-height: 0;
    position: absolute;
    top: 100%;
    background: #fff;
    -webkit-box-shadow: 3px 3px 5px 0px rgba(50, 50, 50, 0.2);
    -moz-box-shadow: 3px 3px 5px 0px rgba(50, 50, 50, 0.2);
    box-shadow: 3px 3px 5px 0px rgba(50, 50, 50, 0.2);
    transition: all 0.2s ease-in-out;
    visibility: hidden;
    min-width: 300px;
  }
  #menu > ul > li > .dropdown > li .dropdown a {
    padding: 12px 25px 12px 15px;
    display: block;
    text-decoration: none;
    color: #333;
    font-size: 16px;
  }
}
@media (min-width: 992px) {
  /* busca */
  #busca {
    width: 80%;
    margin-left: auto;
    margin-top: 25px;
  }
  .dropdown-ghost {
    width: 100%;
  }
}
/* tablet e desktop */
@media (min-width: 768px) {
  #main {
    height: 100% !important;
  }
  .newsImageContainer {
    float: right;
    margin-left: 10px;
  }
}
/* somente tablet */
/* celular e tablet */
@media (max-width: 991px) {
  #header {
    position: relative;
  }
  #header .relative {
    position: relative;
  }
  #header .relative a {
    padding: 10px;
  }
  #header .site-actions {
    display: none;
  }
  #header .btn-login {
    display: none;
  }
  #header #mobile-login {
    border: 1px solid rgba(255, 255, 255, 0.1960784314);
    margin: 0 10px;
    color: var(--ufal-main-color);
    background-color: #ffffff;
    margin-bottom: 10px;
    padding: 15px;
    border-radius: 15px;
  }
  #header .mobile-site-actions {
    list-style: none;
    display: flex;
    gap: 5px;
    justify-content: space-between;
    z-index: 1201 !important;
    text-align: center;
    transition: all 0.2s ease-in-out;
    padding: 20px 10px !important;
    flex-wrap: wrap;
    margin: 0;
  }
  #header .mobile-site-actions a {
    border: 1px solid rgba(255, 255, 255, 0.1960784314);
    color: #ffffff;
    border-radius: 15px;
    padding: 5px 15px;
  }
  #header .mobile-site-actions a:after {
    display: none !important;
  }
  #header #accessibility {
    display: none;
  }
  #header .identificacao {
    position: relative;
    text-align: center;
    margin-bottom: 10px;
  }
  #header .identificacao img {
    display: block;
    margin: 0 auto;
  }
  .mobile-actions {
    display: flex;
    justify-content: center;
  }
  .mobile-actions a {
    color: #fff;
    font-size: 20px;
    padding: 10px;
  }
  #busca {
    display: none;
  }
  #busca.show {
    display: block;
  }
  #menu {
    position: fixed !important;
    width: 100%;
    left: -100%;
    max-height: inherit !important;
    max-width: 100%;
    width: 400px;
    top: 0;
    bottom: 0;
    z-index: 1200 !important;
    overflow-y: auto;
    background-color: var(--current-color);
    transition: all 0.2s ease-in-out;
    border-radius: 0 !important;
    visibility: hidden;
    color: #ffffff;
  }
  #menu::before {
    content: "Menu";
    display: block;
    margin: 10px 10px 0;
    font-size: 1.5rem;
  }
  #menu .close {
    position: absolute;
    top: 10px;
    right: 13px;
    color: #fff;
    z-index: 202;
    font-size: 1.3rem;
  }
  #menu.show {
    left: 0;
    visibility: visible;
  }
  #menu.show .shadow {
    position: fixed;
  }
  #menu > ul#global-menu {
    margin: 0 10px;
    padding: 10px 0 45px;
  }
  #menu > ul#global-menu > li:last-child {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1960784314);
  }
  #menu ul:not(.mobile-site-actions) > li.nav-item {
    display: flex;
    flex-wrap: wrap;
    border-top: 1px solid rgba(255, 255, 255, 0.1960784314);
    border-left: 1px solid rgba(255, 255, 255, 0.1960784314);
    border-right: 1px solid rgba(255, 255, 255, 0.1960784314);
  }
  #menu ul:not(.mobile-site-actions) > li a {
    color: #fff;
    font-family: "ProximaNova";
    font-size: 1.14rem;
    padding: 0.9rem 1.3rem;
    text-align: left;
  }
  #menu ul:not(.mobile-site-actions) .shortcut {
    border-top: 1px solid rgba(255, 255, 255, 0.1960784314);
    border-right: 1px solid rgba(255, 255, 255, 0.1960784314);
    justify-content: center;
  }
  #menu ul:not(.mobile-site-actions) .shortcut .search {
    display: none;
  }
  #menu ul:not(.mobile-site-actions) .shortcut a:not(:last-child, :first-child) {
    border-left: 1px solid rgba(255, 255, 255, 0.1960784314);
  }
  #menu label {
    display: flex;
    justify-content: end;
    align-items: center;
    padding: 0 1.3rem;
    border-left: 1px solid rgba(255, 255, 255, 0.1960784314);
    margin-left: auto !important;
  }
  #menu label::before {
    margin-left: 0 !important;
  }
  #menu .has_subtree label {
    margin-left: 10px;
  }
  #menu .has_subtree label::before {
    font-family: "Font Awesome 7 Free";
    font-size: 0.8rem;
    content: "\f107";
    transform: rotate(270deg);
    transition: all 0.2s ease-in-out;
  }
  #menu .has_subtree .opener:checked ~ ul {
    display: block !important;
    flex-basis: 100%;
  }
  #menu .has_subtree .opener:checked ~ label::before {
    transform: rotate(360deg);
  }
  #menu .dropdown {
    display: none;
    padding-left: 0;
    backdrop-filter: brightness(0.9);
    list-style: none;
  }
  #menu .dropdown .dropdown {
    background-color: var(--current-alt);
  }
  #menu .dropdown li {
    border-left: 0;
    border-right: 0;
  }
  #menu .dropdown li:last-child {
    padding-bottom: 0;
    border-bottom: 0;
  }
  .menu-backdrop {
    position: fixed;
    inset: 0;
    background-color: #000;
    opacity: 0.5;
    z-index: 1199;
  }
  .menu .close {
    position: absolute;
    top: 10px;
    right: 13px;
    color: #fff;
    z-index: 202;
    font-size: 1.3rem;
  }
  #busca {
    width: 100%;
    padding: 0 15px;
  }
  #footer .identificacao h2 {
    font-size: 17px !important;
  }
}
/* somente celular */
@media (max-width: 767px) {
  #left-column {
    display: none;
  }
  #header .social {
    font-size: 30px;
  }
  #header .social a {
    width: 50px;
    height: 50px;
    border-radius: 25px;
  }
  #header .social a span {
    padding-top: 10px;
  }
  #footer .identificacao {
    position: relative;
    text-align: center;
    margin-bottom: 10px;
  }
  #footer .identificacao img {
    display: block;
    margin: 0 auto;
  }
  .newsImageContainer {
    text-align: center;
  }
}
body.template-frontpage {
  background-image: url("../imgs/background-frontpage.png");
  /* lista com seta */
}
body.template-frontpage .lista-seta {
  padding: 30px 29px 18px;
  list-style: none;
  margin: 0;
}
body.template-frontpage .lista-seta li {
  background-color: #f2f2f2;
  border-radius: 5px;
  margin-bottom: 12px;
  padding: 23px 29px;
  position: relative;
  overflow: hidden;
}
body.template-frontpage .lista-seta li.data {
  background: none;
  padding: 0;
  font-size: 18px;
}
body.template-frontpage .lista-seta li.selected {
  background-color: var(--ufal-main-color);
}
body.template-frontpage .lista-seta li.selected a {
  color: #fff;
}
body.template-frontpage .lista-seta li.selected .data {
  color: #fff;
}
body.template-frontpage .lista-seta li :hover .seta {
  transform: translateX(-86px);
}
body.template-frontpage .lista-seta a {
  font-family: "ProximaNovaBold";
  font-size: 18px;
  margin-bottom: 7px;
  display: inline-block;
  color: #333;
}
body.template-frontpage .lista-seta .data {
  font-family: "ProximaNovaBold";
  font-size: 12px;
  color: var(--ufal-main-color);
  margin-bottom: 10px;
}
body.template-frontpage .lista-seta .descricao {
  font-family: "ProximaNova";
  font-size: 12px;
  color: #808080;
  margin-bottom: 0;
}
body.template-frontpage .lista-seta .seta {
  position: absolute;
  top: 0;
  right: -86px;
  background: var(--ufal-main-color);
  padding: 0 17px;
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
  height: 100%;
  font-size: 25px;
  vertical-align: middle;
  transition: all 0.5s;
  color: #fff;
  line-height: 1;
}
body.template-frontpage .lista-seta .seta span {
  position: relative;
  top: calc(50% - 15px);
}
body.template-frontpage .lista-seta .empty {
  font-size: 13px;
}
body.template-frontpage {
  /* frontpage */
}
body.template-frontpage #frontpage h2.titulo {
  font-family: "ProximaNova";
  text-transform: lowercase;
  font-size: 37px;
  margin-bottom: 30px;
}
body.template-frontpage #rotativo {
  margin-bottom: 30px;
}
body.template-frontpage #rotativo > .container {
  position: relative;
}
body.template-frontpage #rotativo .btn-config {
  position: absolute;
  left: 15px;
  top: 15px;
  z-index: 2;
}
body.template-frontpage #carroussel {
  margin-top: 11px;
}
body.template-frontpage {
  /* noticias */
}
body.template-frontpage #noticias {
  padding: 49px 0 79px 0;
  background-color: #fff;
}
body.template-frontpage #noticias .main {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  overflow: hidden;
  margin-bottom: 20px;
  min-height: 200px;
  position: relative;
}
body.template-frontpage #noticias .main:before {
  content: "";
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.8), transparent);
  position: absolute;
  inset: 0;
  z-index: 2;
  transition: all 0.2s ease-in-out;
}
body.template-frontpage #noticias .main:hover:before {
  background-color: var(--ufal-main-color);
  opacity: 0.5;
}
body.template-frontpage #noticias .main:hover img {
  transform: scale(1.2);
}
body.template-frontpage #noticias .main img, body.template-frontpage #noticias .main .item {
  grid-row: 1;
  grid-column: 1;
}
body.template-frontpage #noticias .main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  transition: all 0.2s ease-in-out;
}
body.template-frontpage #noticias .main .item {
  z-index: 2;
}
body.template-frontpage #noticias .main a {
  color: #ffffff;
  transition: all 0.2s ease-in-out;
  font-family: "ProximaNovaBold";
}
body.template-frontpage #noticias .main a:hover {
  text-decoration: none;
}
body.template-frontpage #noticias .main a {
  font-size: 2.5rem;
}
@media (width > 767px) {
  body.template-frontpage #noticias .main a {
    font-size: 1.6rem;
  }
}
@media (width > 991px) {
  body.template-frontpage #noticias .main a {
    font-size: 1.2rem;
  }
}
@media (width > 1200px) {
  body.template-frontpage #noticias .main a {
    font-size: 1.3rem;
  }
}
@media (width > 1400px) {
  body.template-frontpage #noticias .main a {
    font-size: 1.6rem;
  }
}
body.template-frontpage #noticias .main a .badge {
  text-shadow: none;
}
body.template-frontpage #noticias .badge {
  font-size: 0.8rem;
  font-family: "ProximaNovaBold";
}
body.template-frontpage #noticias .estudante {
  --ufal-main-color:var(--ufal-estudante-color);
}
body.template-frontpage #noticias .servidor {
  --ufal-main-color:var(--ufal-servidor-color);
}
body.template-frontpage #noticias .transparencia {
  --ufal-main-color:var(--ufal-transparencia-color);
}
body.template-frontpage #noticias .noticia-list a {
  transition: all 0.2s ease-in-out;
}
body.template-frontpage #noticias .ufal .destaque .titulo {
  color: var(--ufal-main-color);
}
body.template-frontpage #noticias .estudante .destaque .titulo {
  color: var(--ufal-estudante-color);
}
body.template-frontpage #noticias .servidor .destaque .titulo {
  color: var(--ufal-servidor-color);
}
body.template-frontpage #noticias .transparencia .destaque .titulo {
  color: var(--ufal-transparencia-color);
}
body.template-frontpage #noticias .ufal .titulo:hover {
  text-decoration-color: rgb(from var(--ufal-alt-color) r g b/0.2);
}
body.template-frontpage #noticias .estudante .titulo:hover {
  text-decoration-color: rgb(from var(--ufal-estudante-alt) r g b/0.2);
}
body.template-frontpage #noticias .servidor .titulo:hover {
  text-decoration-color: rgb(from var(--ufal-servidor-alt) r g b/0.2);
}
body.template-frontpage #noticias .transparencia .titulo:hover {
  text-decoration-color: rgb(from var(--ufal-transparencia-alt) r g b/0.2);
}
body.template-frontpage #noticias .pretty_date {
  display: inline-block;
  padding: 5px 15px;
  font-family: "ProximaNovaBold";
  font-size: 10px;
  color: #fff;
  margin-top: 10px;
}
body.template-frontpage #noticias .ufal .pretty_date {
  background-color: var(--ufal-main-color);
}
body.template-frontpage #noticias .estudante .pretty_date {
  background-color: var(--ufal-estudante-color);
}
body.template-frontpage #noticias .servidor .pretty_date {
  background-color: var(--ufal-servidor-color);
}
body.template-frontpage #noticias .transparencia .pretty_date {
  background-color: var(--ufal-transparencia-color);
}
body.template-frontpage #noticias .image_link {
  position: relative;
  display: block;
}
body.template-frontpage #noticias .image_link:hover .overlay {
  height: 100%;
}
body.template-frontpage #noticias .image_link:hover .more {
  visibility: visible;
}
body.template-frontpage #noticias .overlay {
  position: absolute;
  top: 0;
  left: 0;
  margin: 0;
  display: block;
  width: 100%;
  height: 0;
  transition: height 0.2s ease;
}
body.template-frontpage #noticias .shadow {
  position: absolute;
  opacity: 0.6;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
body.template-frontpage #noticias .ufal .shadow {
  background: #ff2b34;
}
body.template-frontpage #noticias .estudante .shadow {
  background: var(--ufal-estudante-color);
}
body.template-frontpage #noticias .servidor .shadow {
  background: var(--ufal-servidor-color);
}
body.template-frontpage #noticias .transparencia .shadow {
  background: var(--ufal-transparencia-color);
}
body.template-frontpage #noticias .more {
  text-align: center;
  vertical-align: middle;
  text-transform: uppercase;
  color: #fff;
  font-family: "ProximaNovaBold";
  font-size: 14px;
  z-index: 2;
  position: absolute;
  top: calc(50% - 7px);
  left: calc(50% - 38.5px);
  visibility: hidden;
  transition: all 0.2s ease;
}
body.template-frontpage #noticias .ufal .data {
  color: var(--ufal-main-color);
}
body.template-frontpage #noticias .estudante .data {
  color: var(--ufal-estudante-color);
}
body.template-frontpage #noticias .servidor .data {
  color: var(--ufal-servidor-color);
}
body.template-frontpage #noticias .transparencia .data {
  color: var(--ufal-transparencia-color);
}
body.template-frontpage #noticias .ufal ul a.titulo:hover {
  color: var(--ufal-main-color) !important;
}
body.template-frontpage #noticias .estudante ul a.titulo:hover {
  color: var(--ufal-estudante-color) !important;
}
body.template-frontpage #noticias .servidor ul a.titulo:hover {
  color: var(--ufal-servidor-color) !important;
}
body.template-frontpage #noticias .transparencia ul a.titulo:hover {
  color: var(--ufal-transparencia-color) !important;
}
body.template-frontpage #noticias .ufal ul {
  border-left-color: var(--ufal-main-color);
}
body.template-frontpage #noticias .estudante ul {
  border-left-color: var(--ufal-estudante-color);
}
body.template-frontpage #noticias .servidor ul {
  border-left-color: var(--ufal-servidor-color);
}
body.template-frontpage #noticias .transparencia ul {
  border-left-color: var(--ufal-transparencia-color);
}
body.template-frontpage #noticias .novo {
  font-size: 20px;
  color: #333;
  text-align: center;
  display: block;
}
body.template-frontpage #noticias .novo:hover {
  color: var(--ufal-main-color);
}
body.template-frontpage #noticias .add-noticia {
  width: 100%;
  text-align: center;
  border-radius: 5px;
  background-color: #efefef;
  border: 1px solid #ccc;
  padding: 5px;
  color: #333;
  transition: all 0.2s ease-in-out;
}
body.template-frontpage #noticias .add-noticia:hover {
  background-color: var(--ufal-main-color);
  color: #ffffff !important;
}
body.template-frontpage #videos {
  padding: 49px 0 79px 0;
}
body.template-frontpage #videos .item {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  overflow: hidden;
  margin-bottom: 20px;
  min-height: 200px;
  position: relative;
}
body.template-frontpage #videos .item:before {
  content: "";
  background: #000;
  opacity: 0.6;
  position: absolute;
  inset: 0;
  z-index: 2;
  transition: all 0.2s ease-in-out;
}
body.template-frontpage #videos .item:hover:before {
  background-color: var(--ufal-main-color);
  opacity: 0.5;
}
body.template-frontpage #videos .item:hover img {
  transform: scale(1.2);
}
body.template-frontpage #videos .item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  transition: all 0.2s ease-in-out;
  grid-row: 1;
  grid-column: 1;
  z-index: 0;
}
body.template-frontpage #videos .item a {
  display: flex;
  grid-row: 1;
  grid-column: 1;
  z-index: 2;
  color: #ffffff;
  transition: all 0.2s ease-in-out;
  font-family: "ProximaNovaBold";
  justify-content: center;
  align-items: center;
  text-align: center;
}
body.template-frontpage #videos .item a:hover {
  text-decoration: none;
}
body.template-frontpage #cursos {
  background-color: var(--ufal-estudante-color);
  padding: 49px 0 79px 0;
}
body.template-frontpage #cursos .titulo {
  color: #fff;
}
body.template-frontpage #cursos [class*=fa] {
  font-size: 43px;
  color: var(--ufal-estudante-color);
}
body.template-frontpage #cursos a {
  color: #333;
}
body.template-frontpage #cursos a:hover {
  text-decoration: none;
}
body.template-frontpage #cursos .card-title {
  font-family: "ProximaNovaBold";
}
body.template-frontpage #editais {
  background-color: #e9e9e9;
  padding: 49px 0 79px 0;
}
body.template-frontpage #editais a {
  --bs-link-color-rgb: #333;
}
body.template-frontpage #editais a:hover {
  text-decoration: none;
  color: var(--ufal-main-color);
}
body.template-frontpage #editais .badge {
  --bs-primary-rgb:198, 21, 28;
}
body.template-frontpage .scroll {
  overflow-y: scroll;
  scrollbar-color: var(--ufal-main-color) transparent;
}
body.template-frontpage #editais-lista {
  height: 368px;
  border-radius: 5px;
  background-color: #fff;
}
body.template-frontpage .main-video {
  overflow: hidden;
  position: relative;
}
body.template-frontpage .main-video img {
  margin: -10% 0;
  width: 100%;
}
body.template-frontpage .main-video a:hover span.fa {
  font-size: 4em;
}
body.template-frontpage .main-video span.fa {
  transition: all 0.2s ease;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  text-align: center;
  line-height: 100px;
  vertical-align: middle;
  padding-left: 15px;
  background-color: var(--ufal-main-color);
}
body.template-frontpage #videos-lista {
  background-color: #fff;
  height: 350px;
}
body.template-frontpage #videos-lista .item {
  height: 90px;
}
body.template-frontpage #videos-lista .dados {
  height: 90px;
  display: table-cell;
  vertical-align: middle;
}
body.template-frontpage #videos-lista .imagem {
  float: left;
  margin-right: 10px;
}
body.template-frontpage #videos-lista .titulo {
  cursor: pointer;
}
body.template-frontpage #frm-editais {
  background-color: var(--ufal-main-color);
  border-radius: 5px;
  padding: 30px 29px;
}
body.template-frontpage #frm-editais .field {
  margin-bottom: 18px;
}
body.template-frontpage #frm-editais label {
  color: #fff;
  font-size: 13px;
}
body.template-frontpage #frm-editais input, body.template-frontpage #frm-editais select {
  width: 100%;
  border-radius: 5px;
  border-width: 0;
  padding: 11px 16px;
  font-size: 13px;
  background: #fff;
}
body.template-frontpage #frm-editais select {
  color: var(--ufal-main-color);
}
body.template-frontpage #frm-editais input:focus, body.template-frontpage #frm-editais select:focus {
  outline: none;
}
body.template-frontpage #frm-editais .formControls {
  text-align: center;
  background-color: transparent;
  border-top: none;
}
body.template-frontpage #frm-editais input[type=submit] {
  background-color: #690a0e;
  border-radius: 20px;
  color: #fff;
  font-weight: bold;
  cursor: pointer;
  width: inherit;
  padding-left: 30px;
  padding-right: 30px;
  transition: all 0.2s ease-in-out;
}
body.template-frontpage #frm-editais input[type=submit]:hover,
body.template-frontpage #frm-editais input[type=submit]:focus,
body.template-frontpage #frm-editais input[type=submit]:active {
  background-color: #410205;
}
body.template-frontpage {
  /* agenda */
}
body.template-frontpage #agenda {
  padding: 49px 0 79px 0;
  background-color: #fff;
}
body.template-frontpage #agenda .meses {
  padding: 0 12px;
  text-align: center;
  margin-top: 30px;
}
body.template-frontpage #agenda .meses a {
  color: #333;
}
body.template-frontpage #agenda .mes {
  color: var(--ufal-main-color);
  font-family: "ProximaNovaBold";
  text-transform: uppercase;
}
body.template-frontpage #agenda .previous_month {
  float: left;
}
body.template-frontpage #agenda .next_month {
  float: right;
}
body.template-frontpage #agenda .ano {
  color: #808080;
  font-family: "ProximaNovaBold";
}
body.template-frontpage #agenda .calendario {
  width: 100%;
  font-family: "ProximaNovaBold";
  font-size: 14px;
  border: none;
}
body.template-frontpage #agenda .calendario thead {
  height: 3.813em;
  padding: 0.7em;
  z-index: 2;
  color: var(--ufal-main-color);
}
body.template-frontpage #agenda .calendario tr {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  box-sizing: border-box;
}
body.template-frontpage #agenda .calendario th,
body.template-frontpage #agenda .calendario td {
  display: inline-block;
  padding: 0.7em 0;
  text-align: center;
  box-sizing: border-box;
  -ms-flex-preferred-size: 14.28571%;
  flex-basis: 14.28571%;
  background-image: radial-gradient(var(--ufal-main-color) 50%, rgba(0, 0, 0, 0) 53%);
  background-size: 0 0;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  border: none;
}
body.template-frontpage #agenda .calendario td.event {
  color: #FFFFFF;
  background-size: 3.5em 3.5em;
}
body.template-frontpage #agenda span.time {
  line-height: 1.5;
}
body.template-frontpage #agenda .event span.time {
  cursor: pointer;
}
body.template-frontpage #eventos {
  background-color: #e9e9e9;
  border-radius: 5px;
  height: 414px;
}
body.template-frontpage {
  /* localizacao */
}
body.template-frontpage #localizacao {
  background-color: #98c0f0;
  padding: 49px 0 79px 0;
  color: #fff;
}
body.template-frontpage #localizacao .titulo {
  color: #fff;
}
body.template-frontpage #escolha-mapa {
  position: relative;
  margin-bottom: 37px;
}
body.template-frontpage #escolha-mapa .selected {
  width: 200px;
  background-color: #6893c6;
  border-radius: 22.5px;
  border: none;
  padding: 11px 23px;
  -webkit-appearance: none;
  -moz-appearance: none;
  text-indent: 1px;
  font-family: "ProximaNovaBold";
  font-size: 14px;
  color: #fff;
  display: block;
  cursor: pointer;
  position: relative;
  z-index: 2;
}
body.template-frontpage #escolha-mapa .selected:after {
  content: "\f078";
  font-family: "Font Awesome 7 Free";
  font-style: normal;
  font-weight: normal;
  text-decoration: inherit;
  color: #fff;
  font-size: 14px;
  padding-right: 0.5em;
  position: absolute;
  top: 10px;
  left: 168px;
}
body.template-frontpage #escolha-mapa ul.options {
  overflow: hidden;
  max-height: 0;
  position: absolute;
  transition: all 0.2s ease;
  list-style: none;
  margin: 0;
  padding: 0;
  margin-top: -20px;
  padding-top: 20px;
  border-bottom-left-radius: 22.5px;
  border-bottom-right-radius: 22.5px;
}
body.template-frontpage #escolha-mapa ul.show {
  background-color: #76a4dc;
  max-height: 160px;
}
body.template-frontpage #escolha-mapa ul a {
  padding: 11px 40.5px;
  display: block;
  color: #fff;
  font-family: "ProximaNova";
  font-size: 13px;
}
body.template-frontpage #escolha-mapa ul a:hover {
  background-color: #6893c6;
  text-decoration: none;
}
body.template-frontpage #localizacao .mapa {
  position: relative;
  overflow: hidden;
}
body.template-frontpage #localizacao .mapa .loading {
  display: block;
  position: absolute;
  font-size: 50px;
  top: 50%;
  left: 50%;
  margin-left: -25px;
  margin-top: -37.5px;
  z-index: 0;
}
body.template-frontpage #localizacao .mapa > .campus {
  display: none;
  z-index: 1;
  position: relative;
}
body.template-frontpage #localizacao .mapa > div.show {
  display: block;
}
body.template-frontpage #localizacao .shadow {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  background: #000;
  opacity: 0;
  transition: all 0.2s ease-in-out;
  z-index: 1;
}
body.template-frontpage #localizacao .mapa .map-details {
  position: absolute;
  text-align: center;
  font-size: 20px;
  color: #fff;
  vertical-align: middle;
  top: calc(50% - 10px);
  left: calc(50% - 110px);
  z-index: 2;
  opacity: 0;
}
body.template-frontpage #localizacao .mapa a:hover .shadow {
  opacity: 0.5;
}
body.template-frontpage #localizacao .mapa a:hover span {
  opacity: 1;
}
body.template-frontpage #localizacao .mapa-local a {
  color: #fff;
  font-size: 13px;
}
body.template-frontpage .modal-image {
  text-align: center;
}
body.template-frontpage .modal-image img {
  max-width: 100%;
  height: auto;
}
body.template-frontpage #endereco, body.template-frontpage #frontpage .central-telefonica {
  font-family: "ProximaNovaBold";
  font-size: 14px;
}
body.template-frontpage #endereco .fa, body.template-frontpage #frontpage .central-telefonica .fa {
  color: #6893c6;
  float: left;
  display: block;
  margin-top: 3px;
}
body.template-frontpage #endereco p, body.template-frontpage #frontpage .central-telefonica p {
  margin-left: 15px;
  line-height: 1.5;
}
body.template-frontpage #endereco p {
  display: none;
}
body.template-frontpage #endereco p.show {
  display: block;
}
body.template-frontpage #frontpage .central-telefonica .nome {
  font-size: 14px;
}
body.template-frontpage #frontpage .central-telefonica .telefone {
  font-size: 24px;
  display: block;
}
body.template-frontpage .ver-mais {
  text-align: right;
}

@media (max-width: 991px) {
  #noticias ul {
    margin-bottom: 15px !important;
  }
}
/* somente celular e tablet */
@media (max-width: 767px) {
  body.template-frontpage #frontpage h2.titulo {
    text-align: center;
    margin-bottom: 20px;
  }
  body.template-frontpage #endereco, body.template-frontpage .central-telefonica {
    width: 190px;
    margin-left: auto;
    margin-right: auto;
  }
  body.template-frontpage #escolha-mapa {
    width: 200px;
    margin-left: auto;
    margin-right: auto;
  }
  body.template-frontpage #editais-lista {
    display: none;
  }
  body.template-frontpage .ver-mais {
    text-align: center;
    margin-bottom: 15px;
  }
  body.template-frontpage .ancoras {
    display: none;
  }
}
@media (max-width: 575px) {
  #noticias .destaque .data {
    position: absolute;
    bottom: 0;
    padding: 15px !important;
  }
  #noticias .destaque .titulo {
    color: #fff !important;
    font-size: 30px !important;
  }
  #noticias .destaque .overlay {
    content: "";
    right: 0;
    bottom: 0;
    top: inherit !important;
    height: 80% !important;
    background: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0.8)), to(transparent));
    background: -o-linear-gradient(bottom, rgba(0, 0, 0, 0.8), transparent);
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.8), transparent);
  }
  #noticias .destaque .overlay .shadow {
    display: none;
  }
  #noticias .destaque .overlay .more {
    display: none;
  }
  #noticias ul {
    margin-top: 10px !important;
  }
}
body.contrast {
  background: #000;
}
body.contrast ::placeholder {
  color: #fff;
}
body.contrast #footer,
body.contrast #site,
body.contrast #portal-breadcrumbs,
body.contrast #left-column,
body.contrast #noticias,
body.contrast #cursos,
body.contrast #editais,
body.contrast #agenda,
body.contrast #localizacao,
body.contrast #videos,
body.contrast #barra-brasil,
body.contrast #menu {
  background-color: #000 !important;
  color: #fff !important;
}
body.contrast #left-column {
  border-right: 1px solid #fff;
}
body.contrast #left-column .card {
  border: none;
}
body.contrast #header {
  border-bottom: 1px solid #fff;
  padding-bottom: 9px;
}
body.contrast #site {
  margin-top: 0;
}
body.contrast #footer {
  border-top: 1px solid #fff;
}
body.contrast .card {
  background-color: #000;
  border: 1px solid #fff;
  color: #ffffff !important;
}
body.contrast .card .text-muted {
  color: #fff;
}
body.contrast .text-bg-main {
  background-color: #fff;
  color: #000;
}
body.contrast #content-core a, body.contrast #content-core a:not(.btn) {
  color: #fff;
}
body.contrast #content-core a:hover, body.contrast #content-core a:not(.btn):hover {
  color: yellow !important;
}
body.contrast #content-core table, body.contrast #content-core td, body.contrast #content-core tr, body.contrast #content-core th {
  background-color: #000;
  color: #fff;
}
body.contrast .site-actions a:after {
  border-bottom-color: #fff !important;
}
body.contrast .social a {
  color: #000;
}
body.contrast .social a:hover {
  background-color: #000 !important;
}
body.contrast #searchGadget_form .searchField {
  background: #000;
  opacity: 1;
  color: #fff;
  border: 1px solid #fff;
}
body.contrast #menu > ul > li:not(.shortcut) {
  background-color: #000 !important;
  border: 1px solid #000;
}
body.contrast #menu > ul > li:not(.shortcut).inPath, body.contrast #menu > ul > li:not(.shortcut):hover {
  border-color: #fff;
}
body.contrast #menu > ul > li:not(.shortcut) > ul {
  background-color: #000 !important;
  border: 1px solid #fff;
}
body.contrast #menu > ul > li:not(.shortcut) > ul > li:hover {
  background-color: #000 !important;
}
body.contrast #menu > ul > li:not(.shortcut) > ul > li:hover ul {
  border: 1px solid #fff;
}
body.contrast #menu > ul > li:not(.shortcut) > ul > li.inPath {
  background-color: #000 !important;
}
body.contrast #menu > ul > li:not(.shortcut) > ul > li > ul {
  background-color: #000 !important;
}
body.contrast #menu > ul > li:not(.shortcut) > ul > li > ul > li:hover, body.contrast #menu > ul > li:not(.shortcut) > ul > li > ul > li.inPath {
  background-color: #000 !important;
}
body.contrast #menu > ul > li:not(.shortcut) > ul > li > ul > li a {
  color: #fff !important;
}
body.contrast #menu > ul > li:not(.shortcut) > ul > li > ul > li a:hover {
  background-color: #000 !important;
}
body.contrast #portal-breadcrumbs a, body.contrast #portal-breadcrumbs span {
  color: #fff;
}
body.contrast #portal-breadcrumbs .breadcrumb {
  --bs-breadcrumb-bg: #000;
}
body.contrast #portal-breadcrumbs .breadcrumb-item {
  color: #fff;
}
body.contrast #portal-breadcrumbs .breadcrumb-item:before {
  color: #fff;
}
body.contrast .emec {
  background-color: #000;
  --emec-color: #fff;
}
body.contrast #carroussel .dados .titulo, body.contrast #carroussel .dados .descricao {
  background-color: #000;
}
body.contrast #carroussel .pontos .glider-dot.active {
  background: #fff;
}
body.contrast .btn {
  --bs-btn-color: #fff;
  --bs-btn-bg: #000;
  --bs-btn-hover-bg: #000;
}
body.contrast .dropdown-menu {
  --bs-dropdown-bg: #000;
  --bs-dropdown-link-hover-bg: #000;
}
body.contrast .dropdown-menu a.dropdown-item {
  color: #fff !important;
}
body.contrast .pagination .page-item.active .page-link {
  --bs-pagination-active-bg: #000;
  --bs-pagination-active-border-color: #fff;
  color: yellow !important;
}
body.contrast .pagination .page-link {
  --bs-pagination-bg: #000;
  --bs-pagination-hover-bg: #000;
  color: #fff !important;
}
body.contrast #noticias .ufal .titulo, body.contrast #noticias .estudante .titulo, body.contrast #noticias .servidor .titulo, body.contrast #noticias .transparencia .titulo {
  color: #fff !important;
}
body.contrast #noticias .ufal .pretty_date, body.contrast #noticias .estudante .pretty_date, body.contrast #noticias .servidor .pretty_date, body.contrast #noticias .transparencia .pretty_date {
  color: #fff !important;
  background: #000 !important;
  border: 1px solid #fff;
}
body.contrast #noticias .ufal ul, body.contrast #noticias .estudante ul, body.contrast #noticias .servidor ul, body.contrast #noticias .transparencia ul {
  border-color: #fff !important;
}
body.contrast #noticias .ufal ul .data, body.contrast #noticias .ufal ul a.titulo, body.contrast #noticias .estudante ul .data, body.contrast #noticias .estudante ul a.titulo, body.contrast #noticias .servidor ul .data, body.contrast #noticias .servidor ul a.titulo, body.contrast #noticias .transparencia ul .data, body.contrast #noticias .transparencia ul a.titulo {
  color: #fff !important;
}
body.contrast #noticias .ufal ul .data:hover, body.contrast #noticias .ufal ul a.titulo:hover, body.contrast #noticias .estudante ul .data:hover, body.contrast #noticias .estudante ul a.titulo:hover, body.contrast #noticias .servidor ul .data:hover, body.contrast #noticias .servidor ul a.titulo:hover, body.contrast #noticias .transparencia ul .data:hover, body.contrast #noticias .transparencia ul a.titulo:hover {
  color: yellow !important;
}
body.contrast #noticias .ufal .main:hover, body.contrast #noticias .estudante .main:hover, body.contrast #noticias .servidor .main:hover, body.contrast #noticias .transparencia .main:hover {
  --ufal-main-color: #fff;
}
body.contrast #frm-editais {
  background: #000;
  border: 1px solid #fff;
}
body.contrast #frm-editais input[type=submit] {
  background: #000;
  border: 1px solid #fff;
}
body.contrast #editais-lista, body.contrast #eventos {
  background: #000;
  border: 1px solid #fff;
}
body.contrast .lista-seta li {
  background-color: #000;
  border: 1px solid #fff;
}
body.contrast .lista-seta li .seta {
  background: #000;
}
body.contrast .lista-seta li * {
  color: #fff !important;
}
body.contrast #agenda .fc-widget-header {
  background-color: #000;
}
body.contrast #agenda .fc-list-item:hover td {
  background-color: #000;
}
body.contrast #agenda span {
  color: #fff !important;
}
body.contrast #agenda .fc-prev-button, body.contrast #agenda .fc-next-button {
  background: #000;
  border: 1px solid #fff;
}
body.contrast #agenda .fc-prev-button:hover, body.contrast #agenda .fc-next-button:hover {
  background: #000;
}
body.contrast table.calendario th {
  color: #fff;
}
body.contrast table.calendario td.event {
  background-image: radial-gradient(#fff 50%, rgba(0, 0, 0, 0) 53%) !important;
  color: #000 !important;
}
body.contrast #escolha-mapa .selected {
  background-color: #000;
  border: 1px solid #fff;
}
body.contrast #escolha-mapa ul.show {
  background-color: #000;
  border: 1px solid #fff;
}
body.contrast #escolha-mapa ul.show a:hover {
  background-color: #000;
}
body.contrast #localizacao .fa {
  color: #fff !important;
}
body.contrast .links-uteis a {
  background: #000 !important;
  border: 1px solid #fff;
}
body.contrast .portletNavigationTree a:hover {
  background: #000 !important;
}
body.contrast .descriptionView .title {
  background: #000 !important;
  border: 1px solid #fff;
}
body.contrast .buttonView a {
  background: #000 !important;
  border: 1px solid #fff;
}
body.contrast .lista-detalhe .imagem, body.contrast .lista-detalhe .detalhe {
  background: #000;
}
body.contrast .lista-detalhe .data, body.contrast .lista-detalhe .titulo, body.contrast .lista-detalhe .descricao {
  color: #fff !important;
}
body.contrast .lista-detalhe .titulo:hover {
  color: #fff !important;
}
body.contrast.template-search #content {
  border-top-color: #fff;
}
body.contrast #searchform .autotoc-nav {
  background-color: #000 !important;
  border-bottom: 1px solid #fff;
}
body.contrast #searchform .autotoc-nav a {
  background-color: #000 !important;
  margin-bottom: -1px;
}
body.contrast #searchform .autotoc-nav a.active {
  border: 1px solid #fff;
}
body.contrast #frm-editais input, body.contrast #frm-editais select {
  background: #000;
  border: 1px solid #fff;
  color: #fff;
}
body.contrast .simplebar-scrollbar {
  background-color: #fff;
}
body.contrast nav#category ul li a {
  background-color: #000;
  border: 1px solid #fff;
}
body.contrast nav#category ul li a:hover {
  background-color: #000;
}
body.contrast input[type=text],
body.contrast input[type=password],
body.contrast input[type=email],
body.contrast select, body.contrast textarea {
  background: #000 1px !important;
  color: #fff !important;
  border: 1px solid #fff !important;
}
body.contrast .standalone, body.contrast .context, body.contrast .destructive, body.contrast [type=submit], body.contrast button {
  background-color: #000;
  border-color: #fff;
}
body.contrast .standalone:hover, body.contrast .context:hover, body.contrast .destructive:hover, body.contrast [type=submit]:hover, body.contrast button:hover {
  background-color: #000;
  border-color: #fff;
}
body.contrast .formControls {
  background: #000;
}
@media (max-width: 767px) {
  body.contrast #menu .shadow {
    background-color: #000;
  }
  body.contrast #menu .close {
    color: #fff;
  }
  body.contrast #menu ul, body.contrast #menu li {
    border: none !important;
  }
  body.contrast #menu a {
    color: #fff !important;
  }
  body.contrast #menu a:after {
    color: #fff !important;
  }
  body.contrast #header .site-actions {
    background-color: #000 !important;
    border-top: 1px solid #fff;
  }
  body.contrast #header .site-actions a {
    background-color: #000 !important;
    border: 1px solid #fff;
    color: #fff !important;
  }
}

/*# sourceMappingURL=tematico.css.map */
