/*
Theme Name:     Dionysos
Description:    Child theme
Author:         Christophe Martin & Pauline De Craene
Template:       hello-elementor
Version:        1.0
*/

body {
    overflow-x: hidden;
}

body.home .myheader {
    display: none;
}

.bottomBar {
    display: none;
}
@media (max-width: 767.98px) {
    body {
        padding-bottom: 70px;
    }
    .bottomBar {
        position: fixed;
        left: 0;
        bottom: 0;
        right: 0;
        display: flex;
        background-color: #1d170c;
        color: #E7BF60;
        z-index: 9999;
        transform: translateY(102%);
        transition: transform 400ms ease-in-out;
    }

    .bottomBar .elementor {
        width: 100%;
    }
    .bottomBar .elementor h3{
        margin-top: 2px;
    }

    .bottomBar.show {
        transform: translateY(0);
    }
}