﻿/* DEFAULTS 
----------------------------------------------------------*/
html, body, form {
    background: #ececec;
    font-size: 12px;
    font-family: "Helvetica Neue", "Lucida Grande", "Segoe UI", Arial, Helvetica, Verdana, sans-serif;
    margin: 0;
    padding: 0;
    color: #000000;
    height: 100%;
}

a:link, a:visited, a:active {
    color: #4b4b4b;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

p {
    margin-bottom: 10px;
    line-height: 1.6em;
}

pre {
    margin: 0;
}


/* HEADINGS   
----------------------------------------------------------*/

h1 {
    font-size: 250%;
    padding: 0px;
    margin: 5px 0;
    font-weight: normal;
    color: #4b4b4b;
}

h2 {
    font-size: 1.5em;
    font-weight: 600;
    margin: 5px 0;
    padding: 0;
}

h3 {
    font-size: 1.2em;
    margin: 5px 0;
    padding: 0;
}

h4 {
    font-size: 1.1em;
}

h5, h6 {
    font-size: 1em;
}

/* PRIMARY LAYOUT ELEMENTS   
----------------------------------------------------------*/

.wrapper {
    width: 100%;
    height: 100%;
}

.main {
    min-height: 90vh;
    height: auto;
    margin: 0;
}

/* header settings */
.header {
    background-color: #0d345d;
    box-shadow: 1px 1px 5px 0px gray;
    height: 66px;
    position: sticky;
    top: 0;
    width: 100%;
    z-index:11;
}

.logo {
    float: left;
    font-size: 35px;
    padding: 5px 0px 0px 5px;
    margin-right: 10px;
}

    .logo img {
        width: 60px;
    }

.nav {
    display: flex;
    width: 100%;
    height: 100%;
    position: fixed;
    background-color: #0d345d;
    overflow: hidden;
}



.side-menu:checked ~ .nav2 {
    max-height: calc(100% - 18em - 66px);
    width: 100%;
    height: 100%;
    position: fixed;
    bottom: 0;
}

.menu {
    padding:0;
}

    .menu a {
        display: block;
        padding: 22px 15px;
        color: white;
        font-size: 15px;
        margin: 13px 6px;
        padding: 9px 9px;
        border-radius: 5px;
    }

    .menu a:hover, .userinfo a:hover {
        background: #8da0b2;
        color: #fff;
        text-decoration: none;
        margin: 13px 6px;
        padding: 9px 9px;
        border-radius: 5px;
    }

.logstatus:hover {
    background: #8da0b2;
    color: #fff;
    text-decoration: none;
    margin: 11px 11px;
    padding: 9px 9px;
    border-radius: 5px;
}

    .menu li a.selected, .menu li a.selected:hover {
        background: #8da0b2;
        color: #fff;
        text-decoration: none;
        margin: 13px 6px;
        padding: 9px 9px;
        border-radius: 5px;
    }

.nav {
    max-height: 0;
    transition: max-height .5s ease-out;
    top: 66px;
}

.nav ul{
    list-style: none;
}

/* Menu Icon */
.hamb {
    cursor: pointer;
    float: left;
    padding: 32px 20px;
}
/* Style label tag */

.hamb-line {
    background: white;
    display: block;
    height: 2px;
    position: relative;
    width: 24px;
}
    /* Style span tag */

    .hamb-line::before,
    .hamb-line::after {
        background: white;
        content: '';
        display: block;
        height: 100%;
        position: absolute;
        transition: all .2s ease-out;
        width: 100%;
    }

    .hamb-line::before {
        top: 5px;
    }

    .hamb-line::after {
        top: -5px;
    }

.side-menu {
    display: none;
}
    /* Hide checkbox */

    /* Toggle menu icon */
    .side-menu:checked ~ nav {
        max-height: 18em;
    }

    .side-menu:checked ~ .hamb .hamb-line {
        background: transparent;
    }

        .side-menu:checked ~ .hamb .hamb-line::before {
            transform: rotate(-45deg);
            top: 0;
        }

        .side-menu:checked ~ .hamb .hamb-line::after {
            transform: rotate(45deg);
            top: 0;
        }

    .side-menu:checked ~ nav ul {
        display: grid;
        grid-template-columns: repeat(4, 0.75fr);
    }

        .side-menu:checked ~ nav ul li a{
        }


/* Responsiveness */
@media (min-width: 1597px) {
    .nav {
        max-height: none;
        top: 0;
        position: relative;
        float: left;
        width: fit-content;
        background-color: transparent;
        margin: 0;
        border: 0;
    }

    .menu {
        margin: 0;
        border: 0;
    }

    .menu li {
        float: left;
    }

    .menu  li  a.selected:hover {
        background: #8da0b2;
        color: #fff;
        text-decoration: none;
        margin: 13px 6px;
        padding: 9px 9px;
        border-radius: 5px;
    }

    .hamb {
        display: none;
    }
}

@media (max-width: 790px) {
    .side-menu:checked ~ nav {
        max-height:23em;
    }

        .side-menu:checked ~ nav ul {
            display: grid;
            grid-template-columns: repeat(3, 0.75fr);
        }

    .side-menu:checked ~ .nav2 {
        max-height: calc(100% - 23em - 66px);
    }
}

@media (max-width: 594px) {
    .side-menu:checked ~ nav {
        max-height: 34em;
    }

        .side-menu:checked ~ nav ul {
            display: grid;
            grid-template-columns: repeat(2, 0.75fr);
        }   

    .side-menu:checked ~ .nav2 {
        max-height: calc(100% - 34em - 66px);
    }
}

.mainmenucontainer {
}

.mainmenu {
    float: left;
    margin: 0;
    padding: 0;
    list-style: none;
}

    .mainmenu > li {
        float: left;
        margin: 0;
        padding: 0;
    }

        .mainmenu > li > a {
            float: left;
            margin: 0;
            padding: 22px 15px;
            font-size: 15px;
            color: #fff;
            text-decoration: none;
            -webkit-transition: all 0.3s;
            -moz-transition: all 0.3s;
            -ms-transition: all 0.3s;
            -o-transition: all 0.3s;
            transition: all 0.3s;
        }

            .mainmenu > li > a:hover {
                background: #8da0b2;
                color: #fff;
                text-decoration: none;
            }

            .mainmenu > li > a.selected, .mainmenu > li > a.selected:hover {
                background: #8da0b2;
                color: #fff;
                text-decoration: none;
            }


@media screen and (max-width : 1750px) {
    .mainmenu > li > a {
        padding: 23px 9px;
        font-size: 13px;
    }
}

@media screen and (max-width : 1480px) {
    .mainmenu > li > a {
        padding: 24px 6px;
        font-size: 12px;
    }
}


/* user info */
.userinfo {
    float: right;
    overflow: auto;
    position: relative;
    height: 65px;
    display: flex;
    margin: 0;
    padding: 0;
}

    .userinfo > a {
        float: right;
        margin: 0;
        color: #fff;
        text-decoration: none;
        font-size: 15px;
        clear: both;
        overflow: hidden;
        padding: 22px 15px;
    }

.logstatus {
    padding: 20px;
}

.navRight {
    max-height: none;
    top: 0;
    position: relative;
    float: right;
    width: fit-content;
    background-color: transparent;
    margin: 0;
    border: 0;
}


.currentuserphoto {
    float: left;
    height: 25px;
    width: 25px;
    margin: 5px 0 5px 5px;
    background-position: right center;
    background-repeat: no-repeat;
    background-size: cover;
    z-index: 2;
    position: relative;
}

/*main content settings*/

.contentcontainer {
    position: relative;
    margin: 0 0 50px;
    height: 100%;
}

.leftcol {
    float: left;
    width: 180px;
    background: #ececec;
    position: fixed;
    height: calc(100% - 66px);
    overflow-x: hidden;
    overflow-y: auto;
}

.rightcol {
    margin: 15px 15px 15px 190px;
    /*min-height: 500px;*/
    padding: 20px;
    background: white;
    border-radius: 5px;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

    .rightcol .leftcol {
        float: left;
        width: 180px;
        background: white;
        position: relative;
        height: auto;
        overflow-x: hidden;
        overflow-y: auto;
        top: 72px;
    }

    .rightcol .rightcol {
        margin: 15px 15px 15px 190px;
        min-height: 500px;
        padding: 20px;
        background: white;
        border-radius: 0;
        box-shadow: none;
    }

/* side menu */

.sideactions > li > a{
    background-color: #0d345d;
    color: white;
    text-align: center !important;
    padding-right: 19px !important;
}

.sidemenu {
    margin: 15px 0 0;
    padding: 0;
    list-style: none;
    overflow: auto;

}

    .sidemenu > li {
        float: left;
        overflow: auto;
    }

        .sidemenu > li.title {
            margin: 10px 0 0;
            padding: 5px 15px 5px 5px;
            color: #999;
            clear: both;
            text-align: left;
            width:88%;
            margin-bottom:5px;
            border-bottom:solid;
            font-size:15px;
        }

        .sidemenu > li.expanded,
        .sidemenu > li.collapsed {
            cursor: pointer;
            background: transparent url(_img/icon.expand.collapse.png) right bottom no-repeat;
        }

        .sidemenu > li.expanded {
            background-position: right -107px;
        }

        .sidemenu > li.collapsed {
            background-position: right -75px;
        }

        .sidemenu > li.expanded:hover {
            background-position: right -37px;
            color: #4b4b4b;
        }

        .sidemenu > li.collapsed:hover {
            background-position: right -5px;
            color: #4b4b4b;
        }

        .sidemenu > li > a {
            float: right;
            width: 150px;
            padding: 4px 10px;
            font-size: 15px;
            margin: 0 0 10px;
            text-align: left;
            border: solid 1px #ccc;
            border-right: none;
            border-bottom-width: 3px;
        }

            .sidemenu > li > a:hover {
                background: #ccc;
                text-decoration: none;
            }

            .sidemenu > li > a.selected, .sidemenu > li > a.selected:hover {
                background: #727272;
                border-bottom-color: #888;
                color:white;
                padding-right: 19px;
            }

.popupmenucontainer {
    background: #fff;
    border: solid 1px #ccc;
    padding: 10px;
}

.overflowbox {
    background: #fff;
    padding: 5px;
    width: 300px;
    max-height: 225px;
    border: solid 1px Gray;
    overflow: auto;
}

.uloptions {
    margin: 6px 3px 6px;
    padding: 0;
    list-style: none;
    border-top: solid 1px #c8c8c8;
}

    .uloptions li {
        list-style: none;
        padding: 6px 3px 6px 8px;
        color: #2c2c2c;
        border-bottom: solid 1px #c8c8c8;
        overflow: auto;
        position: relative;
        box-sizing: border-box;
    }

        .uloptions li a {
            float: left;
            width: 100%;
            padding-left: 10px;
            box-sizing: border-box;
        }

        .uloptions li.flag a {
            padding-left: 0;
            background: none;
            direction: rtl;
            float: right;
            text-align: right;
        }

            .uloptions li.flag a:hover {
                text-decoration: none;
                text-align: right;
            }

        .uloptions li:hover {
            background: #f5f5f5;
        }

        .uloptions li.selected {
            background: #ebebeb url(_img/ulitem.png) 2px center no-repeat;
        }

.selectusers, .selectclasses, .selectstudents, .selectdishes {
    border: none;
}

    .selectusers li, .selectclasses li, .selectstudents li, .selectdishes li {
        float: left;
        width: 31%;
        margin: 5px;
        border: solid 1px #ccc;
    }

    .selectdishes li {
        min-height: 150px;
        width: 100%;
        margin:unset !important;
        cursor:pointer;
    }

    .selectusers > li > .removecatalogitem, .selectdishes > li > .removecatalogitem, .selectclasses > li > .removecatalogitem, .selectstudents > li > .removecatalogitem {
        display: none;
    }

/* content sub menu */

.contentsubmenu {
    width: 100%;
    margin: 15px 0 0px;
    padding: 0;
    list-style: none;
    overflow: auto;
    border-bottom: solid 2px #888;
}

    .contentsubmenu > li {
        float: left;
    }

        .contentsubmenu > li > a {
            float: left;
            padding: 8px 20px;
            margin: 0 5px;
            min-width: 80px;
            text-align: center;
            border: solid 1px #ccc;
            border-bottom: 2px;
            background: #ececec;
        }

            .contentsubmenu > li > a:hover {
                background: #ccc;
                text-decoration: none;
            }

        .contentsubmenu > li.active > a, .contentsubmenu > li.active > a:hover, .contentsubmenu > li.selected > a, .contentsubmenu > li.selected > a:hover {
            background: #888;
            color: #fff;
            font-weight: bold;
        }

/* footer */
.footer {
    text-align: center;
    padding: 2.8rem 0px 2.8rem 0px;
    box-sizing: border-box;
    color: #4e5766;
    height: 90px;
    width: 100%;
}

/* FORM ELEMENTS   
----------------------------------------------------------*/

input[type=submit], .button, a.button {
    display: inline-block;
    outline: 0;
    cursor: pointer;
    padding: 5px 16px;
    font-size: 14px;
    font-weight: 500;
    line-height: 20px;
    vertical-align: middle;
    border: 1px solid;
    border-radius: 6px;
    color: white;
    background-color: #25486d;
    border-color: #1b1f2326;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    transition: 0.2s cubic-bezier(0.3, 0, 0.5, 1);
    transition-property: color, background-color, border-color;
    margin: 2.5px 5px 2.5px 0;
    text-decoration: none;
    margin-top: 5px;
}

    input[type=submit]:hover, .button:hover, buttonhover, a.button:hover {
        color: white;
        background-color: #0d345d;
        border-color: #1b1f2326;
        box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
        transition-duration: 0.1s;
        text-decoration: none;
    }

        input[type=submit]:hover buttonCancel, .button:hover buttonCancel, buttonhover buttonCancel {
            color: #ffffff;
            background-color: green;
            border-color: #1b1f2326;
            box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
            transition-duration: 0.1s;
            text-decoration: none;
        }

        .moreoptions {
    padding-right: 25px;
    border: none;
    background: #505F79 url(_img/bkg.button.moreoptions.png) right center no-repeat;
}

    .moreoptions:hover {
        border: none;
        color: #fff !important;
        background: #505F79 url(_img/bkg.button.moreoptions.png) right center no-repeat;
    }

.loginbox > input[type=text], .loginbox > input[type=password] {
    width: 250px;
    font-size: 16px;
    padding: 3px;
    margin: 0 0 20px 0;
}

input[type=text], input[type=password], select, textarea {
    background: #fff;
    font-size: 15px;
    padding: 4px;
    border: solid 1px #ccc;
    width: 300px;
    font-family: Trebuchet MS, Helvetica LT Std, Sans-Serif;
    margin: 0;
}

input[type=password] {
    width: 150px;
}

textarea {
    height: 100px;
}

.watermarktext {
    color: #999;
}

/* form table */

.form {
    margin: 0;
    padding: 0;
    width: 100%;
    border-collapse: collapse;
    border-spacing: 0;
}

.formFloat {
    margin: 0;
    padding: 0;
    width: 100%;
    border-collapse: collapse;
    border-spacing: 0;
    position: sticky;
    top: 66px;
    z-index: 10;
}

.form td {
    padding: 7px;
    border-bottom: solid 2px #ccc;
}

.formFloat td {
    padding: 7px;
    border-bottom: solid 2px #ccc;
}

.optionsrow > td {
    background: #ececec;
    border-bottom: solid 2px #ccc;
}

.titlerow > td {
    background: #ccc;
    font-weight: bold;
    color: #4b4b4b;
    border-bottom: solid 2px #888;
}

.firstcol {
    text-align: right;
    width: 30%;
    padding-right: 20px !important;
    background: #ececec;
    color: #4b4b4b;
}

.secondcol {
    width: 70%;
}

.middlecol {
    text-align: center;
    width: 30%;
    padding-right: 20px !important;
    background: #ececec;
    color: #4b4b4b;
}


/* DATATABLE ELEMENTS   
----------------------------------------------------------*/

.datatable {
    margin: 0;
    padding: 0;
    width: 100%;
    border-collapse: collapse;
    border-spacing: 0;
}

    .datatable td, .datatable th {
        padding: 10px 5px;
        text-align: left;
    }

.tableheader {
    background: #ececec;
    position: sticky;
    top: 0px;
}


    .tableheader > td {
    }

.tablebody > td {
    border-bottom: solid 2px #ececec;
}

.tablebody:hover > td {
    background: #8da0b2;
}

/* MISC  
----------------------------------------------------------*/

.microsoftLogo:hover {
    outline: 2px solid black;
    cursor:pointer;
}

.logincontainer {
    position: absolute;
    top: 50%;
    left: 50%;
    background: #ececec;
    padding: 20px;
    margin: -200px 0 0 -325px;
    width: 650px;
    overflow: auto;
}

.loginbox {
    float: right;
    margin: 0 0 15px;
}

.logincontent {
    float: left;
    border-right: solid 2px #fff;
    width: 345px;
    height: 200px;
    padding: 50px 0;
}
    .logincontent > img {
        padding-top:30px;
        width:93%
    }



.alt5 {
    font-weight: bold;
    font-size: 120%;
}

.alt3 {
    color: #666;
}

.altvalid {
    font-weight: bold;
    color: Green;
}

.altinvalid {
    font-weight: bold;
    color: Red;
}

.cameracontainer {
    float: left;
    background: #4b4b4b;
    padding: 10px;
}

.cameraplaceholder {
    float: left;
    padding: 10px;
    width: 320;
    height: 240;
    background: #ececec;
}

.cameraoptions {
    float: left;
    padding: 5px;
}

.cameralist li a {
    color: #fff !important;
}

.record {
    float: left;
    width: 15px;
    height: 15px;
    margin: 3px 7px 3px 0;
    background: #ff0000;
    border-radius: 8px;
}

.watermarktext {
    color: #999;
}

.validationError {
    width: 250px;
    margin: 10px 0;
}

.validationsummary {
    background: #4b4b4b;
    color: #fff;
    padding: 10px 20px;
}

.infobox {
    background: #ccc;
    padding: 10px;
    text-align: center;
}

.alertbox {
    position: fixed;
    top: 0;
    left: 50%;
    width: 300px;
    background: #ccc;
    margin: 0 0 0 -150px;
    padding: 10px;
    text-align: center;
    z-index: 11;
}

.coloralert {
    background: #0088cc;
    color: #fff;
    font-weight: bold;
}

.colorwarning {
    background: Red;
    color: #fff;
    font-weight: bold;
}


.colorlight {
    background: #cc9900;
    color: #fff;
    font-weight: bold;
}

/*  Product definitions   ---*/

.productscontainer {
    margin: 10px 0;
    overflow: auto;
}

.productbox {
    background-color: #ccc;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    border: solid 2px #ccc;
    height: 150px;
    width: 150px;
    float: left;
    margin: 0 10px 10px 0;
    position: relative;
}

    .productbox:hover {
        border: solid 2px #4b4b4b;
    }

.porductboxinfo {
    background: RGBA(0,0,0,0.8);
    color: #fff;
    padding: 5px;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
}

.porductboxinfoprice {
    float: right;
}

/*  Dish definitions   ---*/

.dishbox {
    background-color: #ccc;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    border: solid 2px #ccc;
    height: 50px;
    width: 50px;
    float: left;
}

/*  DATAPAGER definitions   ---*/

.datapager {
    padding: 10px;
    display: flex;
}

.arrows {
    position: relative;
    left: 50%;
    transform: translateX(-50%);
}


/*  Calendar extender definitions   ---*/

.mycalendar .ajax__calendar_container {
    padding: 4px;
    position: absolute;
    cursor: default;
    width: 170px;
    font-size: 10px;
    text-align: center;
    font-family: tahoma,verdana,helvetica;
    background: #fff;
    border: solid 1px #A0A0A0;
    z-index: 100;
}

.mycalendar .ajax__calendar_body {
    height: 139px;
    width: 170px;
    position: relative;
    overflow: hidden;
    margin: auto;
    padding: 0;
}

.mycalendar .ajax__calendar_days, .mycalendar .ajax__calendar_months, .mycalendar .ajax__calendar_years {
    top: 0px;
    left: 0px;
    height: 139px;
    width: 170px;
    position: absolute;
    text-align: center;
    margin: auto;
}

.mycalendar .ajax__calendar_container TABLE, .mycalendar .ajax__calendar_container TABLE TR, .mycalendar .ajax__calendar_container TABLE TR TD {
    font-size: 10px;
    border: none;
}

.mycalendar .ajax__calendar_header {
    height: 18px;
    width: 100%;
    background: #ececec;
    padding: 3px 0 0 0;
}

.mycalendar .ajax__calendar_prev {
    cursor: pointer;
    width: 15px;
    height: 15px;
    float: left;
    background-repeat: no-repeat;
    background-position: 50% 50%;
    background-image: url(<%=WebResource( "AjaxControlToolkit.Calendar.arrow-left.gif" )%>);
}

.mycalendar .ajax__calendar_next {
    cursor: pointer;
    width: 15px;
    height: 15px;
    float: right;
    background-repeat: no-repeat;
    background-position: 50% 50%;
    background-image: url(<%=WebResource( "AjaxControlToolkit.Calendar.arrow-right.gif" )%>);
}

.mycalendar .ajax__calendar_title {
    cursor: pointer;
    font-weight: bold;
}

.mycalendar .ajax__calendar_footer {
    height: 15px;
    background: #ececec;
    padding: 0 0 5px 0;
}

.mycalendar .ajax__calendar_today {
    cursor: pointer;
    padding-top: 5px;
    background: #ececec;
}

.mycalendar .ajax__calendar_dayname {
    height: 17px;
    width: 17px;
    text-align: center;
    padding: 0px 2px;
    font-size: 10px;
    color: #4b4b4b;
    font-weight: bold;
    border: none;
}

.mycalendar .ajax__calendar_day {
    height: 15px;
    width: 16px;
    text-align: center;
    vertical-align: middle;
    padding: 1px 2px 0 2px;
    margin: 1px;
    cursor: pointer;
    border: solid 1px #A0A0A0;
}

.mycalendar .ajax__calendar_month {
    height: 42px;
    width: 38px;
    text-align: center;
    cursor: pointer;
    overflow: hidden;
    border: solid 1px #ececec;
    margin: 1px;
}

.mycalendar .ajax__calendar_year {
    height: 42px;
    width: 38px;
    text-align: center;
    cursor: pointer;
    overflow: hidden;
    border: solid 1px #ececec;
    margin: 1px;
}

.mycalendar .ajax__calendar_container {
    background-color: #ffffff;
    color: #000000;
}

.mycalendar .ajax__calendar_footer {
    background: #ececec;
}

.mycalendar .ajax__calendar_dayname {
}

.mycalendar .ajax__calendar_day {
}

.mycalendar .ajax__calendar_month {
}

.mycalendar .ajax__calendar_year {
}

.mycalendar .ajax__calendar_active .ajax__calendar_day {
    background-color: #4b4b4b;
    border-color: #4b4b4b;
    color: #fff;
}

.mycalendar .ajax__calendar_active .ajax__calendar_month {
    background-color: #4b4b4b;
    border-color: #4b4b4b;
    color: #fff;
}

.mycalendar .ajax__calendar_active .ajax__calendar_year {
    background-color: #4b4b4b;
    border-color: #4b4b4b;
    color: #fff;
}

.mycalendar .ajax__calendar_other .ajax__calendar_day {
    color: #606060;
}

.mycalendar .ajax__calendar_other .ajax__calendar_year {
    color: #606060;
}

.mycalendar .ajax__calendar_hover .ajax__calendar_day {
    background-color: #ececec;
    border-color: #ececec;
    color: #4b4b4b;
    font-weight: bold;
    padding-top: 0;
}

.mycalendar .ajax__calendar_hover .ajax__calendar_month {
    background-color: #ececec;
    border-color: #ececec;
    color: #4b4b4b;
    font-weight: bold;
}

.mycalendar .ajax__calendar_hover .ajax__calendar_year {
    background-color: #ececec;
    border-color: #ececec;
    color: #4b4b4b;
    font-weight: bold;
}

.mycalendar .ajax__calendar_hover .ajax__calendar_title {
    color: #4b4b4b;
    font-weight: bold;
}

.mycalendar .ajax__calendar_hover .ajax__calendar_today {
    color: #4b4b4b;
    text-decoration: underline;
}

/*catalog*/

.catalogpage {
    background: #ccc;
    margin: 0;
    padding: 5px;
    width: 780px;
    height: 650px;
    overflow: hidden;
}

.catalogitem {
    float: left;
    width: 100px;
    height: 100px;
    position: relative;
    background: #4b4b4b;
    padding: 10px;
    margin: 5px;
}

    .catalogitem .catalogiteminfo {
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        padding: 5px;
        color: #fff;
        font-weight: bold;
        white-space: nowrap;
        overflow: hidden;
    }

/* se a janela for menor que 1220 */
@media only screen and (max-width: 1220px) {

    .catalogitem {
        width: 12%;
        margin: 1%;
    }

    .catalogpage {
        width: 100% !important;
    }

}

.ui-state-default {
    background: #fff286;
}

.ui-state-hover {
    background: #fff286;
}

.catalogitemplaceholder {
    text-align: center;
    padding: 50px 0;
}

.catalogitemcandidate {
    width: auto;
    color: #000;
    position: relative;
    margin: 5px 0;
    border: solid 1px #ccc;
    background: #ececec;
}

    .catalogitemcandidate:hover {
        color: #fff;
        background: #4b4b4b;
    }

        .catalogitemcandidate:hover .alt3 {
            color: #ececec;
        }

    .catalogitemcandidate > .changecatalogitem, .catalogitemcandidate > .alertcatalogitem, .catalogitemcandidate > .removecatalogitem, .catalogitemcandidate > .catalogitemimg, .catalogitemcandidate > .catalogitemimg > .colorpicker {
        display: none;
    }

.catalogitemimg {
    background: #222;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 80px;
    z-index: 0;
}

.catalogitemcandidate > .catalogiteminfo {
    margin: 5px 10px;
}

.catalogproductscolumn {
    float: right;
    width: 210px;
    margin: 0 0 0 10px;
    padding: 5px 10px;
    background: #ececec;
}

.catalogdishescolumn {
    float: right;
    width: 210px;
    margin: 0 0 0 10px;
    padding: 5px 10px;
    background: #ececec;
    height:100%;
}

.cataloguserscolumn {
    float: right;
    width: 210px;
    margin: 0 0 0 10px;
    padding: 5px 10px;
    background: #ececec;
}

.catalogproductscontainer {
    margin: 10px 0 5px;
    height: 400px;
    overflow: auto;
    overflow-x: none;
    overflow-y: auto;
}

.catalogdishescontainer {
    margin: 10px 0 5px;
    height: 100%;
    overflow: auto;
    overflow-x: none;
    overflow-y: auto;
}

.cataloguserscolumn {
    position: absolute;
    top: 160px;
    bottom: 0;
    right: 0;
    float: right;
    width: 210px;
    margin: 0 0 0 10px;
    padding: 5px 10px;
    background: #ececec;
    overflow: auto;
    overflow-x: none;
    overflow-y: auto;
}

.cataloguserscontainer {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 230px;
    top: 170px;
    margin: 0;
    overflow: auto;
    overflow-x: none;
    overflow-y: auto;
}

.changecatalogitem {
    width: 17px;
    height: 17px;
    position: absolute;
    top: 2px;
    left: 2px;
    background: #fff url(_img/icon.resize.png) center center no-repeat;
    z-index: 2;
    border: solid 1px #ccc;
}

.alertcatalogitem {
    width: 17px;
    height: 17px;
    position: absolute;
    top: 2px;
    left: 25px;
    background: #fff url(_img/icon.alert.png) center center no-repeat;
    z-index: 2;
    border: solid 1px #ccc;
}

.removecatalogitem {
    width: 17px;
    height: 17px;
    position: absolute;
    right: 2px;
    top: 2px;
    background: #fff url(_img/icon.close.png) center center no-repeat;
    z-index: 2;
    border: solid 1px #ccc;
    cursor:pointer;
}

.colorpicker {
}

.largeitem {
    width: 230px;
}

    .largeitem > .catalogitemimg {
        top: 0;
        left: 0;
        bottom: 0;
        height: 120px;
        width: 120px;
    }

    .largeitem > .catalogiteminfo {
        bottom: 0;
        left: 120px;
        right: 0;
        vertical-align: middle;
        padding: 5px;
    }

/* color picker */

div.colorPicker-picker {
    height: 16px;
    width: 16px;
    padding: 0 !important;
    border: 1px solid #ccc;
    background: url(_img/arrow.gif) no-repeat top right;
    cursor: pointer;
    line-height: 16px;
    font-size: 0.75em;
    font-weight: bold;
    text-align: center;
    margin: 60px 0 0 100px;
}

.largeitem > .catalogitemimg > div.colorPicker-picker {
    margin: 100px 0 0 100px !important;
}

div.colorPicker-palette {
    width: 110px;
    position: absolute;
    border: 1px solid #598FEF;
    background-color: #EFEFEF;
    padding: 2px;
    z-index: 9999;
}

div.colorPicker_hexWrap {
    width: 100%;
    float: left;
    display: none;
}

    div.colorPicker_hexWrap label {
        font-size: 95%;
        color: #2F2F2F;
        margin: 5px 2px;
        width: 25%;
    }

    div.colorPicker_hexWrap input {
        margin: 5px 2px;
        padding: 0;
        font-size: 95%;
        border: 1px solid #000;
        width: 65%;
    }

div.colorPicker-swatch {
    height: 12px;
    width: 12px;
    border: 1px solid #000;
    margin: 2px;
    float: left;
    cursor: pointer;
    line-height: 12px;
}

/* checkboxlist */
.checklistoptions {
    margin: 6px 3px 6px;
    padding: 0;
    list-style: none;
    overflow: auto;
}

    .checklistoptions > li {
        list-style: none;
        position: relative;
        border: solid 2px #ccc;
        float: left;
        width: 270px;
        margin: 5px;
        padding: 6px;
        height: 25px;
    }

        .checklistoptions > li:hover {
            background: #ececec;
        }

        .checklistoptions > li > label {
            position: absolute;
            top: 0;
            bottom: 0;
            left: 0;
            right: 0;
            padding: 5px 5px 5px 30px;
        }

        .checklistoptions > li.selected {
            background: #4b4b4b;
            color: #fff;
        }

/*modal popup*/

.modalbkg {
    background: #000;
    filter: alpha(opacity=50);
    -moz-opacity: .50;
    opacity: .50;
}

.modalpopup {
    height: 80%;
    width: 80%;
    margin: auto;
    background: #fff;
    padding: 10px 50px;
}

.modalpopupsmall {
    height: 400px;
    width: 700px;
    margin: auto;
    background: #fff;
    padding: 10px 50px;
    padding-bottom: 90px;
    border-radius: 5px;
}

.modalpopupfeaturedimage {
    height: 560px;
    width: 706px;
    margin: auto;
    background: #fff;
    padding: 10px 50px;
}

.modalpopupcontent {
    width: calc(100% - 100px);
    top: 0;
    bottom: 60px;
    margin: 10px auto;
    position: absolute;
    overflow: auto;
    overflow-x: hidden;
    overflow-y: auto;
}

.modalpopupsmall .modalpopupcontent {
    overflow: visible;
}

.modalpopupoptions
{
    width: calc(100% - 100px);
    position: absolute;
    bottom: 0;
    background: #ccc;
    padding: 10px 0;
    margin: 10px auto;
    text-align: center;
}

.modalpopupoptionsCategoriesProductsOnline {
    width: 90%;
    position: absolute;
    bottom: 0;
    background: #ccc;
    padding: 10px 0;
    margin: 10px auto;
    text-align: center;
}

.modalpopupsmall .modalpopupcontent, .modalpopupsmall .modalpopupoptions modalpopupoptionsCategoriesProductsOnline {
    width: 600px;
    left: 50%;
    margin-left: -300px;
}

.updateprogress {
    position: fixed;
    background: rgba(0,0,0,0.1);
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    z-index: 100000000;
}

.updateprogresscontent {
    position: absolute;
    width: 250px;
    text-align: center;
    height: 20px;
    padding: 10px;
    margin: -75px 0 0 -125px;
    top: 50%;
    left: 50%;
    background: #fff;
}

.photocontainer {
    background: #ccc;
    padding: 5px;
    width: 150px;
    height: 180px;
    position: relative;
}

    .photocontainer > img.userphoto {
        max-width: 150px;
        max-height: 160px;
    }

.photocontainersmall {
    background: #ccc;
    padding: 5px;
    width: 120px;
    height: 130px;
    position: relative;
}

    .photocontainersmall > img.userphotosmall {
        max-width: 120px;
        max-height: 130px;
    }

.fileupload {
    width: 120px;
}

    .fileupload > div > input, .fileupload > div > div {
        width: 120px !important;
        background: transparent !important;
    }

        .fileupload > div > div > input {
            display: none;
        }

.uploadphotocontainer {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 3px;
    margin: 2px;
    background: #fff;
}

/* ------------------------------------------------------ */
/*	password strength									  */
/* ------------------------------------------------------ */


.pwdstrenght {
    padding: 2px 10px;
    background-color: Yellow;
    z-index: 10002 !important;
}

.weak {
    background-color: Red;
    color: White;
    padding: 0px 5px;
    z-index: 10002 !important;
}

.average {
    background-color: Yellow;
    color: Black;
    padding: 0px 5px;
    z-index: 10002 !important;
}

.strong {
    background-color: Blue;
    color: White;
    padding: 0px 5px;
    z-index: 10002 !important;
}

.excellent {
    background-color: Green;
    color: White;
    padding: 0px 5px;
    z-index: 10002 !important;
}

/* ------------------------------------------------------ */
/*	File Uploader Styles								  */
/* ------------------------------------------------------ */
.uploadareabox {
    margin: 5px 0;
    padding: 0;
    position: relative;
}

.qq-uploader {
    width: 100%;
    background: #ccc;
    overflow: auto;
}

.qq-start {
    text-align: center;
    margin: 20px 0;
    min-height: 200px;
}

.qq-upload-button input[type=file] {
    left: 0;
    bottom: 0;
    width: 100px;
}

.qq-upload-drop-area {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 30px;
    z-index: 2;
    background: #FCD703;
    text-align: center;
}

    .qq-upload-drop-area span {
        display: block;
        position: absolute;
        top: 50%;
        width: 100%;
        margin-top: -8px;
        font-size: 16px;
    }

.qq-upload-drop-area-active {
    background: #B5C6D2;
}

.qq-upload-list {
    clear: both;
    margin: 15px;
    padding: 0;
    list-style: none;
    list-style-position: outside;
    overflow: auto;
}

    .qq-upload-list li {
        margin: 2px;
        padding: 5px;
        font-size: 12px;
        background: #f1f1f1;
        border: solid 1px #ccc;
        float: left;
        width: 275px;
    }

.qq-upload-file, .qq-upload-spinner, .qq-upload-size, .qq-upload-cancel, .qq-upload-failed-text {
    margin-right: 7px;
}

.qq-upload-file {
}

.qq-upload-spinner {
    display: inline-block;
    background: url(_img/loading.gif);
    width: 15px;
    height: 15px;
    vertical-align: text-bottom;
}

.qq-upload-size, .qq-upload-cancel, .qq-upload-failed-text {
    font-size: 11px;
    font-size: 90%;
    color: #4b4b4b;
}

.qq-upload-failed-text {
    display: none;
}

.qq-upload-fail .qq-upload-failed-text {
    display: inline;
    color: red;
}

/* multiselect*/

.multiselect {
    margin: 0;
    padding: 0;
    list-style: none;
    list-style-position: outside;
}

    .multiselect li {
        float: left;
    }

        .multiselect li input {
            display: none;
        }

        .multiselect li label {
            float: left;
            border: solid 1px #ccc;
            background: #ececec;
            text-align: center;
            min-width: 30px;
            height: 25px;
            line-height: 25px;
            white-space: nowrap;
            padding: 0 10px;
        }

            .multiselect li label:hover {
                background: #fff;
            }

            .multiselect li label.selected,
            .multiselect li label.selected:hover {
                background: #888;
                color: #fff;
            }
/* admin profiles */

.profileitem {
    float: left;
    padding: 10px;
    width: 150px;
    min-height: 110px;
    margin: 0 10px 10px 0;
    background: #fff;
}

/* report viewer */

.reportcontainer input[type=text] {
    width: 50px ;
}

/* select combobox*/


.select2-container {
    position: relative;
    display: inline-block;
    /* inline-block for ie7 */
    zoom: 1;
    *display: inline;
    vertical-align: top;
    overflow: hidden;
}

.select2-container,
.select2-drop,
.select2-search,
.select2-search input {
    /*
    Force border-box so that % widths fit the parent
    container without overlap because of margin/padding.

    More Info : http://www.quirksmode.org/css/box.html
  */
    -moz-box-sizing: border-box; /* firefox */
    -ms-box-sizing: border-box; /* ie */
    -webkit-box-sizing: border-box; /* webkit */
    -khtml-box-sizing: border-box; /* konqueror */
    box-sizing: border-box; /* css3 */
}

    .select2-container .select2-choice {
        background-color: #fff;
        -moz-background-clip: padding;
        -webkit-background-clip: padding-box;
        background-clip: padding-box;
        border: 1px solid #aaa;
        display: block;
        overflow: hidden;
        white-space: nowrap;
        position: relative;
        height: 26px;
        line-height: 26px;
        padding: 0 0 0 8px;
        color: #444 !important;
        text-decoration: none;
        font-weight: normal;
    }

    .select2-container.select2-drop-above .select2-choice {
        border-bottom-color: #aaa;
    }

    .select2-container .select2-choice span {
        margin-right: 26px;
        display: block;
        overflow: hidden;
        white-space: nowrap;
        -o-text-overflow: ellipsis;
        -ms-text-overflow: ellipsis;
        text-overflow: ellipsis;
    }

    .select2-container .select2-choice abbr {
        display: block;
        position: absolute;
        right: 26px;
        top: 8px;
        width: 12px;
        height: 12px;
        font-size: 1px;
        background: url(_img/select2.png) right top no-repeat;
        cursor: pointer;
        text-decoration: none;
        border: 0;
        outline: 0;
    }

        .select2-container .select2-choice abbr:hover {
            background-position: right -11px;
            cursor: pointer;
        }

.select2-drop {
    background: #fff;
    color: #000;
    border: 1px solid #aaa;
    border-top: 0;
    position: absolute;
    top: 100%;
    -webkit-box-shadow: 0 4px 5px rgba(0, 0, 0, .15);
    -moz-box-shadow: 0 4px 5px rgba(0, 0, 0, .15);
    -o-box-shadow: 0 4px 5px rgba(0, 0, 0, .15);
    box-shadow: 0 4px 5px rgba(0, 0, 0, .15);
    z-index: 100002;
    width: 100%;
    margin-top: -1px;
}

    .select2-drop.select2-drop-above {
        margin-top: 1px;
        border-top: 1px solid #aaa;
        border-bottom: 0;
        -webkit-box-shadow: 0 -4px 5px rgba(0, 0, 0, .15);
        -moz-box-shadow: 0 -4px 5px rgba(0, 0, 0, .15);
        -o-box-shadow: 0 -4px 5px rgba(0, 0, 0, .15);
        box-shadow: 0 -4px 5px rgba(0, 0, 0, .15);
    }

.select2-container .select2-choice div {
    -moz-background-clip: padding;
    -webkit-background-clip: padding-box;
    background-clip: padding-box;
    background: #ccc;
    border-left: 1px solid #aaa;
    position: absolute;
    right: 0;
    top: 0;
    display: block;
    height: 100%;
    width: 18px;
}

    .select2-container .select2-choice div b {
        background: url(_img/select2.png) no-repeat 0 1px;
        display: block;
        width: 100%;
        height: 100%;
    }

.select2-search {
    display: inline-block;
    white-space: nowrap;
    z-index: 10000;
    min-height: 26px;
    width: 100%;
    margin: 0;
    padding-left: 4px;
    padding-right: 4px;
}

.select2-search-hidden {
    display: block;
    position: absolute;
    left: -10000px;
}

.select2-search input {
    background: #fff url(_img/select2.png) no-repeat 100% -22px;
    padding: 4px 20px 4px 5px;
    outline: 0;
    border: 1px solid #aaa;
    font-family: sans-serif;
    font-size: 1em;
    width: 100%;
    margin: 0;
    height: auto !important;
    min-height: 26px;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
}

.select2-drop.select2-drop-above .select2-search input {
    margin-top: 4px;
}

.select2-search input.select2-active {
    background: #fff url(_img/spinner.gif) no-repeat 100%;
}

.select2-container-active .select2-choice,
.select2-container-active .select2-choices {
    -webkit-box-shadow: 0 0 5px rgba(0,0,0,.3);
    -moz-box-shadow: 0 0 5px rgba(0,0,0,.3);
    -o-box-shadow: 0 0 5px rgba(0,0,0,.3);
    box-shadow: 0 0 5px rgba(0,0,0,.3);
    border: 1px solid #5897fb;
    outline: none;
}

.select2-dropdown-open .select2-choice {
    border: 1px solid #aaa;
    border-bottom-color: transparent;
    -webkit-box-shadow: 0 1px 0 #fff inset;
    -moz-box-shadow: 0 1px 0 #fff inset;
    -o-box-shadow: 0 1px 0 #fff inset;
    box-shadow: 0 1px 0 #fff inset;
    background-color: #eee;
}

    .select2-dropdown-open .select2-choice div {
        background: transparent;
        border-left: none;
    }

        .select2-dropdown-open .select2-choice div b {
            background-position: -18px 1px;
        }

/* results */
.select2-results {
    margin: 4px 4px 4px 0;
    padding: 0 0 0 4px;
    position: relative;
    overflow-x: hidden;
    overflow-y: auto;
    max-height: 200px;
}

    .select2-results ul.select2-result-sub {
        margin: 0 0 0 0;
    }

        .select2-results ul.select2-result-sub > li .select2-result-label {
            padding-left: 20px;
        }

        .select2-results ul.select2-result-sub ul.select2-result-sub > li .select2-result-label {
            padding-left: 40px;
        }

        .select2-results ul.select2-result-sub ul.select2-result-sub ul.select2-result-sub > li .select2-result-label {
            padding-left: 60px;
        }

        .select2-results ul.select2-result-sub ul.select2-result-sub ul.select2-result-sub ul.select2-result-sub > li .select2-result-label {
            padding-left: 80px;
        }

        .select2-results ul.select2-result-sub ul.select2-result-sub ul.select2-result-sub ul.select2-result-sub ul.select2-result-sub > li .select2-result-label {
            padding-left: 100px;
        }

        .select2-results ul.select2-result-sub ul.select2-result-sub ul.select2-result-sub ul.select2-result-sub ul.select2-result-sub ul.select2-result-sub > li .select2-result-label {
            padding-left: 110px;
        }

        .select2-results ul.select2-result-sub ul.select2-result-sub ul.select2-result-sub ul.select2-result-sub ul.select2-result-sub ul.select2-result-sub ul.select2-result-sub > li .select2-result-label {
            padding-left: 120px;
        }

    .select2-results li {
        list-style: none;
        display: list-item;
    }

        .select2-results li.select2-result-with-children > .select2-result-label {
            font-weight: bold;
        }

    .select2-results .select2-result-label {
        padding: 3px 7px 4px;
        margin: 0;
        cursor: pointer;
    }

    .select2-results .select2-highlighted {
        background: #3875d7;
        color: #fff;
    }

    .select2-results li em {
        background: #feffde;
        font-style: normal;
    }

    .select2-results .select2-highlighted em {
        background: transparent;
    }

    .select2-results .select2-no-results,
    .select2-results .select2-searching,
    .select2-results .select2-selection-limit {
        background: #f4f4f4;
        display: list-item;
    }

    .select2-results .select2-disabled {
        display: none;
    }

.select2-more-results.select2-active {
    background: #f4f4f4 url(_img/spinner.gif) no-repeat 100%;
}

.select2-more-results {
    background: #f4f4f4;
    display: list-item;
}

/* disabled styles */

.select2-container.select2-container-disabled .select2-choice {
    background-color: #f4f4f4;
    background-image: none;
    border: 1px solid #ddd;
    cursor: default;
}

    .select2-container.select2-container-disabled .select2-choice div {
        background-color: #f4f4f4;
        background-image: none;
        border-left: 0;
    }


/* multiselect */

.select2-container-multi .select2-choices {
    background-color: #fff;
    border: 1px solid #aaa;
    margin: 0;
    padding: 0;
    cursor: text;
    overflow: hidden;
    height: auto !important;
    height: 1%;
    position: relative;
}

.select2-container-multi .select2-choices {
    min-height: 26px;
}

.select2-container-multi.select2-container-active .select2-choices {
    -webkit-box-shadow: 0 0 5px rgba(0,0,0,.3);
    -moz-box-shadow: 0 0 5px rgba(0,0,0,.3);
    -o-box-shadow: 0 0 5px rgba(0,0,0,.3);
    box-shadow: 0 0 5px rgba(0,0,0,.3);
    border: 1px solid #5897fb;
    outline: none;
}

.select2-container-multi .select2-choices li {
    float: left;
    list-style: none;
}

.select2-container-multi .select2-choices .select2-search-field {
    white-space: nowrap;
    margin: 0;
    padding: 0;
}

    .select2-container-multi .select2-choices .select2-search-field input {
        color: #666;
        background: transparent !important;
        font-family: sans-serif;
        font-size: 100%;
        height: 15px;
        padding: 5px;
        margin: 1px 0;
        outline: 0;
        border: 0;
        -webkit-box-shadow: none;
        -moz-box-shadow: none;
        -o-box-shadow: none;
        box-shadow: none;
    }

        .select2-container-multi .select2-choices .select2-search-field input.select2-active {
            background: #fff url(_img/spinner.gif) no-repeat 100% !important;
        }

.select2-default {
    color: #999 !important;
}

.select2-container-multi .select2-choices .select2-search-choice {
    -moz-background-clip: padding;
    -webkit-background-clip: padding-box;
    background-clip: padding-box;
    background-color: #e4e4e4;
    -webkit-box-shadow: 0 0 2px #ffffff inset, 0 1px 0 rgba(0,0,0,0.05);
    -moz-box-shadow: 0 0 2px #ffffff inset, 0 1px 0 rgba(0,0,0,0.05);
    box-shadow: 0 0 2px #ffffff inset, 0 1px 0 rgba(0,0,0,0.05);
    color: #333;
    border: 1px solid #aaaaaa;
    line-height: 13px;
    padding: 3px 5px 3px 18px;
    margin: 3px 0 3px 5px;
    position: relative;
    cursor: default;
}

    .select2-container-multi .select2-choices .select2-search-choice span {
        cursor: default;
    }

.select2-container-multi .select2-choices .select2-search-choice-focus {
    background: #d4d4d4;
}

.select2-search-choice-close {
    display: block;
    position: absolute;
    right: 3px;
    top: 4px;
    width: 12px;
    height: 13px;
    font-size: 1px;
    background: url(_img/select2.png) right top no-repeat;
    outline: none;
}

.select2-container-multi .select2-search-choice-close {
    left: 3px;
}


.select2-container-multi .select2-choices .select2-search-choice .select2-search-choice-close:hover {
    background-position: right -11px;
}

.select2-container-multi .select2-choices .select2-search-choice-focus .select2-search-choice-close {
    background-position: right -11px;
}

/* disabled styles */

.select2-container-multi.select2-container-disabled .select2-choices {
    background-color: #f4f4f4;
    background-image: none;
    border: 1px solid #ddd;
    cursor: default;
}

    .select2-container-multi.select2-container-disabled .select2-choices .select2-search-choice {
        background-image: none;
        background-color: #f4f4f4;
        border: 1px solid #ddd;
        padding: 3px 5px 3px 5px;
    }

        .select2-container-multi.select2-container-disabled .select2-choices .select2-search-choice .select2-search-choice-close {
            display: none;
        }
/* end multiselect */

.select2-result-selectable .select2-match,
.select2-result-unselectable .select2-result-selectable .select2-match {
    text-decoration: underline;
}

.select2-result-unselectable .select2-match {
    text-decoration: none;
}

.select2-offscreen {
    position: absolute;
    left: -10000px;
}

.ui-autocomplete-loading { background:url('data:image/gif;base64,R0lGODlhDwAPAKUAAEQ+PKSmpHx6fNTW1FxaXOzu7ExOTIyOjGRmZMTCxPz6/ERGROTi5Pz29JyanGxubMzKzIyKjGReXPT29FxWVGxmZExGROzq7ERCRLy6vISChNze3FxeXPTy9FROTJSSlMTGxPz+/OTm5JyenNTOzGxqbExKTAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACH/C05FVFNDQVBFMi4wAwEAAAAh+QQJBgAhACwAAAAADwAPAAAGd8CQcEgsChuTZMNIDFgsC1Nn9GEwDwDAoqMBWEDFiweA2YoiZevwA9BkDAUhW0MkADYhiEJYwJj2QhYGTBwAE0MUGGp5IR1+RBEAEUMVDg4AAkQMJhgfFyEIWRgDRSALABKgWQ+HRQwaCCEVC7R0TEITHbmtt0xBACH5BAkGACYALAAAAAAPAA8AhUQ+PKSmpHRydNTW1FxWVOzu7MTCxIyKjExKTOTi5LSytHx+fPz6/ERGROTe3GxqbNTS1JyWlFRSVKympNze3FxeXPT29MzKzFROTOzq7ISGhERCRHx6fNza3FxaXPTy9MTGxJSSlExOTOTm5LS2tISChPz+/ExGRJyenKyqrAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZ6QJNQeIkUhsjkp+EhMZLITKgBAGigQgiiCtiAKJdkBgNYgDYLhmDjQIbKwgfF9C4hPYC5KSMsbBBIJyJYFQAWQwQbI0J8Jh8nDUgHAAcmDA+LKAAcSAkIEhYTAAEoGxsdSSAKIyJcGyRYJiQbVRwDsVkPXrhDDCQBSUEAIfkECQYAEAAsAAAAAA8ADwCFRD48pKKkdHZ01NLUXFpc7OrsTE5MlJKU9Pb03N7cREZExMbEhIKEbGpsXFZUVFZU/P78tLa0fH583NrcZGJk9PL0VE5MnJ6c/Pb05ObkTEZEREJErKqsfHp81NbUXF5c7O7slJaU5OLkzMrMjIaEdG5sVFJU/Pr8TEpMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABndAiHA4DICISCIllBQWQgSNY6NJJAcoAMCw0XaQBQtAYj0ANgcE0SwZlgSe04hI2FiFAyEFRdQYmh8AakIOJhgQHhVCFQoaRAsVGSQWihAXAF9EHFkNEBUXGxsTSBxaGx9dGxFJGKgKAAoSEydNIwoFg01DF7oQQQAh+QQJBgAYACwAAAAADwAPAIVEPjykoqR0cnTU0tRUUlSMiozs6uxMSkx8fnzc3txcXlyUlpT09vRcWlxMRkS0trR8enzc2txcVlSUkpRUTkyMhoTk5uScnpz8/vxEQkR8dnTU1tRUVlSMjoz08vRMTkyEgoTk4uRkYmSclpT8+vy8urwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGc0CMcEgsGo9Gw6LhkHRCmICFODgAAJ8M4FDJTIUGCgCRwIQKV+9wMiaWtIAvRqOACiMKwucjJzFIJEN+gEQiHAQcJUMeBROCBFcLRBcAEESQAB0GGB4XGRkbghwCnxkiWhkPRRMMCSAfABkIoUhCDLW4Q0EAIfkECQYAGQAsAAAAAA8ADwCFRD48pKKkdHJ01NLU7OrsXFZUjIqMvLq8TEpM3N7c9Pb0lJaUxMbErK6sfH58bGpsVFJUTEZE3Nrc9PL0XF5clJKUxMLEVE5M5Obk/P78nJ6ctLa0hIaEREJE1NbU7O7sXFpcjI6MvL68TE5M5OLk/Pr8nJqczM7MtLK0hIKEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnPAjHBILBqPRsICFCmESMcBAgAYdQAIi9HzSCUyJEOnAx0GBqUSsQJwYFAZyTiFGZZEgHGlJKACQBIZEwJXVR8iYwANE0MTAVMNGSISHAAhRSUYC2pCJFMhH4IaEAdGDGMdFFcdG0cJKSNYDoFIQgqctblBADs=') no-repeat right center !important;  }

/*DEFAULT Page (Dashboard)*/
.homeContent {
    position: relative;
    margin-top: -1px;
    z-index: 1;
    color: white;
    margin-bottom: 90px;
}

    .homeContent:before{
        content: " ";
        position: absolute !important;
        top: 0;
        left: 0;
        /*opacity: 0.6;*/
        z-index: -1;
        /*    92vh */
        width: 100%;
        height: auto;
        background: url('../../_img/paginaPortalePass.png');
        background-size: cover;
        background-repeat:no-repeat;
        position:absolute;
        /*  min-width: 1200px;*/
        z-index: -1;
        bottom: 0;
    }

.default-wrapper{
    margin-left:20%;
    margin-right:20%;
    margin-top:0%;
}

.default-welcome-text-wrapper{
    padding-top: 15px;
    padding-bottom: 25px;
    font-size:30px;
}

.default-student-graphic-img{
    margin-left:148px;
    position:absolute;
    background: url(../../_img/icones_alunos.png);
    background-size: cover;
    background-repeat: no-repeat;
    min-height: 38px;
    min-width: 38px;
}

.default-sales-graphic-img{
    margin-left:142px;
    position:absolute;
    background: url(../../_img/icones_vendas.png);
    background-size: cover;
    background-repeat: no-repeat;
    min-height: 38px;
    min-width: 38px;
}


.default-student-graphic{
    display:inline-block;
    margin-right: 35px;
    margin-bottom: 35px;
    width:185px;
    height:150px;
    background: rgba(204, 204, 204, 0.8);
    border-radius: 5px;
}

    .default-student-graphic .message-info{
        visibility: hidden;
        width: 100px;
        background-color: black;
        color: #fff;
        text-align: center;
        border-radius: 6px;
        padding: 5px 0;

        /* Position the tooltip */
        position: absolute;
        z-index: 1;
        top: 50%;
        left: 150px;
    }

    .default-student-graphic:hover .message-info {
        visibility: visible;
    }

.default-student-graphic-text-wrapper{
    margin-top:20px;
    margin-left:20px;
    position:absolute;
    font-weight:650;
    font-size:15px;
    color:white;
}

.default-student-graphic-text-content{
    margin-top:65px;
    margin-left:20px;
    position:absolute;
    font-weight:700;
    font-size:50px;
    color:white;

}

.default-sales-graphic {
    margin-bottom: 35px;
    display: inline-block;
    width: 185px;
    height: 150px;
    background: rgba(255, 127, 0, 0.8);
    border-radius: 5px;
}

    .default-sales-graphic .message-info-sales{
        visibility: hidden;
        width: 100px;
        background-color: black;
        color: #fff;
        text-align: center;
        border-radius: 6px;
        padding: 5px 0;

        /* Position the tooltip */
        z-index: 1;
        position: absolute;
        top: 50%;
        left: 400px;

    }

    .default-sales-graphic:hover .message-info-sales{
        visibility: visible;
    }

.default-sales-graphic-text-wrapper{
    margin-top:14px;
    margin-left:20px;
    position:absolute;
    font-weight:650;
    font-size:15px;
    color:white;
}

.default-sales-graphic-text-content{
    margin-top:50px;
    margin-left:20px;
    position:absolute;
    font-weight:700;
    font-size:35px;
    color:white;
}


.default-sales-day-before-text-content{
    margin-top:105px;
    margin-left:15px;
    position:absolute;
    font-size:14px;
    font-weight:800;
    color:darkslategrey;
}


.default-nonstudents-graphic{
    margin-right: 35px;
    margin-bottom: 55px;
    display:inline-block;
    width:185px;
    height:150px;
    background: rgba(123, 135, 150, 0.8);
    border-radius: 5px;
}

    .default-nonstudents-graphic .message-info-nonstudents{
        visibility: hidden;
        width: 100px;
        background-color: black;
        color: #fff;
        text-align: center;
        border-radius: 6px;
        padding: 5px 0;

        /* Position the tooltip */
        z-index: 1;
        position: absolute;
        top: 50%;
        left: 150px;

    }

    .default-nonstudents-graphic:hover .message-info-nonstudents{
        visibility: visible;
    }

.default-nonstudents-graphic-text-wrapper{
    margin-top:14px;
    margin-left:20px;
    position:absolute;
    font-weight:650;
    font-size:15px;
    color:white;
}

.default-nonstudents-graphic-text-content{
    margin-top:65px;
    margin-left:20px;
    position:absolute;
    font-weight:700;
    font-size:50px;
    color:white;
}

.default-nonstudents-graphic-img{
    margin-left:148px;
    position:absolute;
    background: url(../../_img/icones_Prof.png);
    background-size: cover;
    background-repeat: no-repeat;
    min-height: 38px;
    min-width: 38px;
}

.default-meals-graphic {
    // margin-top:20%;
    // margin-left:12%;
    // position:absolute;
    margin-bottom: 55px;
    display: inline-block;
    width: 185px;
    height: 150px;
    background: rgba(204, 204, 224, 0.8);
    border-radius: 5px;
}

    .default-meals-graphic .message-info-meals{
        visibility: hidden;
        width: 150px;
        background-color: black;
        color: #fff;
        text-align: center;
        border-radius: 6px;
        padding: 5px 0;

        /* Position the tooltip */
        z-index: 1;
        position: absolute;
        top: 50%;
        left: 400px;

    }

.default-meals-graphic:hover .message-info-meals{
        visibility: visible;
    }

.default-meals-graphic-text-wrapper{
    margin-top:14px;
    margin-left:20px;
    position:absolute;
    font-weight:650;
    font-size:15px;
    color:white;
}

.default-meals-graphic-text-content{
    margin-top:65px;
    margin-left:20px;
    position:absolute;
    font-weight:700;
    font-size:50px;
    color:white;
}

.default-meals-graphic-img{
    margin-left:140px;
    position:absolute;
    background: url(../../_img/icones_Ref.png);
    background-size: cover;
    background-repeat: no-repeat;
    min-height: 38px;
    min-width: 38px;
}

.default-arriving-chart {
    margin-bottom: 20px;
    width: 450px;
    height: 275px;
    background: rgba(204, 204, 204, 0.8);
    opacity: 1;
    border-radius: 5px;
}

.default-arriving-chart-text-wrapper{
    margin-top:14px;
    margin-left:15px;
    position:absolute;
    font-weight:650;
    font-size:18px;
    color:#303030;
}

.line{
    width: 410px;
    height: 65px;
    margin-left:18px;
    border-bottom: 3px solid #303030;
    position: absolute;
}

#chart{
    width: 420px;
    height:180px;
    margin-top:27px;
    margin-left:15px;
    position: absolute;
}

.default-entrance-hour-chart {
    // margin-top:27%;
    // margin-left:36%;
    // position:absolute;
    margin-bottom: 20px;
    width: 450px;
    height: 275px;
    background: rgba(204, 204, 204, 0.8);
    opacity: 1;
    border-radius: 5px;
}

.default-notifications {
    margin-bottom: 150px;
    width: 408px;
    height: 140px;
    background: rgba(204, 204, 204, 0.8);
    opacity: 1;
    border-radius: 5px;
}

.default-entrance-hour-chart-text-wrapper{
    margin-top:14px;
    margin-left:15px;
    position:absolute;
    font-weight:650;
    font-size:18px;
    color:#303030;
}

.default-arriving-chart-text-days-wrapper{
    margin-top:66px;
    margin-left:335px;
    position:absolute;
    color:#303030;
}


.default-entrance-hour-chart-text-days-wrapper{
    margin-top:66px;
    margin-left:335px;
    position:absolute;
    color:#303030;

}

#chart2{
    width: 420px;
    height:180px;
    margin-top:31px;
    margin-left:15px;
    position: absolute;
}


