/*
To change this license header, choose License Headers in Project Properties.
To change this template file, choose Tools | Templates
and open the template in the editor.
*/
/* 
    Created on : 10 dic. 2021, 14:42:25
    Author     : Stikets
*/

#div_general_boles_links{
    /*background-color: red;*/
    display: flex;
    margin: 0 10px;
    flex-direction: column;
    margin-top: 10px;
    border-bottom: 2px solid #d3d3d3;
    padding-bottom: 10px;
    margin-bottom: 10px;
}

.div_bola{
    display: flex;
    flex-direction: column;
    /*background: lightblue;*/
    width: 10%;
    align-items: center;
    cursor: pointer;
    color: #666;
}
.div_bola:hover{
    color: #666;
}
.imatge_bola{
    width: 5vw;
    height: 5vw;
    border-radius: 100%;
    padding: 5px;
    border: 2px solid transparent;
}

.imatge_bola:hover{
    border: 2px solid #d3d3d3;
}


.titol_bola{
    padding: 0 5px;
    font-weight: bold;
    font-size: 15px;
    word-break: break-all;
}
.div_titol_boles_links{
    display: flex;
}
.titol_boles{
    /*font-size: 16px;*/
    font-weight: 400;
}
.div_boles{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    margin-top: 10px;
    
}

@media (max-width: 990px){
    #div_general_boles_links{
        margin: 0 10px;
    }
    .div_bola{
        width: 33%;
    }
    .titol_boles{
        font-size: 20px;
    }
    .imatge_bola{
        width: 18vw;
        height: 18vw;
    }
}