/* Global */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    height: 100%;
    font-family: 'Roboto';
    background-color: #202127;
}

.hidden {
    opacity: 0;
    display: none;
}

/* Header */

header {
    width: 100%;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 2.5rem;
    background-color: #2021272d;
    position: fixed;
    top: 0;
    z-index: 999;
    transition: 500ms;
}

header .logo img {
    width: 150px;
}

/* menuDesktop */

#menu_desktop {
    display: flex;
    list-style-type: none;
    justify-content: right;
    align-items: center;
}

#menu_desktop li {
    margin-left: 2.5rem;
}

#menu_desktop li a {
    color: #E0E0E0;
    text-decoration: none;
    transition: all 400ms;
}

#menu_desktop li a:hover {
    color:#ec8302;
    text-decoration: none;
}

#socialFields {
    display: flex;
    justify-content: space-around;
    width: auto;
}

#socialFields img {
    width: 35px;
    margin-left: 20px;
}

/* MenuMobile */

#menu_mobile #socialFields {
    flex-direction: column;
    width: auto;
}

#menu_mobile #socialFields img {
    margin-bottom: 1rem;
}

#menu_mobile {
    position: fixed;
    top: 70px;
    right: 0%;
    width: 100%;
    height: 100%;
    background-color: #202127;
    padding: 20px 30px;
    display: none;
    z-index: 1000;
}

@keyframes menu_show {
    from {
        display: none;
        transform: translateX(100%);
    }
    to {
        display: block;
        transform: translateX(0%);
    }
}

@keyframes menu_hide {
    from {
        display: block;
        transform: translateX(0%);
    }
    to {
        display: none;
        transform: translateX(100%);
    }
}

#menu_mobile ul {
    list-style-type: none;
    width: 100%;
}

#menu_mobile ul li {
    margin-bottom: 25px;
}

#menu_mobile ul li a {
    text-decoration: none;
    font-weight: 200;
    color: #E0E0E0;
    font-size: 1.5rem;
}

#menu_mobile_icon {
    width: 50%;
    display: none;
}

#checkbox_menu {
    position: absolute;
    opacity: 0;
}

label {
    cursor: pointer;
    position: relative;
    display: block;
    height: 22px;
    width: 30px;
}

label span {
    position: absolute;
    display: block;
    height: 5px;
    width: 100%;
    border-radius: 30px;
    background-color: #fff;
    transition: 0.4s ease-in-out;
}

label span:nth-child(1) {
    top: 0;
}


label span:nth-child(2) {
    top: 8px;
}

label span:nth-child(3) {
    top: 16px;
}

#checkbox_menu:checked + label span:nth-child(1) {
    transform: rotate(-45deg);
    top: 8px;
}

#checkbox_menu:checked + label span:nth-child(2) {
    transform: rotate(45deg);
    top: 8px;
}

#checkbox_menu:checked + label span:nth-child(3) {
    transform: rotate(45deg);
    top: 8px;
}


/* livePlayer */
#live_player {
    width: 100%;
    position: relative;
}

#live_player_sound_button {
    width: 150px;
    height: 120px;
    background-color: #ff8c0067;
    border-radius: 3px;
    border: 0;
    color: #fff;
    font-size: 1rem;
    position: absolute;
    top: calc(50% - 90px);
    right: calc(50% - 75px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: all 300ms;
}

#live_player_sound_button:hover {
    background-color: #ec8302;
}

#live_player_sound_button img {
    width: 50px; 
    margin-bottom: 10px;
}



/* last_videos */
/* playlists */
/* sponsors */
#last_videos {
    margin-bottom: 1rem;
}

#last_videos,
#playlists,
#sponsors {
    width: 100%;
    font-weight: 600;
    padding: 6rem 2rem 4rem 2rem;
    background-color: #202127;
}

#last_videos h3,
#playlists h3,
#sponsors h3 {
    font-size: 1.5rem;
    font-weight: lighter;
    color: #fff;
    margin-left: 1rem;
    margin-bottom: 1rem;
}

.slider_container {
    width: 100%;
    display: flex;
    padding: 1rem;
    justify-content: center;
    align-items: center;
}

.box {
    width: 350px;
    height: 220px;
}

.box iframe,
#sponsors iframe {
    width: 100%;
    height: 100%;
}

header#main_menu {
    background-color: #16171a;
}

#programations {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.programations_item {
    margin-top: 30px;
    width: 100%;
    padding: 1rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.programations_item h3 {
    color: #fff;
    width: 100%;
    max-width: 700px;
}

.programations_item hr {
    width: 100%;
    max-width: 700px;
    margin: 20px 0px;
}

.programations_item img {
    width: 100%;
    max-width: 700px;
}

/* sponsors */

#sponsors > div {
    padding: 0 1rem;
}

#sponsors div {
    max-width: 370px;
    height: 220px;
}

/* descriptions */
#descriptions {
    width: 100%;
    padding: 0 3rem;
    display: flex;
    margin-top: 5rem;
    justify-content: center;
}

#descriptions .item {
    background-color: #16171a;
    padding: 2rem 2rem;
    border-radius: 5px;
    margin: 2rem 2rem;
    width: calc(100% / 3);
}

#descriptions .item h3 {
    font-size: 1.5rem;
    font-weight: lighter;
    color: #fff;
    margin-left: 1rem;
    margin-bottom: 1rem;
}

#descriptions .item p {
    font-size: 1rem;
    color: #E0E0E0;
    padding: 0 1rem;
}

/* footer */
footer {
    width: 100%;
    margin-top: 5rem;
    padding: 2rem;
    text-align: center;
    background-color: #16171a;
}

footer a {
    text-decoration: none;
}

#socialFieldsFooter {
    width: 100%;
}

#socialFieldsFooter img {
    margin: 0 5px;
    width: 40px;
}

/* 1170px */
@media(max-width: 1170px) {
    #descriptions {
        flex-wrap: wrap;
    }

    #descriptions .item:last-child {
        width: 75%;
    }
}

/* 1000px */
@media(max-width: 1000px) {
    #descriptions .item {
        width: 100%;
    }

    #descriptions .item:last-child {
        width: 100%;
    }
}

/* 900px */
@media(max-width: 1170px) {
    header {
        padding: 0 3rem;
    }

    header #menu_desktop {
        display: none;
    }

    #menu_mobile_icon {
        width: auto;
        display: inline-block;
    }
}

@media(max-width: 445px) {
    .box {
        width: 100%;
        height: 170px;
    }

    .slider_container {
        padding: 0;
    }

    #descriptions {
        padding: 0;
    }

    #descriptions .item {
        margin: 2rem 1rem;
    }

    #sponsors > div {
        padding: 0;
    }

    
    #live_player_sound_button {
        width: 150px;
        height: 60px;
        background-color: #ff8c008a;
        border-radius: 3px;
        border: 0;
        color: #fff;
        font-size: 1rem;
        position: absolute;
        top: 50%;
        right: calc(50% (160px / 2));
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        transition: all 300ms;
    }

    #live_player_sound_button img {
        width: 25px; 
        margin: 0;
        margin-right: 10px;
    }

}