.default-notifications-user-wrapper{
    padding-top:40px;
    padding-left:110px;
    position:relative;
    color:#303030;
    font-weight:650;
    font-size:16px;
}

.default-notifications-userEE-wrapper{
    padding-left:110px;
    position:relative;
    color:#303030;
}

.default-notifications-message-wrapper{
    padding-left:70px;
    position:relative;
    color:dimgrey;
}

.default-notifications-date-wrapper{
    padding-left:70px;
    position:relative;
    color:grey;
}

.default-notifications-user-img{
    margin-top: 46px;
    margin-left: 67px;
    position: absolute;
    background: url(../../_img/boneco.png);
    background-size: cover;
    background-repeat: no-repeat;
    min-height: 33px;
    min-width: 33px;
}

.default-notifications-icon-img{
    margin-top: 46px;
    margin-left: 10px;
    position: absolute;
    background: url(../../_img/icone1.png);
    background-size: cover;
    background-repeat: no-repeat;
    min-height: 33px;
    min-width: 33px;
}

.default-notifications-info-img{
    margin-top: 10px;
    margin-left: 365px;
    position: absolute;
    background: url(../../_img/info.png);
    background-size: cover;
    background-repeat: no-repeat;
    min-height: 33px;
    min-width: 33px;
}

/*.default-notifications-icon-img-line{
    margin-top: 76px;
    height: 109px;
    margin-left: 23px;
    border-left: 6px solid white;
    position: absolute;
}*/



