
#layer_shadow_dropdown_basket{
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-color: rgba(0,0,0,0.8);
    transition: opacity .15s linear;
    z-index: 1000;
}
#dropdown_basket::after{
    display: none;
}
#dropdown_menu_basket{
    z-index: 1040;
    min-width: 45vw;
    border-radius: 15px;
    border: none;
    box-shadow: inset 0 2px 8px rgb(0 0 0 / 20%)
}
#header_basket .text{
    font-size: 1.25rem;
}
#body_basket{
    border-bottom: 2px solid var(--primary_font_color_tc);
}
#body_basket ul{
    overflow-y: scroll;
}
#body_basket ul::-webkit-scrollbar {
    height: 0px;
}
#body_basket ul::-webkit-scrollbar {
    width: 0px;
}
#body_basket li{
    border: none;
}
#body_basket li .movie_poster{
    border-radius: 15px;
    width: 90px;
    height: 120px;
    object-fit: cover;
}
#body_basket .text{
    font-size: 1.15rem;
}
#footer_basket img{
    width: 12.5px;
}
#footer_basket .text{
    font-size: 1.25rem;
}
#ul_basket{
    overflow-y: scroll;
    overflow-x: hidden; 
    max-height: 60vh;
}














/*----------------- CSS pour tablettes ----------------------------------*/
@media all and (max-device-width:1024px) and (orientation: portrait){
    #dropdown_menu_basket{
        min-width: 70vw;
    }
}
@media all and (max-device-width:1024px) and (orientation: landscape){
    #dropdown_menu_basket{
        min-width: 50vw;
    }
}


/*----------------- CSS pour Smartphones et tablette---------------------*/
@media all and (max-device-width:768px) and (orientation: portrait){
    #dropdown_menu_basket{
        min-width: 75vw;
    }
    #header_basket .text{
        font-size: 1rem;
    }
    #body_basket li .movie_poster{
        border-radius: 15px;
        width: 60px;
        height: 80px;
    }
    #body_basket .text{
        font-size: 0.80rem;
    }
    #footer_basket .text{
        font-size: 1rem;
    }
}


/*----------------- CSS pour Smartphones --------------------------------*/
@media all and (max-device-width:480px) and (orientation: portrait){
    #dropdown_menu_basket{
        min-width: 95vw;
    }
    #ul_basket{
        max-height: 50vh;
    }
}
@media all and (max-device-width:750px) and (orientation: landscape){
    #dropdown_menu_basket{
        min-width: 75vw !important;
    }
}

@media all and (max-device-width:920px) and (orientation: landscape){
    #dropdown_menu_basket{
        min-width: 60vw;
    }
}