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

/* Base styles */
.column {
    float: left;
    width: 100%;
}
.size-1of5 {
    width: 20%;
}
.size-1of4 {
    width: 25%;
}
.size-1of3 {
    width: 33.333%;
}
.size-1of2 {
    width: 50%;
}
.size-1of1 {
    width: 100%;
}


#timeline-list {
    margin-left: -15px;
    margin-right: -15px;
}






/* *********** Configurate salvattore with media queries *********** */
@media screen and (max-width: 540px) {
    #timeline-footer[data-columns]::before {
        content: '1 .column.size-1of1';
    }
}

@media screen and (max-width: 767px) {
    #timeline-list[data-columns]::before {
        content: '1 .column.size-1of1';
    }
    #timeline-footer[data-columns]::before {
        content: '2 .column.size-1of2';
    }
}

@media screen and (min-width: 768px) and (max-width: 991px) {
    #timeline-list[data-columns]::before {
        content: '2 .column.size-1of2';
    }
    #timeline-footer[data-columns]::before {
        content: '2 .column.size-1of2';
    }
}

@media screen and (min-width: 992px) and (max-width: 1199px) {
    #timeline-list[data-columns]::before {
        content: '2 .column.size-1of2';
    }
    #timeline-footer[data-columns]::before {
        content: '2 .column.size-1of2';
    }
}

@media screen and (min-width: 1200px) {
    #timeline-list[data-columns]::before {
        content: '2 .column.size-1of2';
    }
    #timeline-footer[data-columns]::before {
        content: '4 .column.size-1of4';
    }
}