/*
Font families defined by this CSS:

- "Inter"                  static "traditional" fonts for older web browsers
- "Inter var"              single-axis variable fonts for all modern browsers
- "Inter var experimental" multi-axis variable fonts for modern web browsers

Use like this in your CSS:

  :root { font-family: 'Inter', sans-serif; }
  @supports (font-variation-settings: normal) {
    :root { font-family: 'Inter var', sans-serif; }
  }

------------------------- static ------------------------- */
@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 100;
  font-display: swap;
  src: url("../font/Inter-Thin.ttf") format("truetype");
}

@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 200;
  font-display: swap;
  src: url("../font/Inter-ExtraLight.ttf") format("truetype");
}

@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url("../font/Inter-Light.ttf") format("truetype");
}

@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../font/Inter-Regular.ttf") format("truetype");
}

@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("../font/Inter-Medium.ttf") format("truetype");
}

@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("../font/Inter-SemiBold.ttf") format("ttf");
}

@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("../font/Inter-Bold.ttf") format("ttf");
}

@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url("../font/Inter-ExtraBold.ttf") format("ttf");
}

@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 900;
  font-display: swap;
  src: url("../font/Inter-Black.ttf") format("ttf");
}

body {
  font-family: "Inter", sans-serif;
  background: #fafafa;
}

#body-row {
  margin-left: 0;
  margin-right: 0;
}
#sidebar-container {
  /*
    min-height: 100vh;   
*/
  min-height: 90vh;

  background-color: #333;
  padding: 0;
}

/* Sidebar sizes when expanded and expanded */
.sidebar-expanded {
  width: 230px;
}
.sidebar-collapsed {
  width: 60px;
}

/* Menu item*/
#sidebar-container .list-group a {
  height: 50px;
  color: white;
}

.menu_dinamico {
  padding-left: 0;
}

.nivel-3{
  padding-left: 20px;
  font-size: 0.88rem;
}
.nivel-4{
  padding-left: 40px;
  font-size: 0.85rem;
}
.nivel-5{
  padding-left: 45px;
  font-size: 0.81rem;
}
.nivel-6{
  padding-left: 50px;
  font-size: 0.78rem;
}
.nivel-7{
  padding-left: 55px;
  font-size: 0.75rem;
}
.nivel-8{
  padding-left: 60px;
  font-size: 0.7rem;
}
.nivel-9{
  padding-left: 65px;
  font-size: 0.7rem;
}
.nivel-10{
  padding-left: 70px;
  font-size: 0.7rem;
}
.borda-classcode{
  border-block-color: #006379;
}

/* Submenu item*/
#sidebar-container .list-group .sidebar-submenu a {
  height: 45px;
  padding-left: 40px;
}

#sidebar-container .list-group .sidebar-submenu a:hover {
  padding-left: 35px;
}

#sidebar-container .list-group-item .menu-collapsed:hover {
  color:#ccc;
}

.sidebar-submenu {
  font-size: 0.9rem;
}

/* Separators */
.sidebar-separator-title {
  background-color: #333;
  height: 35px;
}
.sidebar-separator {
  background-color: #333;
  height: 25px;
}
.logo-separator {
  background-color: #333;
  height: 60px;
}

/* Closed submenu icon */
#sidebar-container
  .list-group
  .list-group-item[aria-expanded="false"]
  .submenu-icon::after {
  content: "\f0d7";

  /*
  font-family: FontAwesome;
*/

  font-family: "Font Awesome 5 Free";

  display: inline;
  text-align: right;
  padding-left: 10px;
  font-weight: 900;
}

/* Opened submenu icon */
#sidebar-container
  .list-group
  .list-group-item[aria-expanded="true"]
  .submenu-icon::after {
  content: "\f0da";

  /*
  font-family: FontAwesome;
*/

  font-family: "Font Awesome 5 Free";

  display: inline;
  text-align: right;
  padding-left: 10px;
  font-weight: 900;
}

/* login */
.auth-card {
  margin-bottom: 30px;
}

/* auth-button */
.btn-topo {
  margin-top: 30px;
}

.change-form-p {
  text-align: center;
}

/* Botao ClassCode */
.btn-classcode {
  color: #ffffff;
  background-color: #006379;
  border-color: #0b4754;
}

.btn-classcode:hover,
.btn-classcode:focus,
.btn-classcode:active,
.btn-classcode.active,
.open .dropdown-toggle.btn-classcode {
  color: #ffffff;
  background-color: #148199;
  border-color: #0b4754;
}

.btn-classcode:active,
.btn-classcode.active,
.open .dropdown-toggle.btn-classcode {
  background-image: none;
}

.btn-classcode.disabled,
.btn-classcode[disabled],
fieldset[disabled] .btn-classcode,
.btn-classcode.disabled:hover,
.btn-classcode[disabled]:hover,
fieldset[disabled] .btn-classcode:hover,
.btn-classcode.disabled:focus,
.btn-classcode[disabled]:focus,
fieldset[disabled] .btn-classcode:focus,
.btn-classcode.disabled:active,
.btn-classcode[disabled]:active,
fieldset[disabled] .btn-classcode:active,
.btn-classcode.disabled.active,
.btn-classcode[disabled].active,
fieldset[disabled] .btn-classcode.active {
  background-color: #006379;
  border-color: #0b4754;
}

.btn-classcode .badge {
  color: #006379;
  background-color: #ffffff;
}

