@import url(https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600&display=swap);
@import url(https://fonts.googleapis.com/css2?family=Lato:wght@400;700&display=swap);
@import url(https://fonts.googleapis.com/css2?family=Bebas+Neue&display=swap);
/**
 * General reset
 */
html {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  scroll-behavior: smooth;
  /**
  * Custom scrollbar
  */
  /**
  * Custom selection color
  */
}
html::-webkit-scrollbar {
  width: 1.6rem;
}
html::-webkit-scrollbar-track {
  background-color: #fff;
}
html::-webkit-scrollbar-thumb {
  background-color: #13a14e;
  outline: none;
  border-radius: 0rem;
}
html ::-moz-selection {
  background-color: #cfcfcf;
  color: #fff;
}
html ::selection {
  background-color: #cfcfcf;
  color: #fff;
}

html,
body {
  font-size: 62.5%;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

body {
  font-size: 1.6rem;
}
body main {
  flex: 1;
}

/**
 * Bootstrap reset
 */
.tooltip {
  font-size: 16px;
}
.tooltip .tooltip-arrow::before {
  border-right-color: rgba(58, 58, 58, 0.9);
}
.tooltip .tooltip-inner {
  padding: 8px 16px;
  background-color: rgba(58, 58, 58, 0.9);
  border-radius: 4px;
}

img {
  -webkit-user-drag: none;
}
img.px {
  -ms-interpolation-mode: nearest-neighbor;
      image-rendering: -moz-crisp-edges;
      image-rendering: pixelated;
}
img.aa {
  image-rendering: -webkit-optimize-contrast;
  image-rendering: -moz-crisp-edges;
  image-rendering: -o-crisp-edges;
  image-rendering: crisp-edges;
  image-rendering: optimize-contrast;
  -ms-interpolation-mode: nearest-neighbor;
}

a {
  text-decoration: none;
  color: #13a14e;
}

ul {
  list-style: none;
}

/* Animations */
@-webkit-keyframes floating {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(15px);
  }
  100% {
    transform: translateY(0);
  }
}
@keyframes floating {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(15px);
  }
  100% {
    transform: translateY(0);
  }
}
/* Helpers */
.up {
  text-transform: uppercase;
}

.greyscale {
  filter: grayscale(100%);
}

[disabled]:hover {
  cursor: not-allowed;
}

/* Buttons */
button {
  all: unset;
}

.btn {
  padding: 12px 16px;
  font-size: 16px;
}

.form-control:focus {
  box-shadow: none;
}

* {
  font-family: "Montserrat", sans-serif;
}

h1 {
  font-size: calc(1vw + 1.5rem);
}

h2 {
  font-size: calc(1vw + 1.3rem);
}

h3 {
  font-size: calc(1vw + 1.2rem);
}

p {
  font-size: calc(1vw + 0.2rem);
}

@media (max-width: 1399.98px) {
  p {
    font-size: calc(1vw + 0.4rem);
  }
}
@media (max-width: 1199.98px) {
  p {
    font-size: calc(1vw + 0.6rem);
  }
}
@media (max-width: 991.98px) {
  p {
    font-size: calc(1vw + 0.8rem);
  }
}
@media (max-width: 767.98px) {
  p {
    font-size: calc(1vw + 0.9rem);
  }
}
@media (max-width: 575.98px) {
  p {
    font-size: calc(1vw + 1rem);
  }
  h1,
h2,
h3,
h4,
p {
    text-align: center;
  }
}
.text-primary {
  color: #13a14e !important;
}

.bg-primary {
  background-color: #13a14e !important;
}

.text-secondary {
  color: #cfcfcf !important;
}

.bg-secondary {
  background-color: #cfcfcf !important;
}

.text-white {
  color: #ffffff !important;
}

.bg-white {
  background-color: #ffffff !important;
}

.text-zinc-200 {
  color: #d6d6d6 !important;
}

.bg-zinc-200 {
  background-color: #d6d6d6 !important;
}

.text-zinc-500 {
  color: #838181 !important;
}

.bg-zinc-500 {
  background-color: #838181 !important;
}

.text-blue-300 {
  color: #165fad !important;
}

.bg-blue-300 {
  background-color: #165fad !important;
}

.text-blue-500 {
  color: #043e7b !important;
}

.bg-blue-500 {
  background-color: #043e7b !important;
}

.progress-bar-component {
  max-width: 960px;
  margin: 0 auto;
  padding: 2rem 0;
  font-family: "Exo", sans-serif;
  color: #4b4b4b;
  counter-reset: step-count;
}
.progress-bar-component .progress-bar {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(20px, 1fr));
  background-color: transparent !important;
}
.progress-bar-component .progress-step {
  text-align: center;
  position: relative;
}
.progress-bar-component .progress-step:before, .progress-bar-component .progress-step:after {
  background-color: #13a14e;
  content: "";
  height: 2px;
  position: absolute;
  z-index: -1;
  top: 15px;
}
.progress-bar-component .progress-step:after {
  left: 50%;
  width: 100%;
}
.progress-bar-component .progress-step:last-of-type.is-active:after {
  background-color: #13a14e;
}
@media screen and (min-width: 640px) {
  .progress-bar-component .progress-step:first-of-type:before {
    right: 50%;
    width: 50%;
  }
}
@media screen and (max-width: 640px) {
  .progress-bar-component .progress-step:first-of-type:before, .progress-bar-component .progress-step:last-of-type:after {
    background-color: white !important;
  }
}
.progress-bar-component .progress-step:last-of-type:after {
  left: 50%;
  width: 50%;
}
.progress-bar-component .progress-step .step-count {
  background-color: #13a14e;
  height: 30px;
  width: 30px;
  margin: 0 auto;
  border-radius: 50%;
  color: white;
  line-height: 30px;
  z-index: 100;
  border: 7px solid rgb(20, 20, 20);
  font-size: 1.2rem;
  font-weight: 500;
}
.progress-bar-component .progress-step .step-count:before {
  counter-increment: step-count;
  content: counter(step-count);
  position: absolute;
  top: 0px;
  left: 49%;
  font-weight: 600;
}
.progress-bar-component .progress-step.is-active .step-description {
  font-weight: 500;
}
.progress-bar-component .progress-step.is-active:after {
  background-color: #252525;
}
.progress-bar-component .progress-step.is-active ~ .progress-step .step-count {
  background-color: #252525;
}
.progress-bar-component .progress-step.is-active ~ .progress-step:after {
  background-color: #252525;
}
.progress-bar-component .step-description {
  font-size: 1rem;
}

