/* 
    Created on : 13. 7. 2019, 20:08:11
    Author     : Tomas Bradle
*/

@charset 'UTF-8';

.tile-set {
    display: block;
    margin-bottom: 40px;
}

.tile-set.gap-before {
    margin-top: 80px;
}

.tile-set-row {
    display: block;
    margin-bottom: 30px;
    
    margin-bottom: 2.8rem;
}

.tile-set-row:last-child {
    margin-bottom: 0;
}

.TS-tile {
    display: inline-block;
    vertical-align: top;
    
    width: 120px;
    height: 120px;
    margin: 0px 12px 12px 0px;
    
    border-radius: 3px;
    
    background: #333;
    text-decoration: none;
    cursor: pointer;
    
    -webkit-transition: all 0.2s;
    -moz-transition: all 0.2s;
    -ms-transition: all 0.2s;
    -o-transition: all 0.2s;
    transition: all 0.2s;
}

.TS-tile:last-child {
    margin-right: 0;
}

.TS-tile:hover {
    text-decoration: none !important;
    background: #282828;
}

.TST-icon.material-icons {
    display: block;
    margin: 12px auto;
    
    font-size: 60px;
    width: 60px;
}

.TST-label {
    display: block;
    margin: 0 12px 12px;
    text-transform: uppercase;
    text-align: center;
    color: #fff;
    font-weight: 400;
}




.card-tile {
    width: 12rem;
    height: 12rem;
    
    float: left;
    
    margin-right: 1.2rem;
    margin-bottom: 1.8rem;
    
    transition: 0.2s all ease-in-out;
}

.card-tile:last-child {
    margin-right: 0;
}

.card-tile:hover {
    box-shadow: 0 2px 5px 0 rgba(0,0,0,.24), 0 2px 10px 0 rgba(0,0,0,.20);
}

.tile-icon {
    
    width: 5rem;
    height: 5rem;
    font-size: 4rem;
    
    text-align: center;
    
    margin: 1rem auto;
    margin: 2rem auto 1rem;
}

.tile-title {
    padding: 1rem;
    padding: 0 1rem 1rem;
    text-align: center;
    color: #000000;
}