/* Background Color ClassCode */
.bg-classcode {
  background-color: #006379 !important;
}

/* Sidebar button ClassCode*/
.sidebar-btn {
  color: #006379;
  position: absolute;

  /*  margin-left: 240px; */

  font-size: 22px;
  font-weight: 900;
  cursor: pointer;
  transition: 0.3s;
  transition-property: color;
}

.sidebar-btn:hover {
  color: #4ccee8;
}

/* Logo */
.logo img {
  margin-left: 60px;

  /*   margin: 20px 0;
  width: 100px;
  height: 100px;
*/
}

/* Navbar Menu*/
.navbarmenu {
  margin-left: 60px;
}

.navbarmenu ul {
  display: flex;
  list-style-type: none;
}

.navbarmenu ul li a {
  padding-left: 10px;
  padding-right: 10px;
  /*
  color: #006379;
*/
}

/* Botoes */
.btn-sm {
  color: #006379;
  background-color: transparent;
  background-size: auto;
  text-align: center;
  padding-top: 100px;
  width: 20px;
  height: 20px;
  padding: 6px 0px;

  /*  
  border-radius: 50%;

  border-radius: 4px;
*/

  font-size: 15px;
  text-align: center;
  border: none !important;
}

.btn-sm:hover {
  color: #4ccee8;
}

.btn-circle.btn-md {
  background-size: auto;
  text-align: center;
  /*
  padding-top: 100px;
*/
  width: 50px;
  height: 50px;
  /*
  padding: 7px 10px;
*/

  border-radius: 25px;
  font-size: 25px;
  /*
  text-align: center;
*/
}

.btn-circle.btn-adicao {
  background-size: auto;
  text-align: center;
  width: 35px;
  height: 35px;
  border-radius: 25px;
  font-size: 12px;
  text-align: center;
}

/* Messages */
ul.messages {
  padding: 0;
}

ul.messages li {
  list-style: none;
}

/* Link */
.link-classcode {
  color: #006379;
}

.link-classcode:hover {
  color: #006379;
  text-decoration: underline;
}

/* Brand */
.navbarnomeempresa {
  margin-left: 60px;
}

/*Define o tamanho da div superior. Para sobrar espaco para a div inferior que sera usada pelo Footer*/
.divsuperiortamanho {
  height: 95%;
}

.limita_texto {
  max-width: 45ch;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.linha {
  display: inline-block;
  border-bottom: 0.5px solid black;
  padding-bottom: 5px;
}

h2 {
  /*color: red;*/
  font-family: "Inter", sans-serif;
  font-size: 30px;
}

h6 {
  /*color: red;*/
  font-family: "Inter", sans-serif;
  font-size: 24px;
}

/* Custumer style FilteredSelectMultiple */
.selector .selector-chosen h2 {
  background: none;
  font-size: 20px;
}

.selector .selector-available h2 {
  background: none;
  font-size: 20px;
}
.selector .selector-available h2 .help-icon{
  background: none;
}

.selector-chosen .filtered {
  border-top: rgb(118, 118, 118) solid 1px; 
}



/*Form inline */

.div_forminline {
  background-color: #F5F5F5;
  margin: 5px; 

}

.bord-forminline {
  border-radius: 5px;
  border: #ccc solid 1px;
}

.div_button_add_formline {
  align-items: center;
  display: flex;  
  justify-content: center;
}

.btn_add_formulario {
  color: rgb(118, 118, 118);
}

.btn_add_formulario:hover{
  text-decoration: none;
  font-weight: bold;
}


/* Spinner CSS */
#cover-spin {
    position: fixed;
    width: 90%;
    z-index: 9999;
    margin: auto;
    height: 0%;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  #cover-spin span {
    position: relative;
    top: 60px;
  }
  
  #cover-spin::after {
    content: '';
    display: block;
    position: absolute;
    width: 30px;
    height: 30px;
    border-style: solid;
    border-color: black;
    border-top-color: transparent;
    border-width: 3px;
    border-radius: 50%;
    -webkit-animation: spin .8s linear infinite;
    animation: spin .8s linear infinite;
    -webkit-animation: rotation .6s infinite linear;
    -moz-animation: rotation .6s infinite linear;
    -o-animation: rotation .6s infinite linear;
    animation: rotation .6s infinite linear;
    border-left: 3px solid #9cc3cb;
    border-right: 3px solid #9cc3cb;
    border-bottom: 3px solid #9cc3cb;
    border-top: 3px solid #006379;
    border-radius: 50%;
  }
  
  @-webkit-keyframes rotation {
    from {
      -webkit-transform: rotate(0deg);
    }
  
    to {
      -webkit-transform: rotate(359deg);
    }
  }
  
  @-moz-keyframes rotation {
    from {
      -moz-transform: rotate(0deg);
    }
  
    to {
      -moz-transform: rotate(359deg);
    }
  }
  
  @-o-keyframes rotation {
    from {
      -o-transform: rotate(0deg);
    }
  
    to {
      -o-transform: rotate(359deg);
    }
  }
  
  @keyframes rotation {
    from {
      transform: rotate(0deg);
    }
  
    to {
      transform: rotate(359deg);
    }
  }

.not-visible {
    display: none;
}

.fundo-fosco {
  -webkit-filter: blur(10px);
  -moz-filter: blur(10px);
  -o-filter: blur(10px);
  -ms-filter: blur(10px);
  filter: blur(10px);
}