.btn-flat, .btn-theme {
  display: inline-block;
  border-radius: 4px;
  padding: 12px 16px;
  border: none;
  transition: 0.2s ease-in-out;
  font-size: 16px;
}

/**
 * Solid button
 */
.btn-theme {
  background-color: #13a14e;
  color: #fff;
  box-shadow: 2px 3px 8px rgba(0, 0, 0, 0.25);
}
.btn-theme:hover {
  background-color: #16b859;
  box-shadow: 2px 8px 16px rgba(0, 0, 0, 0.3);
}
.btn-theme:active {
  background-color: #18cf64;
}
.btn-theme:focus-visible {
  background-color: #33e77e;
}

/**
 * Flat button
 */
.btn-flat {
  background-color: transparent;
  color: #202020;
  box-shadow: none;
}
.btn-flat:hover {
  background-color: rgba(0, 0, 0, 0.1);
  color: #202020;
}
.btn-flat:active {
  background-color: rgba(0, 0, 0, 0.2);
  color: #202020;
}
.btn-flat:focus-visible {
  background-color: rgba(0, 0, 0, 0.2);
}

.card {
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
  border-radius: 16px;
  padding: 16px;
}
.card .card-content {
  padding: 24px;
}
.card .card-actions {
  padding-top: 16px;
  padding-bottom: 16px;
  border-top: 1px solid rgba(197, 197, 197, 0.8);
  margin-top: 24px;
  text-align: right;
}

.layer-bredi {
  background-color: #043e7b;
}
.layer-bredi a,
.layer-bredi span {
  color: white;
  font-size: 1.2rem;
}
.layer-bredi .wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
}
.layer-bredi .wrapper small {
  color: white;
  font-size: 1.4rem;
}
.layer-bredi .wrapper .fab {
  font-size: 22px;
}

.modal-theme .modal-dialog .modal-content {
  font-size: 1.6rem;
  padding: 1.6rem;
  border-radius: 1rem;
}

