*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    
}
html, body{
    min-height: 100%;
    height: max-content;
    font-family: 'Poppins', sans-serif;
    color: white;
}

body::-webkit-scrollbar{
    background-color: #232123;/*#232123*/
    width: 6px;
}

body::-webkit-scrollbar-thumb{
    background-color: #f17448;/*#1a181a*/
    border-radius: 6px;
}

aside{
    width: 350px;
    max-width: 30%;
    height: 100%;
    min-height: 450px;
    position: fixed;
    border-right: 2px solid rgb(48, 47, 48, 0.8);
    background: linear-gradient(0deg, #232123, #121112);
    display: flex;
    align-items: center;
    z-index: 999;
}

.itens-aside{
    display: flex;
    flex-direction: column;
    margin: 0 auto;
}

.itens-aside .item{
    border-bottom: 1px solid #2e2d2f;
    width: 130px;
    padding: 0 8% 4px 8%;
    margin: 10px 0;
}

.itens-aside .item:hover{
    transform: scale(1.05);
}

.itens-aside .selected{ 
    color: #f17448;
}

.itens-aside i{
    cursor: pointer;
}

.itens-aside i:last-of-type{
    font-style: normal;
    font-weight: 500;
    font-size: 18px;
    margin-left: 8px;
}

.side-bar{
    transition: 1s;
    transform: translate(0);
}

.icon-mobile{
    border: #2e2d2f;
    width: 30px;
    height: 30px;
    color: #f17448;
    background-color: #232123;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 20px;
    right: -80px;
    border-radius: 5px;
    cursor: pointer;
    display: none;
}

.icon-mobile{
    transform: scale(1.5);
}

.toggle-theme{
    position: absolute;
    top: 130px;
    right: 20px;
    width: 50px;
    height: 50px;
    z-index: 999;
    cursor: pointer;
    border: 1px solid #2e2d2f;
    background-color: #232123;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: 1s;
}

.toggle-theme i{
    transform: scale(1.5);
}

.container{
    position: absolute;
    top: 0;
    right: 0;
    width: calc(100% - 350px);
    min-height: 100%;
    height: max-content;
    padding: 2%;
}

.disabled{
    display: none;
    z-index: -999;
    opacity: 0;
}

.disabled > *{
    display: none;
    position: fixed;
    z-index: -999;
    opacity: 0;
}

input[type=button]{
    padding: 10px 25px;
    border: 0;
    border-radius: 20px;
    background-color: #f17448;
    color: white;
    font-weight: 500;
    font-size: 20px;
    transition: 0.3s;
    cursor: pointer;
}

input[type=button]:hover{
    background-color: rgb(240, 131, 92);
    transform: scale(1.05);
}

@media (max-width:1280px){
    .container{
        width: 100%;
    }
    div.box-title{
        padding-left: 20px;
    }
    aside{
        transform: translateX(-100%);
        max-width: 60%;
    }
    .icon-mobile{
        display: flex;
        right: -55px;
    }
}