
::-webkit-scrollbar {
    width: 7px;
}

::-webkit-scrollbar-thumb {
    background: #FFF;
    border-radius: 7px;
}
::-webkit-scrollbar-thumb:active {
    background: #FF0000;
    border-radius: 7px;
}
::-webkit-scrollbar-track {
    background: transparent;
}

* {
    scrollbar-color: white transparent;
    color: white;
}

body {
    background-color: black;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

header {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-around;
    align-items: center;
    width: 100%;
    padding-top: 20px;
}

#header_ul {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row;
    flex-wrap: wrap;
    row-gap: 40px;
    column-gap: 30px;
}

ul li a {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-style: normal;
    font-size: 15px;
    line-height: 22px;
}

.logo {
    width: 80px;
    height: 80px;
}

a {
    text-decoration: none;
    color: white;
}

p, label {
    color: white;
    font-family: 'Montserrat', sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 30px;
}

h1 {
    color: white;
    font-family: 'Montserrat', sans-serif;
    font-style: normal;
    font-size: 48px;
    font-weight: 400;
}

.actual_page {
    display: inline;
    position: relative;
    overflow: hidden;
    color: #FF0000;
    padding-bottom: 5px;
    padding-left: 5px;
    padding-right: 5px;
}

.actual_page:after {
    content: "";
    position: absolute;
    z-index: -1;
    left: 0;
    right: auto;
    width: 100%;
    background: #FF0000;
    bottom: -5px;
    height: 2px;
}

.links_underligned {
    display: inline;
    position: relative;
    overflow: hidden;
    padding-bottom: 5px;
    padding-left: 5px;
    padding-right: 5px;
    
}

.links_underligned:hover {
    color: #FF0000;
}
.links_underligned:after {
    content: "";
    position: absolute;
    z-index: -1;
    right: 0;
    width: 0;
    bottom: -5px;
    background: #FFF;
    height: 2px;
    transition-property: width;
    transition-duration: 0.3s;
    transition-timing-function: ease-out;
}

.links_underligned:hover:after,
.links_underligned:focus:after,
.links_underligned:active:after {
    left: 0;
    right: auto;
    width: 100%;
    background: #FF0000;
}

.menu-deroulant > a:after{
    content: '>';
    font-size: 15px;
    margin-left: 7px;
    display: inline-block;
    position: relative;
    margin-bottom: 7px;
    margin-top: 7px;
    
}

.sous-menu {
    
    /* width: 100%; */
    text-align: left;
    background-color: rgb(0, 0, 0);
    border-radius: 2px;
    overflow: hidden;
    max-height: 0;
    position: absolute;
    z-index: 1;
    
    
}
  
.sous-menu > li > a {
    height: 50px;
    padding-left: 20px;
    padding-right: 20px;
    /* width: 100%; */
    align-items: center;
    display: flex;
    
}


  
.sous-menu > li:hover > a {
    color: #FF0000;
}

@keyframes rotationFleche {
    0% {
      transform: rotate(0deg);
    }
    100%{
      transform: rotate(90deg);
    }
  }

.menu-deroulant:hover > a:after{
    animation: rotationFleche 0.2s linear forwards;
}

@keyframes apparitionSousMenu {
    0% {
      box-shadow: 0px 3px 3px 1px rgba(0,0,0,0);
      border-top: 3px solid #FF0000;
    }
    30% {
      box-shadow: 0px 3px 3px 1px rgba(0,0,0,0.3);
    }
    100% {
      max-height: 50em;
      border-top: 3px solid #FF0000;
      box-shadow: 0px 3px 3px 1px rgba(0,0,0,0.3);
    }
}

.menu-deroulant:hover > .sous-menu {
    animation: apparitionSousMenu 1s forwards;
}




.button_header {
    border: solid;
    border-width: 2px;
    border-radius: 1000px;
    border-color: white;
    padding-left: 24px;
    padding-right: 24px;
    padding-top: 12px;
    padding-bottom: 12px;
}

.button_header:hover {
    background-color: white;
    transition-duration: 0.2s;
    transition-timing-function: ease-out;
    padding-right: 19px;
}

