.baloo{
  font-family: 'Baloo 2', cursive;
}

.navbar-area{
  position: absolute;
  top: 30px;
  left: 0;
  width: 100%;
  z-index: 99;
  transition: all .3s ease-out 0s;
}

.navbar{
  transition: all .3s ease-out 0s;
  padding: 12px 20px;
  background: rgba(255,255,255,.08);
  border-radius: 10px;
  margin: auto;
  width: 93%;
  top:12px;
}

.icon{
  background-color: #86888a;
  font-size: 15pt;
  color: #e6e7e8;
  text-align: center;
  border-radius: 8px;
  height:44px; 
  width:44px; 
  padding:12px;
}

.someLogo{
  display: none;
}

.font-cor{
  color: #3a5ff5;
}

.sticky{
  transition: all .3s ease-out 0s;
  background-color: white;
  z-index: 99;
  box-shadow: 0 .5rem 1rem rgba(0,0,0,.15)!important;
}

.logo{
  width: 100%;
  max-width: 150px;
  min-width: 100px;
  padding: 0px;
}                                                                                                       

@media(max-width: 720px){
  .logo{
    width: 41%;
  }
  
}

@media(max-width: 1020px){
  .ativo{
    display: block !important;
  }
}

  
#menuNav.ativo{
  position: absolute;
  background-color: rgb(255, 255, 255);
  width: 100%;
  padding: 10px 0px;
  top:60px;
  right: 0;
  border-radius: 5px;
  text-align: center;
  box-shadow: 0 .5rem 1rem rgba(0,0,0,.15)!important;
}

#menuNav.ativo ul{
  display: block;
  transition: all .5s linear;
}

#menuNav.ativo ul a{
  border-bottom: 1px solid rgba(214, 214, 214, 0.5);
  padding: 12px 30px;
  cursor: pointer;
  color: rgb(45, 101, 255) !important;
  font-size: 20px;
}

#menuNav.ativo ul a:hover{
  background-color: #0071fc;
  color: rgb(255, 251, 0) !important;
}

#btnconta{
  margin-right: 30px;
}

.btn-toggle{
  width: 30px;
  height: 30px;
  position: relative;
}

.btn-toggle label{
  width: 100%;
  height: 100%;
  background-color:#fe0001;
  position: absolute;
  border-radius: 50%;
  transition: all .3s linear;
  cursor: pointer;
}

.traço{
  width: 19px;
  height: 2.5px;
  top: 14.5px;
  left: 5px;
  position: absolute;
  background-color: #fff;
  border-radius: 10px;
  transition: all .5s linear;
}

.traço:before,
.traço:after{
  content:'';
  width: 19px;
  height: 2.5px;
  bottom: -6.5px;
  position: absolute;
  border-radius: 10px;
  background-color: #fff;
  transition: .5 ease-in-out !important;
}

.traço:after{
  top: -6.5px;
}

.traço:before{
  bottom: -6.5px;
}

input:checked ~ .traço{
  transform: rotate(45deg);
  transition: all .5s linear;
}

input:checked ~ .traço::before{
  transform: rotate(90deg);
  bottom:0;
  transition: all .5s linear;
}

input:checked ~ .traço::after{
  transform: rotate(90deg);
  top:0;
  transition: all .5s linear;
}