@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@300;400;700&display=swap');

*{
  margin: 0;
  padding:0;
  outline: 0;
  -webkit-font-smoothing: antialiased;
  box-sizing: border-box;
}

*::-webkit-scrollbar {
  width: 1em;
    background-color: rgba(0,0,0,0);
}
   
*::-webkit-scrollbar-track {
    background: #f2f2ff;
}

select::-webkit-scrollbar-track {
    background: #ffffff;
}
   
*::-webkit-scrollbar-thumb {
    background-color: #373b44;
    outline: 0;
    border-radius: 25px;
    border: 3px solid transparent;
    background-clip: content-box;
}

html {
  font-family: Nunito, sans-serif;

}

body {
  font-weight: normal;
  background: #f2f2ff;
  font-family: Nunito, sans-serif;
  font-size: 15px;
  min-height: 100vh;
  min-width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
}

button, input, select, textarea {
  font-family: Nunito, sans-serif;
}

#interface {
  position: relative
  max-width: 1200px;
  margin: 0px auto;
  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: center;
}

@media(max-width: 816px){
  #interface {
    margin-top: 60px
  }
}

.main-menu li {
  margin: 0 10px;
  display: flex;
  justify-content: center;
  align-items: center;
}

#validation {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-direction: column;
}

.btn-bib:hover {
  color: #edfff4;
  filter: brightness(0.8);
  
}

#modal-diretrizes .modal-dialog {
  width: 90%;
  max-width: 800px;
}

#modal-diretrizes .modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: none;
}

#modal-diretrizes .modal-footer {
  display: flex;
  justify-content: center;
  border-top: none;
}

#modal-diretrizes .modal-footer button {
  background-image: linear-gradient(150deg, #02d9dc, #ee82ee);
  border-radius: 100px;
  padding: 5px 20px;
  border: none;
  width: 200px;
}

.confirmacao-text {
  min-height: 300px;
  width: 100%;
  max-width: 1000px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 50px;
}

.confirmacao-text span {
  max-width: 500px;
  font-size: 20px;
  text-align: justify;
}

.session-off {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  width: 50px;
}

.ficha-title {
  font-size: 32px;
  font-weight: bold;
  color: #373b44;
  margin: 32px auto;
  text-align: center;
  text-transform: none;
}

@media(max-width: 418px) {
  .ficha-title {
    font-size: 25px
  }
}


footer {
  /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#ffffff+0,f3f8f3+100 */
  height: auto;
  min-height: 100px;
  text-align: center;
  padding: 10px 25px;
  color: #ffffff;
  font-size: 12px;
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  justify-content: space-between;
  background: #373b44;
  width: 100%;
  margin: 0;
}

footer p {
  text-align: justify;
  opacity: 0.4
}

footer #logo-footer{
  width: 60px;
}

footer #nti-footer{
  margin-left: 10px;
  width: 50px;
}

footer a {
  color: #ffffff;
}

footer a:hover {
  color: #ffffff;
  text-decoration: underline;
}

@media(max-width: 640px) {
  footer {
    flex-direction: column;
    font-size: 10px
  }

  footer div {
    width: 100%;
    justify-content: flex-start;
    display: flex;
    align-items: center;
    margin-bottom: 10px
  }
}

@media(max-width: 816px) {
  .navbar .main-menu {
    position: absolute;
    z-index: 999;
    top: 20px;
    right: 10px;
  }

  .main-menu li{
    margin: 0 5px;
  }

}

@media(max-width: 460px){
  .main-menu li.ficha-link {
    display: none;
  }
}

#toast-place {
  width: 350px;
  position: absolute;
  top: 50px;
  right: 10px;
}