.click:hover{
    cursor: pointer;
}
.flex{
    display:flex;    
}      
.flex-align-center{
    align-items: center;
}
.flex-end{
    display:flex;
    justify-content: flex-end;
    flex-wrap: nowrap;
}
.flex-just-center{
    display: flex;
    justify-content: center;
}
.flex-spc-around{
    display: flex;
    justify-content: space-around;
}
.flex-center{
    display: flex;    
    justify-content: center;
}

.flex-center-center{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.flex-spc-between{
    display: flex;
    justify-content: space-between;
}

.hidden {
    display: none;
}

.desktop {
    display: table-cell;
}

.mobile{
    display: none;
}

@media (max-width: 600px) {
    .desktop {
        display: none;
    }
    .mobile{
        display: table-cell;
    }
}

.margin-bottom-20{
    margin-bottom: 20px;
}
.scroll-x{
    overflow-x: auto;
}
.scroll-y{
    overflow-y: auto;
}
.w-05{
    width: 5%;
}
.w-10{
    width: 10%;    
}
.w-15{
    width: 15%;    
}
.w-20{
    width: 20%;    
}
.w-25{
    width: 25%;        
}      
.w-30{
    width: 30%;      
}    
.w-35{
    width: 35%;      
}      
.w-40{
    width: 40%;    
}
.w-50{
    width: 50%;    
}
.w-60{
    width: 60%;
}      

/* filter */
    .select-main-searcher{
        height: 85%;
        max-width: 180px;
        border: none;
        margin-top: 2px;
        background-color: rgb(241, 244, 247);
        margin-left: 10px;
        outline: none;
        margin: 0px;
        padding: 0px 5px;
        border-radius: 2px;
    }

    .select-main-searcher:focus, .select-main-searcher:hover {
		outline: 1px solid red;
	}

	@media (max-width: 370px) {
		.select-main-searcher{
			min-width: 90px;
			max-width: 100px;
			padding: 0px;			
		}
	}
/* LISTA */
    .menu-list{
        display: flex;
        justify-content: space-around;
        padding-left: 0px;
        list-style: none;
    }   
    .menu-list button{
        display: flex;
        justify-content: center;
        width: 45%;      
        border: 1px solid black;
        border-radius: 3px;
        padding: 10px;
        text-align: center;
        font-size: larger;     
        background-color: initial;
        color: black;
    }
    .menu-list .button-select{
        background-color: rgb(56, 56, 56);
        color: white;
    }
    .menu-list button:hover{
        cursor: pointer;      
        background-color: rgb(56, 56, 56);
        color: white;
    }
    .menu-list button div{
        margin-right: 10px;
    }    
    @media (max-width: 600px){
        .menu-list button{
            flex-direction: column;
            justify-content: center;
            align-items: center;
        }    
        .menu-list button div{
            margin-right: 0px;
            margin-top: 10px;
        }
        .menu-list button i {
            font-size: x-large;
        }
    }