/*
   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-1of6 {
    width: 16.666%;
}
.size-1of5 {
    width: 20%;
}
.size-1of4 {
    width: 25%;
}
.size-1of3 {
    width: 33.333%;
}
.size-1of2 {
    width: 50%;
}

/* Configurate salvattore with media queries */

/* List Staff*/
@media screen and (max-width: 479px) {
    #timeline-list-staff[data-columns]::before {
        content: '1 .column.size-1of1';
    }
}

@media screen and (min-width: 480px) and (max-width: 667px) {
    #timeline-list-staff[data-columns]::before {
        content: '2 .column.size-1of2';
    }
}

@media screen and (min-width: 668px) and (max-width: 767px) {
    #timeline-list-staff[data-columns]::before {
        content: '3 .column.size-1of3';
    }
}

@media screen and (min-width: 768px) and (max-width: 991px) {
    #timeline-list-staff[data-columns]::before {
        content: '3 .column.size-1of3';
    }
}

@media screen and (min-width: 992px) and (max-width: 1199px) {
    #timeline-list-staff[data-columns]::before {
        content: '3 .column.size-1of3';
    }
}

@media screen and (min-width: 1200px) {
    #timeline-list-staff[data-columns]::before {
        content: '3 .column.size-1of3';
    }
}

/* List Default*/
@media screen and (max-width: 479px) {
    #timeline-list-default[data-columns]::before {
        content: '1 .column.size-1of1';
    }
}

@media screen and (min-width: 480px) and (max-width: 767px) {
    #timeline-list-default[data-columns]::before {
        content: '2 .column.size-1of2';
    }
}

@media screen and (min-width: 768px) and (max-width: 991px) {
    #timeline-list-default[data-columns]::before {
        content: '2 .column.size-1of2';
    }
}

@media screen and (min-width: 992px) and (max-width: 1199px) {
    #timeline-list-default[data-columns]::before {
        content: '3 .column.size-1of3';
    }
}

@media screen and (min-width: 1200px) {
    #timeline-list-default[data-columns]::before {
        content: '3 .column.size-1of3';
    }
}

/* List Career*/
@media screen and (max-width: 479px) {
    #timeline-list-career[data-columns]::before {
        content: '1 .column.size-1of1';
    }
}

@media screen and (min-width: 480px) and (max-width: 667px) {
    #timeline-list-career[data-columns]::before {
        content: '2 .column.size-1of2';
    }
}

@media screen and (min-width: 668px) and (max-width: 991px) {
    #timeline-list-career[data-columns]::before {
        content: '3 .column.size-1of3';
    }
}

@media screen and (min-width: 992px) and (max-width: 1199px) {
    #timeline-list-career[data-columns]::before {
        content: '4 .column.size-1of4';
    }
}

@media screen and (min-width: 1200px) {
    #timeline-list-career[data-columns]::before {
        content: '4 .column.size-1of4';
    }
}