@charset "UTF-8";

:root {
  --main-color: #8fbe22;
  --bg-body: #f2f5fa;
  --list-main-color: rgba(143, 190, 34, 0.8);
  --list-second-color: rgb(90, 90, 90);
  --header-color: #8099b4;

  --nav-height: 75px;
}

body {
  font-size: 17px;
}

*::-moz-selection,
*::selection {
  background-color: var(--main-color);
  color: white;
}

button::selection,
button::-moz-selection {
  background-color: transparent;
  color: inherit;
}

h1,
h2,
h3,
h4,
h5 {
  color: var(--header-color);
  margin: 0;
  text-transform: uppercase;
}

h1 {
  margin-top: calc(var(--nav-height) + 1rem);
  font-size: 2.5rem;
}

h2 {
  font-size: 1.75rem;
  font-weight: 100;
  padding: 0 0 5px 0;
}

h3 {
  font-size: 1.35rem;
  font-weight: 100;
}

.article__content h2 {
  margin-top: 1.1rem;
  font-size: 1.25rem;
}

a {
  color: Black;
  transition: color 0.75s ease;
}

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

.text-green {
  color: var(--main-color);
}

.text-bold {
  font-weight: bold;
}

.active_item {
  color: white;
  background-color: var(--main-color);
}

.w-max-full {
  max-width: 100% !important;
}

.logo-250 {
  max-width: 250px;
}

.login--fpe {
  height: 30px;
  cursor: default;
}

img {
  max-width: 100%;
  max-height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

.web__banner {
  margin-top: calc(75px + 30px);
}

.web__banner img {
  width: 100%;
}

body {
  color: Black;
  background-color: var(--bg-body);
  font-family: "Roboto Condensed", sans-serif;
  margin-bottom: 0 !important;
}

main {
  min-height: calc(100vh - 201px);
  display: flex;
  justify-content: center;
  align-items: center;
}

main>div {
  width: 100%;
}

main a {
  font-weight: bold;
}

.header {
  position: fixed;
  width: 100%;
  margin: 0;
  padding: 0;
  text-align: left;
  background: #fff;
  box-sizing: border-box;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
  z-index: 98;
  top: 0;
  transition: top 0.5s ease-in-out;
  -webkit-transition: top 0.5s ease-in-out;
}

.header.hidden {
  display: block;
  top: -200px;
}

.header>div {
  z-index: 99;
  width: 100%;
}

.header .header__admin {
  height: 30px;
  color: white;
  background: var(--main-color);
}

.header .header__admin div {
  height: 100%;
}

.header .header__admin div[x-show=open] {
  height: auto;
}

.header .header__admin .header__admin__menu {
  display: flex;
  align-items: center;
}

.header .header__admin .header__admin__menu .submenu a {
  margin-right: 10px;
}

.header .header__admin .header__admin__menu a {
  color: white;
}

.header .header__admin .header__admin__menu a.text-green {
  color: var(--main-color);
}

.header .header__admin .header__admin__menu a.text-green:hover,
.header .header__admin .header__admin__menu a .text-green:focus {
  background-color: var(--main-color);
  color: white;
}

.header .header__nav {
  height: var(--nav-height);
  transition: 0.8s ease;
  background: white;
}

.header .header__nav>* {
  height: 100%;
  display: flex;
  align-items: center;
}

.header .header__nav .header__nav__menu {
  width: calc(100% - 100px);
}

.header .header__nav .header__nav__menu ul {
  display: flex;
  justify-content: flex-end;
  width: 100%;
}

.header .header__nav .header__nav__menu ul li {
  color: var(--main-color);
  text-transform: uppercase;
  font-size: 1.25rem;
  font-weight: bold;
  padding: 0 25px;
}

.header .header__nav .header__nav__menu ul li:last-child {
  padding-right: 0;
}

.header .header__nav .header__nav__menu ul li a {
  color: var(--main-color);
  transition: none;
}

.header .header__nav .header__nav__menu.overlay {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.5019607843);
}

.header .header__nav .header__nav__menu.overlay ul {
  display: block;
  padding-top: 15px;
  max-width: 320px;
  height: 100%;
  background-color: #fff;
  transition: 0.25s all ease;
}

.header .header__nav .header__nav__menu.overlay ul li {
  padding: 5px 25px;
}

.header .header__nav .header__nav__menu.overlay ul li a {
  display: block;
  width: 100%;
}

.header .header__nav.sticky {
  margin-top: -30px;
  height: 75px;
}

button#navigation--button {
  z-index: 99;
  display: hidden;
}

@media (max-width: 945px) {
  button#navigation--button {
    display: block;
  }

  .header .header__nav .header__nav__menu ul {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    height: 100%;
  }

  .header .header__nav .header__nav__menu ul li {
    margin: 0;
    padding: 0;
    font-size: 1.5rem;
  }

  .header .header__nav .header__nav__menu {
    position: fixed;
    width: 100% !important;
    height: 100%;
    top: -100%;
    left: 0;
    background-color: rgba(255, 255, 255, 0.8);
    z-index: 98;
    transition: top 1.5s ease;
  }

  .header .header__nav .header__nav__menu.flex {
    top: 0 !important;
  }
}

