@import url('https://fonts.googleapis.com/css2?family=Teko:wght@500&display=swap');







.steps #wrapper {
    position: relative;
    display: flex;
    flex-flow: row wrap;
    justify-content: space-evenly;
    align-content: space-evenly;
    max-width: 1080px;

}

.steps #steps_fond {
    position: fixed;
    top: 0;
    margin: 0 0 0 -16px;
    background-color: white;
    opacity: 0;
    height: 100%;
}

.steps .step {
    margin: 2.1rem;
}

.steps .step span {
    position: relative;
    display: inline-block;
    margin: auto;
    font: normal 3rem 'Lobster Two', sans-serif;
    width: 7rem;
    line-height: 7rem;
    text-align: center;
    color: #f7f7f7;
    color: rgba(255, 255, 255, .9);
    background: rgba(0, 0, 0, .2);
    transition: .3s;
    border-radius: 3px;
    border: 3px solid #bbb;
    border: 3px solid rgba(0, 0, 0, .1);
    -webkit-background-clip: padding-box;
    background-clip: padding-box;
}

.steps .step span:hover {
    font-size: 4rem;
}

.steps .step.active {
    background: rgba(255, 255, 255, .6);
    cursor: pointer;
}



.steps .part {
    /*width: 90%;*/
    max-width: 800px;
}

.steps .part.show {
    z-index: 1;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    border: 2px solid lightsteelblue;
    padding: 20px;
    overflow: auto;
    background-color: white;
    box-shadow: 10px 10px 10px #ccc;
    font-family: 'Roboto Condensed', sans-serif;
    font-weight: 400;
    opacity: 0;
    top: 15px;
}

.steps .close-part {
    color: red;
    position: absolute;
    width: 16px;
    height: 16px;
    font-family: arial, sans-serif;
    font-weight: 500;
    right: 0px;
    top: 2px;
    cursor: pointer;
}

.steps .part .video2 {
    width: 600px;
}

/** Media **/
.steps [id*=day] audio {
    margin: auto;
    display: block;
}

/** Podcast **/
.steps .podcast-widget {
    margin: auto;
    max-width: 415px;
}

.steps .podcast-widget h2 {
    font-size: 1.4rem;
}

@media screen and (max-width: 600px) {
    html {
        font-size: 10px;
    }

    body {
        padding: 0;
    }

    .steps .part.show {
        top: 0px;
        position: fixed;
        overflow: scroll;
        left: 0;
        transform: inherit;
        height: 100%;
    }

    .steps .close-part {
        right: 5px;
    }

    #logo {
        display: none;
    }

    .steps .podcast-widget h2 {
        font-size: 2rem;
    }

    .steps .podcast-widget p {
        line-height: 16px;
    }
}