.note-editor.note-frame, .note-editor.note-airframe {
    border: none;
}

.note-editor.note-frame .note-statusbar, .note-editor.note-airframe .note-statusbar {
    background-color: transparent;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    border-top: 0;
}

.z-depth-1, nav, .card-panel, .card, .toast, .btn, .btn-large, .btn-floating, .dropdown-content, .collapsible, ul.side-nav {
    -webkit-box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.16), 0 0 0 0 rgba(0, 0, 0, 0.12);
    -moz-box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.16), 0 0 0 0 rgba(0, 0, 0, 0.12);
    box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.16), 0 0 0 0 rgba(0, 0, 0, 0.12);
}

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

ul, li {
    list-style: none;
}

#carrousel {
    position: relative;
    max-width: 100%;
    max-height: 100%;
    margin-left: auto;
    margin-right: auto;
    margin-top: 20px;
    height: 900px;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    background-size: cover;
}

#carrousel ul li {
    position: absolute;
    z-index: 0;
}

.prevBtn {
    position: absolute;
    top: 50%;
    left: 2%;
    transform: translateY(-50%);
}

.nextBtn {
    position: absolute;
    top: 50%;
    left: calc(100% - 5%);
    transform: translateY(-50%);
}

.bubbles {
    display: flex;
    justify-content: center;
    align-items: center;
}

.bubbles a {
    display: block;
    margin: 5px;
    width: 10px;
    height: 10px;
    background-color: #1B2A2F;
    border-radius: 5px;
}

.img_car {
    max-width: 100%;
    max-height: 100%;
    min-height: 100%;
    min-width: 100%;
    width: 1500px;
    flex-shrink: 0;
    display: block;

}

@media (max-width: 768px) {

    .img_car {
        width: 100%;
        height: 100%;
    }

    #carrousel {
        position: relative;
        width: 100%;
        height: 250px;
        margin-left: auto;
        margin-right: auto;
        margin-top: 20px;
    }

    .prevBtn {
        position: absolute;
        top: 100px;
        left: 2%;
        transform: translateY(-50%);
    }

    .nextBtn {
        position: absolute;
        top: 100px;
        left: calc(100% - 10%);
        transform: translateY(-50%);
    }

    .note-video-clip {
        height: 1000px;
    }

}