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

body {
    font-family: "Open Sans", sans-serif;
    background: #f4f7fb;
}

a {
    text-decoration: none;
    color: black;
}

.cls-container {
    width: 100%;
    min-height: 100vh;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 86px minmax(0, 1fr);
    grid-template-areas: "header header" "menu content";
    grid-template-rows: 56px auto;
    transition: grid-template-columns .22s ease;
    overflow-x: hidden;
}

@media screen and (max-width: 900px) {
    .cls-container {
        grid-template-columns: minmax(0, 1fr);
        grid-template-areas: "header header" "content content";
        grid-template-rows: 56px auto;
    }

    .cls-container.cls-active {
        grid-template-columns: minmax(0, 1fr);
    }
}

.cls-container.cls-active {
    grid-template-columns: minmax(280px, 18%) minmax(0, 1fr);
}


.cls-menu-left {
    grid-area: menu;
    min-height: 0;
}

/*.cls-content {*/
/*    grid-area: content;*/
/*    background-color: rgb(237, 237, 237);*/
/*    border: 1px solid #c9c9c9;*/
/*    border-radius: 12px;*/
/*}*/

/*.cls-main {*/
/*    background-color: rgb(244, 244, 244);*/
/*    padding-left: 15px;*/
/*    padding-right: 15px;*/
/*}*/


.cls-main {
    grid-area: content;
    background-color: rgb(225 225 225);
    padding-left: 15px;
    padding-right: 15px;
}

.cls-main-v2 {
    grid-area: content;
    min-height: 100vh;
    padding: 28px 15px 15px;
    background: #f5f7fa;
    min-width: 0;
}

.cls-content {
    background: #ffffff;
    border: 1px solid #d8e1ea;
    border-radius: 12px;
    height: 100%;
    min-width: 0;
}

.cls-clear-filters {
    color: #556fc3;
    margin-left: 10px;
}

.cls-add-new {
    text-align: right;
    border-radius: 15px;
}

.cls-menu-overlay {
    position: fixed;
    inset: 56px 0 0;
    background: rgba(9, 16, 26, 0.46);
    border: 0;
    opacity: 0;
    pointer-events: none;
    transition: opacity .2s ease;
    z-index: 1050;
}

.cls-container.cls-mobile-open .cls-menu-overlay {
    opacity: 1;
    pointer-events: auto;
}

@media screen and (max-width: 900px) {
    body.cls-menu-lock {
        overflow: hidden;
    }
}
