body{
    font-family: 'Nunito', sans-serif;
    color: #212121;
}

.textLight {
    color: #999999;
}

.bold {
    font-weight: bold;
}

div#MainContent>section {padding-top: 90px;position: relative;display: none;}




div#LeftPanel {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 240px;
    box-sizing: border-box;
    padding: 10px;
    z-index: 1;
    box-shadow: 0px 0px 17px -12px #646669;
}

div#MainContent {
    position: absolute;
    top: 0;
    left: 240px;
    right: 0;
    bottom: 0;
    box-sizing: border-box;
    overflow: auto;
    padding: 30px;
    padding-top: 0px;
    padding-left: 50px;
    background: #e4e7eb;
}

div#LeftPanel>div {
    padding: 14px 0px;
    display: flex;
    cursor: pointer;
    border-radius: 8px;
    margin-bottom: 10px;
    align-items: center;
    color: #bebfc1;
}

div#LeftPanel>div i {
    margin-right: 9px;
}

div#LeftPanel>div.selected {
    color: rgb(22,200,60);
    /*background: linear-gradient(90deg, rgba(22,200,60,1) 0%, rgba(128,221,66,1) 100%);*/
    /* box-shadow: 0px 3px 7px -5px #555; */
}

.mainSection {
    display: inline-block;
    margin: 20px;
    background: linear-gradient(180deg, rgba(255,255,255,1) 0%, rgba(246,246,246,1) 100%);
    border-radius: 15px;
    padding: 30px;
}

.smallMenu div#LeftPanel {
    width: 70px;
    font-size: 35px;
}

.smallMenu div#LeftPanel>div>div {
    display: none;
}

div#LeftPanel>div.selected:before {content: '';position: absolute;right: -5px;height: 8px;width: 8px;border-radius: 10px;background: rgb(22,200,60);border: 2px solid white;}

.smallMenu div#MainContent {
    left: 70px;
}

.smallMenu div#LeftPanel>div i {
    margin: 0px;
}

.smallMenu div#LeftPanel>div {
    justify-content: center;
}

div#LeftPanel img {
    width: 50px;
    margin: 15px auto;
    display: block;
    margin-top: 15px;
}

.listWrapper {
    margin-top: 30px;
}

.spaceBetween {
    display: flex;
    justify-content: space-between;
}

.spaceBetween+.listWrapper {
    margin-top: 10px;
}

.smallMenu div#LeftPanel>div.menuSplit {
    height: 1px;
    background: #e4e4e4;
    padding: 0px;
    width: 80%;
    margin: 13px auto;
}

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

.flex{
    display: flex;
    align-items: center;
}


.kiosk {
    display: none;
}

.kiosk {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: white;
    z-index: 100;
}

.lineBreak {
    border-bottom: 1px solid #ddd;
    margin: 30px 10px;
}




@media screen and (max-width: 600px) {

    .smallMenu div#LeftPanel {
        position: fixed;
        top: 0;
        left: 0;
        bottom: 0;
        top: auto;
        background: white;
        height: 80px;
        overflow: hidden;
        transition: all .3s;
        width: 100%;
        display: flex;
        justify-content: space-around;
        padding-bottom: 20px;
    }

    .smallMenu div#MainContent {
        left: 0px;
        padding: 20px;
        padding-top: 0px;
        bottom: 80px;
    }

    div#LeftPanel.show {
        /* height: 100vh; */
    }

    #MainContent .listRow>div:nth-of-type(1),
    #MainContent .listRow>div:nth-of-type(2),
    #MainContent .listHeader>div:nth-of-type(1),
    #MainContent .listHeader>div:nth-of-type(2){
        display: block;
    }

    #MainContent .listRow>div,
    #MainContent .listHeader>div{
        display: none;
    }

    #MainContent .listGrid.sevenCol .listRow,
    #MainContent .listGrid.sevenCol .listHeader{
        grid-template-columns: 1fr 1fr;
    }

    section#Products h3 {
        margin-bottom: -20px;
    }

    .flex {
        flex-wrap: wrap;
    }

    .statItem {
        width: 100%;
    }

    #MainContent .mainHeader {
        padding-left: 20px;
        left: 0px;
        margin-left: 0px;
    }

    div#LeftPanel img {
        position: fixed;
        top: 0px;
        left: 0px;
        height: 93px;
        background: white;
        margin: 0px;
        width: 70px;
        display: none;
    }

    div#LeftPanel>div.selected:before {
        display: none;
    }

    .smallMenu div#LeftPanel {font-size: 30px;}
}






/**************************
        Loading
***************************/
#LoadingScreen{
    position: fixed;z-index: 100;left: 0;right: 0;top: 0;bottom: 0;background: white;display: flex;align-items: center;justify-content: center;color: #333;
}

#LoadingScreen h3 {
    margin-bottom: -20px;
}

div#LoadingScreen img {
    height: 180px;
    animation: breathing 2s ease-out infinite normal;
}

div#LoadingScreen h5 {
    margin-top: -20px;
    color: #999;
}

div#LoadingScreen>div {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

@-webkit-keyframes breathing {
    0% {
        -webkit-transform: scale(0.9);
        transform: scale(0.9);
    }

    25% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }

    60% {
        -webkit-transform: scale(0.9);
        transform: scale(0.9);
    }

    100% {
        -webkit-transform: scale(0.9);
        transform: scale(0.9);
    }
}

@keyframes breathing {
    0% {
        -webkit-transform: scale(0.9);
        -ms-transform: scale(0.9);
        transform: scale(0.9);
    }

    25% {
        -webkit-transform: scale(1);
        -ms-transform: scale(1);
        transform: scale(1);
    }

    60% {
        -webkit-transform: scale(0.9);
        -ms-transform: scale(0.9);
        transform: scale(0.9);
    }

    100% {
        -webkit-transform: scale(0.9);
        -ms-transform: scale(0.9);
        transform: scale(0.9);
    }
}

