/*
   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: 180px) {
    .column {
        float: none;
        position: relative;
        clear: both;
    }
}
.size-1of8 {
    width: 12.5%;
}
.size-1of7 {
    width: 14.222%;
}
.size-1of6 {
    width: 16.666%;
}
.size-1of5 {
    width: 20%;
}
.size-1of4 {
    width: 25%;
}
.size-1of3 {
    width: 33.333%;
}
.size-1of2 {
    width: 50%;
}


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

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

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

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

@media screen and (min-width: 851px) and (max-width: 1000px) {
    #fh5co-board[data-columns]::before {
        content: '4 .column.size-1of4';
    }
}
@media screen and (min-width: 1001px) and (max-width: 1200px) {
    #fh5co-board[data-columns]::before {
        content: '5 .column.size-1of5';
    }
}
@media screen and (min-width: 1201px) and (max-width: 1600px) {
    #fh5co-board[data-columns]::before {
        content: '6 .column.size-1of6';
    }
}
@media screen and (min-width: 1601px) and (max-width: 2000px) {
    #fh5co-board[data-columns]::before {
        content: '7 .column.size-1of7';
    }
}

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

