/******* Do not edit this file *******
Woody Code Snippets CSS and JS
Saved: Oct 04 2022 | 21:27:56 */
        body {
            background-color: #141414;
        }
        .linha-tempo .ano {
            color: #FD613C;
            font-family: "Panton";
            font-weight: 400;
            text-transform: uppercase;
            font-size: 50px;
        }

        .linha-tempo .item {
            color: #fff;
            font-family: "Panton";
            font-size: 22px;
            max-width: 600px;
            width: 100%;
            height: 100%;
            position: relative;
            align-items: center;
            justify-content: space-between;
            display: flex;
            margin-bottom: 20px;
            margin-left: 11%;
            margin-top: 20px;
        } .linha-tempo .item .texto {
            width: fit-content;
            padding-left: 70px;

        }

        .linha-tempo .divisoria {
            display: flex;
            height: 100%;
            width: 50px;
            position: absolute;
            flex-direction: column;
            align-items: center;
            justify-content: space-between;
            content: "";
            top: -5px;
            
        } .linha-tempo .divisoria img {
            width: 13px;
            max-width: unset;
        } .linha-tempo .linha {
            width: 6px;
            height: 100%;
            background-color: #444444;
            
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: space-between;
        } .linha-tempo .num .linha { 
            margin-top: 10px;
        } .linha-tempo .num .data {
            color: #FD613C;
            font-family: "Panton";
            font-weight: 400;
            text-transform: uppercase;
        }

        .linha-tempo .titulo {
            margin-bottom: 10px;
            font-size: 25px;
        }

        @media (max-width: 999px) {
            .linha-tempo .divisoria {
                display: none;
            }

            .linha-tempo .item .texto {
                padding-left: 0 ;
            }

            .linha-tempo .item {
                margin-left: 0;
            }
        }