.widget .lazur-bg, .bg-info {
    background-color: rgb(14, 142, 170);
    color: rgb(255, 255, 255);
}

.widget {
    margin-bottom: 10px;
    margin-top: 10px;
    margin-left:30px;
    border-radius: 5px;
    width:10%;

    box-sizing: border-box;
    position:absolute;
    opacity:1;
    z-index:1;
    font-weight: 700;
}


@media only screen and (max-width: 992px){

     .homeContent {
         margin-bottom: 90px;
     }

    .homeContent:before {
        height: auto;
        bottom: 0;
        background-position: center center;
    }

}

@media only screen and (max-width: 767px){

    .default-arriving-chart-text-days-wrapper,
    .default-entrance-hour-chart-text-days-wrapper {
        margin-left: 250px;
    }

}

/*crop images*/
.text-box {
    max-width: none;
}

img {
    max-width: 100%; /* This rule is very important, please do not ignore this! */
}

.preview {
    overflow: hidden;
    width: 300px;
    height: 300px;
}

.btn-file {
    position: relative;
    overflow: hidden;
}

    .btn-file input[type=file] {
        position: absolute;
        top: 0;
        right: 0;
        min-width: 100%;
        min-height: 100%;
        font-size: 100px;
        text-align: right;
        filter: alpha(opacity=0);
        opacity: 0;
        outline: none;
        background: white;
        cursor: inherit;
        display: block;
    }

