/* light dark mode  */
@import url('https://fonts.googleapis.com/css?family=Muli&display=swap');


body.dark {
	background: #006270;
}
.header.dark{
  background: #0D1F23;
}

.lightDarkMode {
  display: inline-block; /* Também faz com que o container do botão se comporte como um elemento em linha */
 /*  margin-left: 30%; Adicione um espaço de margem à esquerda para separar o título do botão */
  margin-left: auto;
  margin-bottom: 5%;
}

* { 
	box-sizing: border-box;  /*Encaixa o interruptor */
}

.lightDarkMode .checkbox {
    opacity: 0;
    position: absolute;
  }
  
  .lightDarkMode .label {
    background-color: #111;
    border-radius: 50px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 5px;
    position: relative;
    height: 26px;
    width: 50px;
    transform: scale(1.5);
  }
  
  .lightDarkMode .label .ball {
    background-color: #fff;
    border-radius: 50%;
    position: absolute;
    top: 2px;
    left: 2px;
    height: 22px;
    width: 22px;
    transform: translateX(0px);
    transition: transform 0.2s linear;
  }
  
  .lightDarkMode .checkbox:checked + .label .ball {
    transform: translateX(24px);
  }
  
  .lightDarkMode svg{
    color: #f1c40f;
  }


  /* Fim do light dark mode */