@import url("./colors.css");

*{
    padding: 0;
    margin: 0;
}

html{
    height: 100vh;
    width: 100%;
}
.container{
    height: 100vh;
    overflow-y: auto;
}

*::-webkit-scrollbar {
    width: 12px;
  }
  
*::-webkit-scrollbar-track {
    background: none;   
}
  
*::-webkit-scrollbar-thumb {
    background-color: rgb(219, 219, 219);
    border-radius: 20px;
    border: 2px solid rgb(255, 255, 255);
}

.nav-link{
    transition: all 0.2s;
    width: 100%;
}
.nav-link.active{
    background-color: black !important;
    border-radius: 0 !important;
    border-right: 3px solid var(--blue);
}

#v-pills-tab{
    height: 100%;
    transition: all 0.5s;
    position: absolute;
    z-index: 1001;
}
.bi-list{
    font-size: 40px;
}
.i-tab{
    font-size: 25px;
}
.close{
    width: 80px;
}
.open{
    width: 250px;
}
.destaque{
    color: var(--blue) !important;
}
.menu-text{
    display: none;
}

.bottom-line{
    background-color: var(--blue);
    height: 5px;
    width: 200px;
}
.w-33{
    width: 33%;
}
.w-20{
    width:20%;
}
@media (max-width: 1200px) {
    .w-33{
        width: 100%;
    }
}