/* 
    Created on : 30 mars 2016, 18:12:17
    Author     : Kalgonium
*/
.selectableBlock, .smallSelectableBlock{
    text-align:center;
    border:2px solid var(--main-text-color);
    background-color:var(--main-text-color);
    padding-bottom:0.6em;
    transition: 0.2s;
    background-repeat: no-repeat; 
    background-position: 50% 50%;
    background-size: cover; 
    position: relative;
}

.selectableBlock{
    display:inline-flex;
    width:130px;
    height:130px;
    margin: 2vw 20px;
}

.smallSelectableBlock{
    display:inline-flex;
    width:100px;
    height:100px;
    margin: 1em 1em;
}

.selectableBlock div, .smallSelectableBlock div{
    width:100%;
    height:100px;
    background-repeat:no-repeat;
    background-position: 50% 50%;
    background-size:cover;
    margin-bottom:0.6em;
}

.selectableBlock span, .smallSelectableBlock span{
    background-color: var(--main-text-color);
    color:white;
    font-family:var(--main-font);
    font-size:0.9em;
}

.selectableBlock:hover, .smallSelectableBlock:hover{
    transform:scale(1.1,1.1);
    cursor:pointer;
}

.selectableBlock:hover img, .smallSelectableBlock:hover img{
    display:inline;
}

.selectableBlock .studentName, .smallSelectableBlock .studentName{
    width: 100%;
    height: auto;
    padding: 0.5em 0;
    position:absolute;
    background-color: var(--main-text-color);
    bottom: 0;
    margin-bottom: 0;
    color: white;
    font-family: var(--main-font);
    font-size: 0.9em;
    vertical-align: center;
    opacity: 0.8;
}

.smallSelectableBlock .section{
    width: 40%;
    height: auto;
    padding: 0.2em 0;
    position:absolute;
    background-color: var(--main-text-color);
    top: 0;
    left:0;
    margin-top: 0;
    color: white;
    font-family: var(--main-font);
    font-size: 0.8em;
    vertical-align: center;
}