footer {
  width: 100%;
  margin-top: 15px;
  font-size: .9rem;
  box-sizing: border-box;
}

footer .footer--green {
  color: white;
  background: var(--main-color);
}

footer .footer--green a {
  color: white;
}

footer .footer--green a:hover {
  color: white;
}

footer .footer--link {
  margin-right: 15px;
}

footer .footer--link a {
  color: #173868;
  font-size: 1.15rem;
  font-weight: normal;
}

.avatar {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.avatar .avatar__image {
  background-color: var(--main-color);
  width: 95px;
  height: 95px;
  justify-content: center;
  align-items: center;
  color: white;
  clip-path: polygon(50% 0%, 83% 12%, 100% 43%, 94% 78%, 68% 100%, 32% 100%, 6% 78%, 0% 43%, 17% 12%);
}

.avatar .avatar__no-image {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}

/*.avatar .avatar__image img { } */

.avatar__info {
  display: flex;
  gap: 1rem;
}

.avatar .avatar__name {
  color: var(--main-color);
  font-size: 1.1rem;
  font-weight: bolder;
}

section.article {
  margin: 35px 0;
}

.article__title {
  position: relative;
}

.article__title h2 {
  color: var(--header-color);
  font-weight: 100;
  line-height: 2.2rem;
  font-size: 2rem;
  margin: 0;
  text-transform: uppercase;
}

span.anchor {
  width: 1px;
  height: 1px;
  position: absolute;
  top: calc(-5px - var(--nav-height));
}

.article__content {
  width: 100%;
  background-color: White;
}

.article__content.bg-transparent {
  background-color: transparent;
}

.article__content ol,
.article__content ul {
  margin-left: 0.5rem;
  padding-left: 0.7rem;
}

.article__content ol {
  list-style: decimal;
}

.article__content ul {
  list-style: disc;
}

.article__content ol li {
  margin: 6px 0;
  line-height: 1.7rem;
}

.article__content ol li::marker {
  font-weight: bold;
}

.article__content ol li>span {
  color: black;
  font-weight: normal;
  display: block;
  text-align: justify;
  margin-left: 0.3rem;
}

.article__content p {
  line-height: 2em;
  text-align: justify;
  margin-bottom: 10px;
}

.article__content p:last-child {
  margin-bottom: 0;
}

.article__content h3 {
  font-size: 1.25rem;
  font-weight: bolder;
}

.article__content>ul {
  margin-bottom: 10px;
}

.article__content.bg-transparent {
  background-color: transparent !important;
}

.article__content .article__content--list {
  display: flex;
  flex-wrap: wrap;
}

.article__content .article__content--list .list__item {
  padding-top: .5rem;
  padding-bottom: .5rem;
}

.article__content .article__content--list .list__item:nth-child(even) {
  padding-left: .5rem;
}

.article__content .article__content--list .list__item:nth-child(odd) {
  padding-right: .5rem;
}

@media (max-width:1024px) {
  .article__content .article__content--list .list__item:nth-child(even),
  .article__content .article__content--list .list__item:nth-child(odd) {
    padding-right: 0px !important;
    padding-left: 0px !important;
  }
}

.list__item .list__content{
  background-color: white;
}

.article__content .article__content--list ul {
  padding-left: 0;
  margin: 0;
}

.article__content .article__content--list ul li {
  padding-left: 35px;
}

.breadcrumbs--green {
  background-color: var(--main-color);
}

.breadcrumbs--green .link--crumb {
  color: var(--bg-body);
}

.breadcrumbs--green .link--crumb:hover,
.breadcrumbs--green .link--crumb:focus {
  color: var(--bg-body);
  text-decoration: underline;
}

.card {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 300px;
  background-position: center;
  background-size: cover;
  position: relative;
  z-index: -2;
}

.links--flex {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 5rem
}

.links--flex a {
  line-height: 2rem;
  background-color: var(--main-color);
  border: 2px solid var(--main-color);
  color: #fff;
  font-size: 1rem;
  width: 24%;
  text-align: center;
}

@media (max-width: 1100px) {
  .links--flex a {
    width: 30%;
  }
}

@media (max-width: 900px) {
  .links--flex a {
    width: 45%;
  }
}

@media (max-width: 650px) {
  .links--flex a {
    width: 80%;
  }
}

@media (max-width: 456px) {
  .links--flex a {
    width: 100%;
  }
}

.links--flex a:hover {
  background-color: White;
  color: var(--main-color);
}

.card::before {
  content: "";
  background-color: var(--main-color);
  opacity: 0.75;
  position: absolute;
  inset: 0px;
  z-index: -1;
}

.card .card__content {
  text-align: center;
  color: white;
  width: 100%;
}

button,
a.button--link {
  border: 2px solid var(--main-color);
  color: var(--main-color);
  font-weight: bolder;
  outline: none;
  cursor: pointer;
}

button:hover,
a.button--link:hover {
  color: white;
  background-color: var(--main-color);
}

button:focus,
a.button--link:focus {
  outline: 1px dotted;
  outline: 5px auto var(--main-color);
}

button:disabled,
a.button--link:disabled {
  opacity: 0.7;
  border-color: var(--list-second-color);
  cursor: not-allowed;
  color: var(--list-second-color);
  outline: none;
  background-color: White;
}

button:disabled:hover,
a.button--link:disabled:hover {
  background-color: White;
}

button.close,
a.button--link.close {
  border: none;
  position: absolute;
  right: 5px;
  top: 0;
}

button.close:hover,
a.button--link.close:hover {
  background-color: white;
  color: var(--list-second-color);
}

button.close:focus,
a.button--link.close:focus {
  outline: none;
}

button#user:hover,
a.button--link#user:hover {
  background-color: transparent;
}