.swiper {
  height: 142px;
}
.swiper .swiper-slide {
  background-size: cover;
  background-repeat: no-repeat;
  /* Center slide text vertically */
  display: flex;
  justify-content: center;
  align-items: center;
}
.swiper .swiper-slide .swiper-img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
}
.swiper .swiper-slide .swiper-title-wrapper .title {
  font-size: 4rem;
  font-family: "hk-bold-italic";
}
.swiper .swiper-slide .swiper-title-wrapper .subtitle-wrapper {
  display: flex;
  flex-direction: column;
  font-size: 4rem;
  border-left: 2px solid #FC4547;
  padding: 0.3rem 1rem;
}
.swiper .swiper-button-prev, .swiper .swiper-button-next {
  padding: 5rem 2.5rem;
}
.swiper .swiper-button-prev::after, .swiper .swiper-button-next::after {
  font-size: 25px;
}
.swiper .swiper-button-prev {
  left: 0;
  border-radius: 0 5px 5px 0;
}
.swiper .swiper-button-next {
  right: 0;
  border-radius: 5px 0 0 5px;
}

.theme_header {
  background-color: #165fad;
  background-image: url("/img/bg-header.png");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
.theme_header .header_content h1 {
  font-size: 1.6rem;
  font-weight: 400;
  color: #ffffff;
}
.theme_header .header_content h2 {
  font-size: 3.2rem;
  font-weight: 600;
  color: #ffffff;
}
.theme_header .img-wrapper {
  width: 120px;
  padding: 1rem;
  aspect-ratio: 1;
  border-radius: 50%;
  background-color: #ffffff;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0px 0px 12px 2px rgba(0, 0, 0, 0.05);
}

.theme_welcome {
  display: grid;
  place-items: center;
}
.theme_welcome .theme_welcome_content {
  max-height: 600px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 220px;
}
.theme_welcome .theme_welcome_content p {
  text-align: center;
  font-weight: 600;
  color: #043e7b;
}
.theme_welcome .theme_welcome_content a {
  background-color: #165fad;
  color: #ffffff;
  font-size: 1.6rem;
  padding: 1rem 3rem;
  transition: all 0.2s ease;
}
.theme_welcome .theme_welcome_content a:hover {
  background-color: #043e7b;
}

.theme_menu .nav-link {
  background-color: #165fad;
  color: #ffffff;
  font-size: 1.4rem;
  padding: 1rem 3rem;
  max-width: 220px;
}
.theme_menu .nav-link.active {
  background-color: #043e7b;
}
.theme_menu .form-floating label {
  font-size: 1.6rem;
}
.theme_menu .form-floating input,
.theme_menu .form-floating textarea {
  padding-top: 14px;
  font-size: 1.6rem;
}
.theme_menu .form-floating .form-control {
  height: auto;
}
.theme_menu .form-floating .form-control:focus {
  border-color: #043e7b;
}
.theme_menu .form-floating .form-floating > .form-control:not(:-moz-placeholder-shown) {
  padding-top: 2rem;
}
.theme_menu .form-floating .form-floating > .form-control:not(:-ms-input-placeholder) {
  padding-top: 2rem;
}
.theme_menu .form-floating .form-floating > .form-control:focus,
.theme_menu .form-floating .form-floating > .form-control:not(:placeholder-shown) {
  padding-top: 2rem;
}
.theme_menu .tab-content {
  width: 50%;
}
@media (max-width: 575.98px) {
  .theme_menu .tab-content {
    width: 100%;
  }
}
.theme_menu .form_title {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 900;
  font-size: 16px;
  line-height: 150%;
  color: #838181;
}
.theme_menu .form_title.head_title {
  font-size: 22px;
  background: #043e7b;
  color: #fff;
  padding: 4px 8px;
  border-radius: 0.25rem;
}
.theme_menu .form-check-input:checked {
  background-color: #043e7b;
  border-color: #d6d6d6;
}

.form-floating > .form-control:not(:-moz-placeholder-shown) {
  padding-top: 2.625rem;
}

.form-floating > .form-control:not(:-ms-input-placeholder) {
  padding-top: 2.625rem;
}

.form-floating > .form-control:focus,
.form-floating > .form-control:not(:placeholder-shown) {
  padding-top: 2.625rem;
}

.tab_login_registro {
  max-width: 450px;
  margin: 0 auto;
}
.tab_login_registro .nav-item {
  width: 50%;
}
.tab_login_registro .nav-item .nav-link {
  width: 100%;
  text-align: center;
  color: #c2c2c2;
  font-weight: 600;
  border-bottom: 2px solid #c2c2c2;
}
.tab_login_registro .nav-item .nav-link.active {
  background-color: transparent;
  color: #165fad;
  border-bottom: 2px solid #165fad;
}

body {
  background-image: url("/img/bg-main.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.debug {
  border: 1px solid red;
}

.form-check-input:checked {
  background-color: #13a14e;
  border-color: #cfcfcf;
}

.btn-primary {
  background-color: #13a14e;
  border-color: #cfcfcf;
}
.btn-primary:hover {
  background-color: #50966d;
  border-color: #cfcfcf;
}

#layout {
  background-repeat: repeat;
}

#form-theme .form-check-input {
  width: 2rem;
  height: 2rem;
  margin-right: 10px;
}
#form-theme .table-container {
  overflow: auto;
}
#form-theme .table-container::-webkit-scrollbar {
  width: 1rem;
  height: 1rem;
}
#form-theme .table-container::-webkit-scrollbar-track {
  background-color: #fff;
}
#form-theme .table-container::-webkit-scrollbar-thumb {
  background-color: #165fad;
  outline: none;
  border-radius: 0rem;
}
#form-theme .escolhas {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
#form-theme form {
  margin-top: 3rem;
  padding: 2rem;
  border-radius: 0.5rem;
}
#form-theme h1 {
  font-family: "Anton", sans-serif;
  font-weight: 900;
  color: rgb(27, 136, 0);
  font-size: 8rem;
}
@media (max-width: 575.98px) {
  #form-theme h1 {
    font-size: 3rem;
  }
}
#form-theme h2,
#form-theme h3,
#form-theme h4,
#form-theme h5,
#form-theme h6 {
  font-weight: 700;
  color: rgb(27, 136, 0);
}
#form-theme p,
#form-theme th,
#form-theme td,
#form-theme label {
  color: rgb(27, 136, 0);
}
#form-theme h2 {
  font-size: 2.5rem;
}
#form-theme th {
  min-width: 12rem;
  text-align: center;
}
#form-theme th,
#form-theme td {
  text-align: center;
}
@media (max-width: 575.98px) {
  #form-theme th,
#form-theme td {
    font-size: 13px;
  }
}