.tableHeader {
    background-color: #2F4050 !important;
    color: white;
    border-color: white;
    border-style: solid;
    border-width: 1px;
    text-align: center;
}

.modal-confirm {
    color: #636363;
    width: 400px;
    
}

    .modal-confirm .modal-content {
        padding: 10px;
        border-radius: 5px;
        border: none;
        text-align: center;
        font-size: 14px;
        background: white;
        width: fit-content;
    }

        .modal-confirm .modal-content h2 {
            text-align: left;
            margin: 10px;
        }

    .modal-confirm .modal-header {
        border-bottom: none;
        position: relative;
    }

    .modal-confirm h4 {
        text-align: center;
        font-size: 26px;
        margin: 30px 0 -10px;
    }

    .modal-confirm .close {
        position: absolute;
        top: -5px;
        right: -2px;
    }

    .modal-confirm .modal-body {
        color: #999;
        margin: 10px;
        text-align: left;
    }

    .modal-confirm .modal-footer {
        border: none;
        text-align: right;
        border-radius: 5px;
        font-size: 13px;
        padding: 10px 0;
    }

        .modal-confirm .modal-footer a {
            color: #999;
        }

        .modal-confirm .modal-footer a {
            color: #999;
        }

        .modal-confirm .modal-footer input:last-child {
            background: #25486d;
            color: white;
        }

            .modal-confirm .modal-footer input:last-child:hover {
                background: #0d345d;
                color: white;
            }

        .modal-confirm .modal-footer input:nth-last-child(2) {
            background: white;
            color: #999;
            border-color: white;
        }

            .modal-confirm .modal-footer input:nth-last-child(2):hover {
                background: white;
                border-color: #1b1f2326;
                color: #999;
            }

        .modal-confirm .icon-box {
            width: 80px;
            height: 80px;
            margin: 0 auto;
            border-radius: 50%;
            z-index: 9;
            text-align: center;
            border: 3px solid #f15e5e;
        }

        .modal-confirm .icon-box i {
            color: #f15e5e;
            font-size: 46px;
            display: inline-block;
            margin-top: 13px;
        }

    .modal-confirm .btn, .modal-confirm .btn:active {
        color: #fff;
        border-radius: 4px;
        background: #60c7c1;
        text-decoration: none;
        transition: all 0.4s;
        line-height: normal;
        min-width: 120px;
        border: none;
        min-height: 40px;
        border-radius: 3px;
        margin: 0 5px;
    }

    .modal-confirm .btn-secondary {
        background: #c1c1c1;
    }

        .modal-confirm .btn-secondary:hover, .modal-confirm .btn-secondary:focus {
            background: #a8a8a8;
        }

    .modal-confirm .btn-danger {
        background: #f15e5e;
    }

        .modal-confirm .btn-danger:hover, .modal-confirm .btn-danger:focus {
            background: #ee3535;
        }

