/* @import url('https://fonts.googleapis.com/css?family=Roboto&display=swap');
@import url('https://stackpath.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css'); 
 *{ margin: 0; padding: 0;}
*, *::before, *::after {
  margin: 0;
  padding: 0; 
  box-sizing: inherit; 
} 

 body{ 
  min-height: 100vh;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  align-content: flex-start; 
    
  font-family: 'Roboto', sans-serif;
  font-style: normal; 
  font-weight: 300; 
  font-smoothing: antialiased;  
 -webkit-font-smoothing: antialiased;
 -moz-osx-font-smoothing: grayscale;
  font-size: 15px;
  background: #eee; 
 }  */
/* 
.cd__intro{
   padding: 60px 30px;
   margin-bottom: 15px;
        flex-direction: column;

}
.cd__intro,
.cd__credit{
    display: flex;
    width: 100%;
    justify-content: center;
    align-items: center;
    background: #fff;
    color: #333;
    line-height: 1.5;
    text-align: center;
}

.cd__intro h1 {
   font-size: 18pt;
   padding-bottom: 15px;

}
.cd__intro p{
   font-size: 14px;
}

.cd__action{
   text-align: center;
   display: block;
   margin-top: 20px;
}

.cd__action a.cd__btn {
  text-decoration: none;
  color: #666;
   border: 2px solid #666;
   padding: 10px 15px;
   display: inline-block;
   margin-left: 5px;
}
.cd__action a.cd__btn:hover{
   background: #666;
   color: #fff;
    transition: .3s;
-webkit-transition: .3s;
}
.cd__action .cd__btn:before{
  font-family: FontAwesome;
  font-weight: normal;
  margin-right: 10px;
}
.down:before{content: "\f019"}
.back:before{content:"\f112"}

.cd__credit{
    padding: 12px;
    font-size: 9pt;
    margin-top: 40px;

}
.cd__credit span:before{
   font-family: FontAwesome;
   color: #e41b17;
   content: "\f004";


}
.cd__credit a{
   color: #333;
   text-decoration: none;
}
.cd__credit a:hover{
   color: #1DBF73; 
}
.cd__credit a:hover:after{
    font-family: FontAwesome;
    content: "\f08e";
    font-size: 9pt;
    position: absolute;
    margin: 3px;
}
.cd__main{
  background: #fff;
  padding: 20px;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  
}
.cd__main{
    display: flex;
    width: 100%;
} */

@media only screen and (min-width: 1360px){
    .cd__main{
      max-width: 1280px;
      margin-left: auto;
      margin-right: auto; 
      padding: 24px;
    }
}


.cd__main{
   background: #182633 !important;
   min-height: 500px;
}
.bg-midnight-100 {
  background-color: #283848;
}

.bg-midnight-200 {
  background-color: #233240;
}

.bg-midnight-300 {
  background-color: #1f2b38;
}

.bg-midnight-400 {
  background-color: #1a2530;
}

.bg-midnight-500 {
  background-color: #161f28;
}

.bg-midnight-600 {
  background-color: #121920;
}

.bg-midnight-700 {
  background-color: #0d1318;
}

.bg-midnight-800 {
  background-color: #090c10;
}

.bg-midnight-900 {
  background-color: #040608;
}

.container {
  height: 100%;
  padding: 0;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.dropdown {
  position: relative;
  display: inline-block;
  /* width: 150px; */
  /* background-color: #fff; */
  border: 1px solid #ddd;
  border-radius: 1px;
  /* margin-bottom: 20px;    */
  background: white;
  /* margin: 10px; */
  min-width: 250px;
  /* max-width: 500px; */
  cursor: pointer;  
  /* height: 30px; */
}

.dropdown__select-all {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px;
  border-bottom: 1px solid #ddd;
}
.dropdown__menu {
  /* position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background-color: #fff;
  border: 1px solid #ddd;
  /* z-index: 1; 
  display: block;  
  z-index: 1000;    */
  list-style: none;
  margin: 0;
  padding: 0;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background-color: #fff;
  border: 1px solid #ddd;
  z-index: 1000;
  display: none; /* Oculto por padrão */
  max-height: 180px; /* Limite de altura para rolagem */
  overflow-y: auto; /* Barra de rolagem se necessário */
}

.dropdown__menu--open {
  display: block;
}
 .dropdown__list {
  list-style: none;
  margin: 0;
  padding: 0;  
  height: 180px;
  overflow-y: scroll;
} 

.dropdown__item {
  display: flex;
  align-items: center;
  padding: 10px;
}
.dropdown__checkbox {
  margin-right: 10px;
}
.dropdown__search {
  box-sizing: border-box;
  width: 100%;
  border: none;
  border-bottom: 1px solid lightgrey;
  padding: 0.625rem;
}
.dropdown__label label {
  padding: 0.5rem;
  /* border: 1px solid black; */
  border-radius: 4px;
  /* margin-bottom: 0.5rem; */
  display: flex;
  /* gap: 1.5rem; */
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.dropdown__label input {
  display: none;
  visibility: hidden;
}
.dropdown__label svg {
  margin-left: auto;
  width: 1rem;
}
.dropdown:hover .dropdown__menu {
  display: block;
}

.button {
  padding: 0.5rem;
  border: 1px solid #2e2b2b;
  color: #111111;
  border-radius: 0.5rem;
}
.button__grey {
  text-decoration: none;
  background-color: #2e2b2b;
}