body::-webkit-scrollbar {
  width: 1rem;
  height: 1rem;
}
body::-webkit-scrollbar-track {
  background-color: #fff;
}
body::-webkit-scrollbar-thumb {
  background-color: #165fad;
  outline: none;
  border-radius: 0rem;
}

.button-save {
  position: fixed;
  right: 20px;
  bottom: 40px;
}
.button-save button {
  background-color: #165fad;
  color: #fff;
  width: 120px;
}
.button-save button:hover {
  background-color: #123e6d;
  color: #fff;
}

.tab_login_registro .form-check-input:checked {
  background-color: #165fad;
  border-color: #cfcfcf;
}
.tab_login_registro input:not([type=radio]) {
  outline: none;
  border: 1px solid #c2c2c2;
  padding: 1rem 2rem;
  width: 100%;
}
.tab_login_registro input:not([type=radio]):focus {
  border: 1px solid #165fad;
}
.tab_login_registro .btn_primary {
  background-color: #165fad;
  color: #fff;
}
.tab_login_registro a {
  color: #165fad;
  font-weight: 600;
}
.tab_login_registro a:hover {
  color: #123e6d;
}

.footer_login_registro {
  background-color: #fff;
  border-top: 1px solid #c2c2c2;
}
.footer_login_registro a,
.footer_login_registro span {
  color: #c2c2c2;
}

/*the container must be positioned relative:*/
.autocomplete {
  position: relative;
  /*when hovering an item:*/
  /*when navigating through the items using the arrow keys:*/
}
.autocomplete .autocomplete-items {
  position: absolute;
  border: 1px solid #d4d4d4;
  border-bottom: none;
  border-top: none;
  z-index: 99;
  /*position the autocomplete items to be the same width as the container:*/
  top: 100%;
  left: 0;
  right: 0;
}
.autocomplete .autocomplete-items div {
  padding: 10px;
  cursor: pointer;
  background-color: #fff;
  border-bottom: 1px solid #d4d4d4;
}
.autocomplete .autocomplete-items div:hover {
  background-color: #e9e9e9;
}
.autocomplete .autocomplete-active {
  background-color: DodgerBlue !important;
  color: #ffffff;
}

.bg_title {
  background-image: url("/img/bg-title.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  padding: 1rem;
  margin-block: 4rem;
}
.bg_title h1 {
  color: #ffffff;
  font-size: 2rem;
}
@media (max-width: 575.98px) {
  .bg_title h1 {
    font-size: 1.5rem;
  }
}

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