*{
    margin:0;
    padding: 0;
}
.content{
    margin: 2% 5%;
}
.buttons-links{
    margin:8px
}
.descricao{
    font-size: 15px;
    width: 80%;
}
.categorias{
    border-radius: 100px;
    transition: 0.5s;
    width: 140px;
}
.categorias:hover{
    transform: scale(0.8);
}



.card-body{
    text-align: center;
    overflow: hidden;
    width: 100%;
}

.titulo_area>p{
    align-items: center;
    display: flex;
    justify-content: center;
}

#titulo{
    white-space: nowrap;
    overflow: hidden;
}

#titulo > a{
    color: #202020;
    font-size: 14px;
}

.kit_cat{
    color: #202020;
    font-size: 12px;
    white-space: nowrap;
    overflow: hidden;
} 

.link{
    padding: 2px 5px;
    margin: 2px;
    border-radius: 5px;
    background-color: rgb(210, 210, 210);
    color: #202020;
}

.link:hover{
    background-color: rgb(231, 231, 231);
}

.desativado{
    padding: 2px 5px;
    margin: 2px;
    border-radius: 5px;
    color: rgb(161, 161, 161);
    background-color: rgb(210, 210, 210);
}

.desativado:hover{
    color: rgb(161, 161, 161);
    cursor: default;
}

.card-footer{
    margin: 0px;
}

.estande{
    text-align: center;
}

.estande > a{
    color: #202020;
}


::-webkit-scrollbar{
    width: 6px;
    background-color: #ff6363;
}

::-webkit-scrollbar-track{
	-webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
	background-color: #F5F5F5;
}

::-webkit-scrollbar-thumb
{
	background-color: #ff6363;
}

::-webkit-scrollbar-thumb:hover
{
	background-color: #62C2A2;
}

.sub_cat{
    padding: 3px 6px;
    background-color: #cecece;
    transition: 0.3s;
}   
.sub_cat:hover{
    background-color: #ff6363;
}

@media only screen and (max-width: 767px) {
    .mobile-subcats a {
        display: none;
    }
    .mobile-subcats a:nth-child(-n+4) {
        display: block;
    }
    .categorias{
        width: 100px;
    }
}