.header-user{
  img{
    width: 48px;
    height: 48px;
  }
}

.letra{
  display: none;
}

.letra--ativo{
  display: block;
}

.nav-toggle{
  cursor: pointer;
  height: 20px;
  display: flex;
  align-items: center;
  color: #FFF;
  
  /* position: absolute;
  top: 50%;
  left: 50%;
  background: red; */
}

.main-header{
  background: #1a2035;
}

.nav-search{
  max-width: 400px;
}

.message{
  position: fixed;
  inset: 0;
  background-color: red;
  z-index: 9999;
  animation-name: fade-out;
  animation-direction: normal;
  animation-duration: 5s;
  animation-fill-mode: forwards;

  p{
    font-size: inherit;
  }
}

.message__text{
  animation: fadeIn 1.5s ease-in-out forwards;
}

.accordion-item{
  border: 1px solid #a5c8fc !important;
}

.music-selector .title{
  font-size: 12px;
}

.music-selectorBox{
  width: 100%;
  border: 1px solid #cecece;
  padding: 6px 8px;
}

.music-tag{
  padding: 6px 8px;
  font-size: 12px;
  display: inline-flex;
  align-items: center;

  .music-tag__exclude{
    padding: 4px;
    font-size: 12px;
    margin-right: 6px;
    width: 20px;
    height: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;

    i{
      width: 100%;
      height: 100%;
    }
  }
}

.music-selectorArea{
  border-radius: 2px;
  padding: 4px;
  position: relative;
  border: 1px solid #cecece;
  
  .music-selectorArea__select{
    width: 100%;
    padding: 0;
    list-style: none;
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin: 0;

    input{
      border: none;
      outline: none;
      font-size: 14px;
    }
  
    li{
      display: flex;
      
      input{
        height: 100%;
        width: 100%;
      }
    }
  
    li:last-child{
      flex: 1;
      min-width: 120px;;
    }
  }

  .music-selectorArea__options{
    display: none;
    list-style: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    padding: 0;
    background-color: #FFF;
    border: 1px solid #cecece;
    z-index: 2;
    margin: 0;

    max-height: 140px;
    overflow-y: scroll;

    li{
      padding: 4px 8px;
    }

    li:hover{
      background-color: #f1f1f1;
      cursor: pointer;
    }
  }

  .music-selectorArea__options--show{
    display: block;
  }
}



@keyframes fadeIn {
  from {
    transform: translateY(-40px);
    opacity: 0;
  }
  to {
    transform: translateY(0px);
    opacity: 1;
  }
}

@keyframes fade-out {
  0%{
    opacity: 1;
    display: block;
  }
  90%{
    opacity: 1;
  }
  95%{
    opacity: 0;
  }
  100%{
    opacity: 0;
    display: none;
  }
}

/* 
.header-top{
  position: relative;
}

.sidebar .sidebar-wrapper{
  overflow-y: auto;
} */

@media (width <= 768px){
  .card .card-title{
    font-size: 1rem;
  }
}