#cookie_note{
    display: none;
    position: fixed;
    z-index: 20;
    bottom: 15px;
    left: 50%;
    max-width: 90%;
    transform: translateX(-50%);
    padding: 20px;
    background-color: white;
    border-radius: 4px;
    box-shadow: 2px 3px 10px rgba(0, 0, 0, 0.4);
}

#cookie_note p{
    margin: 0;
    font-size: 1rem;
    text-align: left;
    color: black;
}

.cookie_accept{
    width:20%;
    height: 50px;
    border-radius: 25px 25px;
    background-color: #f75815 var(--accent-color);
    border-color: #f75815 var(--accent-color);
    color: #ffffff var(--contrast-color);
    padding: 0 30px;
    font-weight: 600;
    transition: all 0.3s ease;

}
@media (min-width: 576px){
    #cookie_note.show{
        display: flex;
    }
}

@media (max-width: 575px){
    #cookie_note.show{
        display: block;
        text-align: left;
    }
}

.img-cart {
    width: 38px;
    height: 38px;
}

.videoWrapper {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 */
    padding-top: 25px;
    height: 0;
}

.videoWrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.bd-toc {
    position: -webkit-sticky;
    position: sticky;
    top: 5rem;
    right: 0;
    z-index: 2;
    height: calc(100vh - 7rem);
    overflow-y: auto;
}