.trigger-btn {
    display: inline-block;
    margin: 100px auto;
}

.toggler-wrapper {
    display: block;
    width: 45px;
    height: 25px;
    cursor: pointer;
    position: relative;
}

    .toggler-wrapper input[type="checkbox"] {
        display: none;
    }

        .toggler-wrapper input[type="checkbox"]:checked + .toggler-slider {
            background-color: #0d345d;
        }

    .toggler-wrapper .toggler-slider {
        background-color: #ccc;
        position: absolute;
        border-radius: 100px;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        -webkit-transition: all 300ms ease;
        transition: all 300ms ease;
    }

    .toggler-wrapper .toggler-knob {
        position: absolute;
        -webkit-transition: all 300ms ease;
        transition: all 300ms ease;
    }

.toggler-wrapper.style-1 input[type="checkbox"]:checked + .toggler-slider .toggler-knob {
    left: calc(100% - 19px - 3px);
}

.toggler-wrapper.style-1 .toggler-knob {
    width: calc(25px - 6px);
    height: calc(25px - 6px);
    border-radius: 50%;
    left: 3px;
    top: 3px;
    background-color: #fff;
}

.subcategoriescontainer {
    margin: 10px 0 5px;
    height: 300px;
    overflow: auto;
    overflow-x: none;
    overflow-y: auto;
}