/*
   Spezific styling for salvattore
   Feel free to edit it as you like
   More info at http://salvattore.com
 */

/* Base styles */
.column {
    float: left;
}
@media screen and (max-width: 480px) {
    .column {
        float: none;
        position: relative;
        clear: both;
    }
}
.size-1of4 {
    width: 20%;
}
.size-1of3 {
    width: 20%;
}
.size-1of2 {
    width: 20%;
}


#fh5co-board[data-columns]::before {
    content: '5 .column.size-1of4';
}

/* Configurate salvattore with media queries */
@media screen and (max-width: 450px) {
    #fh5co-board[data-columns]::before {
        content: '5 .column';
    }
}

@media screen and (min-width: 451px) and (max-width: 500px) {
    #fh5co-board[data-columns]::before {
        content: '5 .column.size-1of2';
    }
}

@media screen and (min-width: 500px) and (max-width: 550px) {
    #fh5co-board[data-columns]::before {
        content: '5 .column.size-1of3';
    }
}

@media screen and (min-width: 600px) {
    #fh5co-board[data-columns]::before {
        content: '5 .column.size-1of4';
    }
}