input:focus,
textarea:focus,
select:focus {
  border-color: var(--main-color) !important;
}

input[type=color],
textarea[type=color],
select[type=color] {
  height: 42px;
}

.input__wrapper {
  display: flex;
  width: 100%;
}

.input__wrapper .label--inline {
  display: flex;
  align-items: center;
  margin-right: 10px;
}

li[role=tab] {
  color: var(--main-color);
  font-weight: bold;
  padding: 0.5rem;
  cursor: pointer;
}

li[role=tab]:hover {
  background-color: White;
}

li[role=tab].ui-active {
  color: white;
  background-color: var(--main-color);
}


.dot {
  animation: blink 2s infinite;
}

@keyframes blink {
  0% {
    opacity: 0;
  }

  50% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}

section nav[role=navigation] {
  margin-top: 1rem;
}

.practision {
  position: relative;
  width: 100%;
  padding: 0px;
  margin-bottom: 1.25rem;
}

.document-size,
.document-date {
  display: flex;
  align-content: center;
  justify-content: center;
  flex-wrap: wrap;
  font-size: small;
  color: var(--list-second-color);
  margin-left: 0.5rem;
}

.document-name {
  text-transform: uppercase;
  text-decoration: underline;
}

.document-type {
  color: White;
  padding: 0 0.6rem;
}

ul.anchor li {
  line-height: 21px;
  background-color: var(--main-color);
  border: 2px solid var(--main-color);
  margin: 10px 0 !important;
  font-size: 1rem;
}

ul.anchor li:hover {
  background-color: white;
}

ul.anchor li:hover a {
  color: var(--main-color);
}

ul.anchor li a {
  display: block;
  width: 100%;
  padding: 10px 20px;
  color: white;
}

ul.anchor li::before {
  content: none !important;
}

.table__harmonogram {
  border-collapse: separate;
  border-spacing: 0 0.5em;
}

.table__harmonogram thead th {
  background: var(--main-color);
  line-height: 2rem;
  color: white;
}

.table__harmonogram tbody tr {
  line-height: 1.1rem;
}

.table__harmonogram tbody tr:nth-child(even) {
  background: rgba(143, 190, 34, 0.4);
}

.table__harmonogram tbody tr:nth-child(odd) {
  background-color: white;
}

.table__harmonogram tbody tr:last-child td {
  border-bottom: 2px solid rgba(143, 190, 34, 0.4) !important;
}

.table__harmonogram tbody tr td {
  padding: 10px 0;
}

.table__harmonogram tbody tr td:first-child {
  font-weight: bold;
}

.div__harmonogram>.article__content>strong {
  font-size: 1.25rem;
}

.div__harmonogram>div>ul,
.div__harmonogram>div>ul>li {
  list-style: none;
  margin: 0;
  padding: 0;
}

.div__harmonogram ul li ul {
  list-style: disc;
  padding-left: 1.5rem;
}

.div__harmonogram ul li ul li:nth-child(odd)::marker,
.article__content ul li:nth-child(odd)::marker,
.article__content ol li:nth-child(even)::marker {
  color: var(--list-second-color);
}

.div__harmonogram ul li ul li:nth-child(even)::marker,
.article__content ul li:nth-child(even)::marker,
.article__content ol li:nth-child(odd)::marker {
  color: var(--list-main-color);
}

.header__nav__logo {
  display: flex;
  justify-content: center;
  width: 70px;
  max-height: 100%;
  z-index: 99;
}

.header__nav__logo .hidden {
  display: none;
}

.header__nav__logo .flex {
  display: flex;
}

@media screen and (min-width: 1200px) {
  .header__nav__logo {
    width: 180px;
  }

  .header__nav__logo img.lg_flex {
    display: flex;
  }

  .header__nav__logo img.lg_hidden {
    display: none;
  }
}

@media print {

  header,
  section.web__banner,
  div.breadcrumbs--green,
  main,
  footer section,
  footer>#modal {
    display: none;
  }
}

.border-animated {
  border-left: 5px solid red;
  border-right: 5px solid red;
  animation: border-flash linear infinite;
  animation-duration: 2s;
}

@keyframes border-flash {
  50% {
    border-left-color: rgba(255, 0, 0, 0.2);
    border-right-color: rgba(255, 0, 0, 0.2);
  }
}
