/* html{
    overflow:hidden;
} */


#closed {


    background: #fc0404ea;
    color: white;
    position: fixed;
    width: 100%;
    z-index: 7;
    top: 0;
}


#bttclose{
    width: 90px;

    margin-top: auto;
    margin-bottom: auto;
    right: 50px;
    position:absolute;
    cursor: pointer;
}

#opentrackr{
    color: black;
    text-decoration: none;
}




.html{
    overflow:hidden;
}

body{
    background-color: #f5f5f5;
    margin: 0;
    padding: 0;
}

#main {
    width: 80%;
    height: 24rem;
    margin: 0 auto;
    background-color: white;
    border-radius: 5px;

    box-shadow: 0px 0px 10px 2px rgb(119 119 119 / 75%);
     -moz-box-shadow: 0px 0px 10px 2px rgba(119, 119, 119, 0.75);
    -webkit-box-shadow: 0px 0px 10px 2px rgb(119 119 119 / 75%);
}

#main h1, h2, h3{
    text-align: center;
}

h1{
    padding: 20px;
    font-size: 3.8rem;
    margin-bottom: -2.2rem;
    font-family: 'Roboto', sans-serif;
    text-transform: uppercase;
}
h2{
    color: black;
    font-size: 1.75rem;
    font-family: 'Poppins', sans-serif;
    text-decoration: underline;
}

h3{
    font-size: 1.5rem;
    font-family: 'Montserrat', sans-serif;
    line-height: 2.7rem;
}

h3 span{
    font-weight: 300;
}

#addresse{
    width: 37rem;
    background-color: rgba(255, 180, 151, 0.349);
    margin-left: auto;
    margin-right: auto;
    border-radius: 5px;
    box-shadow: 0px 0px 10px 2px rgb(119 119 119 / 50%);
     -moz-box-shadow: 0px 0px 10px 2px rgba(119, 119, 119, 0.50);
    -webkit-box-shadow: 0px 0px 10px 2px rgb(119 119 119 / 50%);
    margin-top: 3.2rem;
    padding: 2px;
}


/* ------------------------------------------------------------ */
#tuto{
    width: 80%;
    margin-left: auto;
    margin-right: auto;
}


.container {
    margin-top: 50px;
    position: absolute;
    width: 80%;
    min-height: 90px;
    background: #ffffff;
    border-radius: 2px;
    box-shadow: 0 0 10px rgba(0,0,0,0.5);
    margin-top: 0px;
}

.container-onglets{
    background: #ffffff;
    width: 100%;
    height: 90px;
    display: flex;
    font-family: 'Poppins', sans-serif;
    border-radius: 5px;
}
.onglets {
    width: 80%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 22px;
    font-weight: 700;
    cursor: pointer;
}
.onglets:not(:nth-child(3)) {
    border-right: 1px solid #333;
}

.contenu {
    height: 70%;
    width: 100%;
    position: absolute;
    opacity: 0;
}
.contenu h3 {
    padding: 20px;
}
.contenu hr {
    width: 20%;
    height: 2px;
    margin-left: 20px;
    background: #000;
    border: none;
}
.contenu p {
    padding: 20px;
}

/* Anim */

.active {
    background: #ff9234;
    color: #f1f1f1;
    transition: all 0.3s ease;
}

.active-contenu {
    animation: fade 0.5s forwards;
}
@keyframes fade {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}