/* ----------- */
/* Breakpoints */
/* ----------- */

body {
    min-width:360px;
}

div.sidebar_container.ADMIN_SIDEBAR_CONTAINER ~ div.main_content_container{
    min-width:848px;
}

div#main{
    margin-top: 85px;
}

/* >=1200px: desktop layout */
@media all and (min-width: 1200px) {
    .mainContent{
        min-width: 0;
    }
}

/* under 1200px: tablet layout */
@media all and (max-width: 1199px) {
    div#main{
        margin-top: 0px;
    }
}

/* under 1200px: tablet layout */
@media all and (min-width: 780px) and (max-width: 1199px) {
    div.simpleSearch.justify-end,
    div.extendedSearch.justify-end{
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }

    div.dateContainer.justify-between{
        -webkit-box-pack: start;
        -ms-flex-pack: start;
        justify-content: start;
    }
}

/* under 780px: mobile layout */
@media all and (max-width: 779px) {
    div#main{
        margin-top: 85px;
    }

    .header-logo {
        right: 0px !important;
    }

    .EventPicContainer{
        width:66px !important;
        height:50px;
        margin-right:12px;
    }

    .EventPicContainer img{
        width:100%;
        height:100%;
        object-fit: contain;
    }
}