.button_header:hover a {
    color: black;
    transition-duration: 0.1s;
    transition-timing-function: ease-out;
}

.button_header a {
    display: flex;
    align-items: center;
}

.button_header a i{
    margin-left: 10px;
}

.button_header:hover a i {
    color: black;
    transition-duration: 0.2s;
    transition-timing-function: ease-out;
    margin-left: 15px;
}

footer {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
}

#bas_de_page_ul {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row;
    flex-wrap: wrap;
    row-gap: 40px;
    column-gap: 30px;
    gap: 20px;
}

#bas_de_page_ul li a {
    font-family: 'Montserrat', sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 15px;
}

#menu_tab {
    z-index: 11;
    color: white;
    display: none;
}

.logo_bas_de_page {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 6vh;
    margin-bottom: 8vh;
}

#CopyRight {
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-family: 'Montserrat', sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    margin-bottom: 4vh;
}

.liens-reseaux {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row;
    margin: 2vh;
}

.logo_reseau {
    margin: 20px;
}

.logo_reseau:hover i {
    transition-duration: 0.2s;
    transition-timing-function: ease-out;
    color: #FF0000;
}

#menu_header {
    z-index: 10;
    position: fixed;
    top:0px;
    left:0px;
    width: 100%;
    height: 100%;
    background-color: black;
    display: none;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 30px;
}

#menu_ul {
    display: flex;
    gap: 20px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

#menu_ul > li > a {
    color: white;
}

.button_menu {
    border: solid;
    border-width: 2px;
    border-radius: 1000px;
    border-color: white;
    padding-left: 24px;
    padding-right: 24px;
}

.button_menu:hover {
    transition-duration: 0.2s;
    transition-timing-function: ease-out;
    padding-right: 19px;
}

.button_menu a {
    display: flex;
    align-items: center;
}

.button_menu a i{
    margin-left: 10px;
}

.button_menu:hover a i {
    transition-duration: 0.2s;
    transition-timing-function: ease-out;
    color: #FF0000;
    margin-left: 15px;
}

#user_profil {
    width: 50px;
    height: 50px;
    border-radius: 100px;
    cursor: pointer;
}

#user_disponibility {
    position: absolute;
    border-style: solid;
    border-width: 3px;
    border-color: black;
    width: 16px;
    height: 16px;
    background-color: #38a169;
    border-radius: 10px;
    bottom: 0;
    right: 0;
    display : none;
}

#user_container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    row-gap: 6px;
}

.main_btn {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-style: normal;
    font-size: 15px;
    line-height: 22px;
    background-color: transparent;
    color: white;
    cursor: pointer;
    border: solid;
    border-width: 2px;
    border-radius: 1000px;
    border-color: white;
    padding-left: 48px;
    padding-right: 48px;
    padding-top: 16px;
    padding-bottom: 16px;
    margin-top: 16px;
}

.main_btn:hover {
    color: black;
    background-color: white;
    padding-right: 43px;
    transition-duration: 0.2s;
    transition-timing-function: ease-out;
}

.main_btn:hover i {
    color: black;
    transition-duration: 0.2s;
    transition-timing-function: ease-out;
    margin-left: 15px;
}

.main_btn i{
    margin-left: 10px;
}

@media only screen and (max-width: 740px) {
    #header_ul {
        display: none;
    }

    .links_underligned:after {
        background-color: black;
    }

    #user_disponibility {
        border-color: white;
    }

    #user_container > p {
        color: black;
    }

    header {
        justify-content: space-between;
        flex-wrap: nowrap;
    }

    header > * {
        margin-left: 10px;
        margin-right: 10px;
    }

    #menu_tab {
        display: block;
    }

    p {
        font-size: 14px;
    }

    #bas_de_page_ul li a {
        font-size: 14px;
    }
    #CopyRight {
        font-size: 12px;
    }
    .main_btn {
        font-size: 14px;
        padding-left: 32px;
        padding-right: 32px;
    }
    .main_btn:hover {
        padding-right: 27px;
    }
}

@media only screen and (max-width: 420px) {
    #CopyRight {
        display: none;
    }
}