/*#region FONTS */

@font-face {
  font-family: 'MuseoSans-100';
  src: url('fonts/MuseoSans-100.eot?#iefix') format('embedded-opentype'), url('fonts/MuseoSans-100.otf') format('opentype'), url('fonts/MuseoSans-100.woff') format('woff'), url('fonts/MuseoSans-100.ttf') format('truetype'), url('fonts/MuseoSans-100.svg#MuseoSans-100') format('svg');
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: 'MuseoSans-300';
  src: url('fonts/MuseoSans-300.eot?#iefix') format('embedded-opentype'), url('fonts/MuseoSans-300.otf') format('opentype'), url('fonts/MuseoSans-300.woff') format('woff'), url('fonts/MuseoSans-300.ttf') format('truetype'), url('fonts/MuseoSans-300.svg#MuseoSans-300') format('svg');
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: 'MuseoSans-500';
  src: url('fonts/MuseoSans-500.eot?#iefix') format('embedded-opentype'), url('fonts/MuseoSans-500.otf') format('opentype'), url('fonts/MuseoSans-500.woff') format('woff'), url('fonts/MuseoSans-500.ttf') format('truetype'), url('fonts/MuseoSans-500.svg#MuseoSans-500') format('svg');
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: 'MuseoSans-700';
  src: url('fonts/MuseoSans-700.eot?#iefix') format('embedded-opentype'), url('fonts/MuseoSans-700.otf') format('opentype'), url('fonts/MuseoSans-700.woff') format('woff'), url('fonts/MuseoSans-700.ttf') format('truetype'), url('fonts/MuseoSans-700.svg#MuseoSans-700') format('svg');
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: 'MuseoSans-900';
  src: url('fonts/MuseoSans-900.eot?#iefix') format('embedded-opentype'), url('fonts/MuseoSans-900.otf') format('opentype'), url('fonts/MuseoSans-900.woff') format('woff'), url('fonts/MuseoSans-900.ttf') format('truetype'), url('fonts/MuseoSans-900.svg#MuseoSans-900') format('svg');
  font-weight: normal;
  font-style: normal;
}
/*#endregion*/
/*#region COLORS */
/*#endregion*/
/*#region SIZES */
/*#endregion*/

/*#region RESPONSIVE SIZES */

/*@large-devices: ~"only screen and (min-width: 768px)";*/

/*@desktop-devices: ~"only screen and (max-width: 992px)";*/

/*@breakpoint: ~"only screen and (min-width: 767px)";*/

/*#endregion*/

/*@import "Variables";

.navbar {
    font-family: @font-300;
    font-size: 14px;
    color: @menu-grey;
    min-height: 40px;

    &.navbar-default {
        background: #FFF;
        border: none;
        -webkit-box-shadow: 0 15px 30px -5px rgba(92, 91, 95, 0.3);
        -moz-box-shadow: 0 15px 30px -5px rgba(92, 91, 95, 0.3);
        box-shadow: 0 15px 30px -5px rgba(92, 91, 95, 0.3);

        .navbar-header {

            .navbar-toggle {
                background: none;
                border: none;
                border-radius: 0;
                padding: 2px;
                margin: 12px 15px 0 0;

                .icon-bar {
                    background-color: @menu-grey;
                }

                .top-bar {
                    -moz-transform: rotate(45deg);
                    -ms-transform: rotate(45deg);
                    -o-transform: rotate(45deg);
                    -webkit-transform: rotate(45deg);
                    transform: rotate(45deg);
                    -moz-transform-origin: 10% 10%;
                    -ms-transform-origin: 10% 10%;
                    -o-transform-origin: 10% 10%;
                    -webkit-transform-origin: 10% 10%;
                    transform-origin: 10% 10%;
                }

                .middle-bar {
                    opacity: 0;
                }

                .bottom-bar {
                    -moz-transform: rotate(-45deg);
                    -ms-transform: rotate(-45deg);
                    -o-transform: rotate(-45deg);
                    -webkit-transform: rotate(-45deg);
                    transform: rotate(-45deg);
                    -moz-transform-origin: 10% 90%;
                    -ms-transform-origin: 10% 90%;
                    -o-transform-origin: 10% 90%;
                    -webkit-transform-origin: 10% 90%;
                    transform-origin: 10% 90%;
                }

                &.collapsed {

                    .top-bar {
                        -moz-transform: rotate(0);
                        -ms-transform: rotate(0);
                        -o-transform: rotate(0);
                        -webkit-transform: rotate(0);
                        transform: rotate(0);
                    }

                    .middle-bar {
                        opacity: 1;
                    }

                    .bottom-bar {
                        -moz-transform: rotate(0);
                        -ms-transform: rotate(0);
                        -o-transform: rotate(0);
                        -webkit-transform: rotate(0);
                        transform: rotate(0);
                    }
                }
            }

            a {

                img {
                    -moz-transition: transform .8s ease-in-out;
                    -o-transition: transform .8s ease-in-out;
                    -webkit-transition: transform .8s ease-in-out;
                    transition: transform .8s ease-in-out;
                    width: 30px;
                    height: 30px;
                    margin: 5px 0;

                    &:hover {
                        -ms-transform: rotate(360deg);
                        -webkit-transform: rotate(360deg);
                        -moz-transform: rotate(360deg);
                        -o-transform: rotate(360deg);
                        transform: rotate(360deg);
                    }
                }
            }
        }

        .navbar-collapse {
            border-color: @main-green;
            text-align: center;

            .nav {
                &.navbar-nav {
                    display: inline-block;
                    float: none;
                    vertical-align: middle;
                    //margin-right: 30px;

                    li {

                        &.active > a {
                            font-family: @font-900;
                            color: @main-green;
                            background: none;
                        }

                        a {
                            padding: 10px 11px;

                            &:hover {
                                -moz-transition: all 0.5s ease-in-out;
                                -o-transition: all 0.5s ease-in-out;
                                -webkit-transition: all 0.5s ease-in-out;
                                transition: all 0.5s ease-in-out;
                                color: @main-green;
                            }
                        }
                    }
                }
            }
        }
    }
}*/

html,
body {
  margin: 0;
  padding: 0;
}
html {
  position: relative;
  min-height: 100%;
}
body {
  margin-bottom: 80px;
  font-family: 'MuseoSans-300', sans-serif;
  font-weight: 300;
}
* {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
.float-right {
  float: right;
}
.float-left {
  float: left;
}
.inline-block {
  display: inline-block;
}
.boxFix *,
.boxFix *::before,
.boxFix *::after {
  -moz-box-sizing: border-box !important;
  -webkit-box-sizing: border-box !important;
  box-sizing: border-box !important;
}
/*#region Especifico para o Account */

.sg-account-wrapper {
  padding-left: 0;
  padding-right: 0;
  width: 100%;
  height: 100%;
}
.sg-account-header {
  width: 100%;
  max-height: 130px;
  text-align: center;
  background-color: rgba(0, 0, 0, 0.4);
}
/*.sg-account-content {
    height: ~"calc(100% - 131px)";
    margin-bottom: -80px;

    .sg-account-content-container {
        margin-top: 50px;
        margin-bottom: 50px;
        padding-left: 85px;

        #sg-account-panelbar {
            max-width: 500px;
            background: none;
            border: none;
            box-shadow: none;

            .k-item {
                background: none;
                margin-bottom: 15px;

                .k-link.k-header {
                    position: relative;
                    width: 50%;
                    background: @main-green;
                    border: none;
                    padding: 5px 15px;
                    -moz-box-sizing: border-box;
                    -webkit-box-sizing: border-box;
                    box-sizing: border-box;
                    font-family: @font-700;
                    font-size: 16px;
                    color: #000;

                    &.sg-selected:after {
                        top: 100%;
                        left: 15%;
                        border: solid @main-green;
                        content: " ";
                        height: 0;
                        width: 0;
                        position: absolute;
                        pointer-events: none;
                        border-color: rgba(163, 204, 0, 0);
                        border-top-color: @main-green;
                        border-width: 15px;
                        margin-left: -15px;
                        margin-top: -1px;
                    }

                    .k-icon {
                        display: none;
                    }

                    &.k-state-selected {
                        color: #000;
                    }

                    &.k-state-focused {
                        box-shadow: none;
                    }
                }

                .k-content {
                    background: none;
                    border: none;
                    -moz-box-sizing: border-box;
                    -webkit-box-sizing: border-box;
                    box-sizing: border-box;

                    .sg-account-form-container {
                        padding: 25px 0 15px 0;

                        form {
                            .form-group {
                                margin-bottom: 8px;

                                .form-control {
                                    -moz-box-sizing: border-box;
                                    -webkit-box-sizing: border-box;
                                    box-sizing: border-box;
                                    border: none;
                                    border-radius: 0;
                                    padding: 5px 15px;
                                    box-shadow: none;
                                    font-family: @font-500;
                                    font-size: 14px;
                                }
                            }

                            button {
                                border: none;
                            }
                        }
                    }
                }
            }
        }
    }
}*/

/*#endregion */

/*#region BUTTON COMMONS */

.sg-btn-floating:focus {
  outline: none;
}
.sg-button {
  cursor: pointer;
  width: 30px;
  height: 30px;
}
/*#endregion */

/*#region LAYOUT COMMONS */

#preloader {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: white;
  z-index: 10000;
  height: 100%;
}
.sg-clearfix {
  clear: both;
  width: 100%;
  height: 1px;
}
.sg-no-padding {
  padding-left: 0;
  padding-right: 0;
}
.sg-no-padding-left {
  padding-left: 0;
}
.sg-no-padding-right {
  padding-right: 0;
}
.fixed-top {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 5000;
}
.affix {
  width: 100%;
}
.swal2-container {
  z-index: 10060;
}
/*#endregion*/

/*#region Containers com borda e imagem no topo centrada */

.sg-container-no-tabstrip {
  margin-top: 61px;
}
/*.sg-container {
    padding-top: 25px;
    margin-bottom: 15px;

    & > div {
        border: 1px solid @main-green;
        padding: 20px;
        position: relative;
        -webkit-border-radius: 0;
        -moz-border-radius: 0;
        border-radius: 0;

        .sg-container-top-icon {
            color: #FFF;
            font-size: 3em;
            z-index: 1000;
            position: absolute;
            top: -33px;
            right: 0;
            bottom: 0;
            width: 50px;
            left: 0;
            height: 50px;
            margin: 0 auto;
        }

        .sg-container-content {
            padding-top: 15px;

            .sg-container-content-header {
                text-align: right;

                .sg-container-content-header-info {
                    width: 150px;
                }

                .sg-container-content-header-action {
                    width: 100px;
                }

                .sg-container-content-header-info, .sg-container-content-header-action {
                    float: right;
                    border-bottom: 1px solid @main-green;
                    font-family: @font-700;
                    font-size: 16px;
                    color: @main-green;
                    padding-right: 5px;
                    padding-bottom: 5px;
                }
            }

            .sg-container-content-body {
                clear: both;
                padding-top: 15px;

                span.padding-left {
                    padding-left: 20px;
                }

                span.padding-right {
                    padding-right: 20px;
                }
            }
        }
    }
}*/

/*#endregion*/

#sg-tabstrip-transactions .sg-container > div .sg-container-content .sg-container-content-header .sg-container-content-header-info {
  padding-right: 0px;
  margin-right: 95px;
}
/*#region Tabs das páginas */

.k-tabstrip-wrapper .k-widget.k-tabstrip .k-tabstrip-items {
  display: table;
  margin: 0 auto;
  -webkit-box-shadow: 0 0 5px #5c5b5f;
  -moz-box-shadow: 0 0 5px #5c5b5f;
  box-shadow: 0 0 5px #5c5b5f;
}
.k-tabstrip-wrapper .k-widget.k-tabstrip .k-tabstrip-items .k-item {
  padding: 10px 15px;
  font-family: 'MuseoSans-500', sans-serif;
  font-size: 12px;
  border: none;
  border-radius: 0;
}
.k-tabstrip-wrapper .k-widget.k-tabstrip .k-tabstrip-items .k-item .k-loading {
  border: none;
}
.k-tabstrip-wrapper .k-widget.k-tabstrip .k-tabstrip-items .k-item .k-link {
  color: #5c5b5f;
}
.k-tabstrip-wrapper .k-widget.k-tabstrip .k-tabstrip-items .k-item.k-state-active .k-link {
  color: #a3cc00;
}
.k-tabstrip-wrapper .k-widget.k-tabstrip .k-tabstrip-items .k-item.k-state-hover {
  background: white;
}
.k-tabstrip-wrapper .k-widget.k-tabstrip .k-tabstrip-items .k-item.k-state-hover .k-link {
  color: #a3cc00;
}
.k-tabstrip-wrapper .k-widget.k-tabstrip .k-content {
  padding: 15px;
  margin-top: 10px;
  border: none;
}
.k-tabstrip-wrapper .k-widget.k-tabstrip .k-content .col-xs-12 {
  padding-left: 0;
  padding-right: 0;
}
/*#endregion */

/*#region Paginação das Grid */

.sg-grid-pager-container {
  height: auto;
  width: 100%;
  text-align: center;
  margin-top: 15px;
}
.sg-grid-pager-container .sg-grid-pager .sg-pager-actions {
  width: 20px;
  height: 20px;
  padding: 5px;
}
.sg-grid-pager-container .sg-grid-pager .sg-pager-info {
  top: -8px;
  position: relative;
  font-family: 'MuseoSans-700', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #bdbcbc;
}
.sg-grid-pager-container .sg-grid-pager .sg-pager-info.sg-pager-first-counter {
  margin-left: 10px;
}
.sg-grid-pager-container .sg-grid-pager .sg-pager-info.sg-pager-total-counter {
  margin-right: 10px;
}
.sg-grid-pager-container.sg-grid-pager-container-no-tabstrip * {
  -webkit-box-sizing: content-box;
  -moz-box-sizing: content-box;
  box-sizing: content-box;
}
/*#endregion*/

/*#region Grid das Páginas */

/*.k-widget {
    &.k-grid {
        border: none;
        background: none;
        box-shadow: none;

        .k-hierarchy-col {
            width: 0;
        }

        & > table {
            table-layout: fixed;
        }

        thead.k-grid-header {
            display: none;
        }

        tbody {
            .sg-grid-row {

                &:first-child {
                    td {
                        border: none;
                    }
                }

                .sg-grid-column {
                    border: none;
                    border-top: 1px solid #b3b3b3;
                    color: #000;

                    p {
                        margin-bottom: 0;
                    }

                    .sg-grid-column-info-top {
                        font-family: @font-300;
                        font-weight: 300;
                        overflow: hidden;
                        -ms-text-overflow: ellipsis;
                        -o-text-overflow: ellipsis;
                        text-overflow: ellipsis;
                        white-space: nowrap;
                    }

                    .sg-grid-column-info-bottom {
                        font-family: @font-100;
                        font-weight: 100;
                        -ms-text-overflow: ellipsis;
                        -o-text-overflow: ellipsis;
                        text-overflow: ellipsis;
                        white-space: nowrap;
                    }

                    &.sg-grid-column-image {
                        width: 35px;
                        vertical-align: middle;
                        padding-left: 0;
                        padding-right: 5px;

                        & > img {
                            width: 30px;
                            height: 30px;
                        }

                        &.sg-grid-column-image-user {
                            & > img {
                                width: 40px;
                                height: auto;
                            }
                        }
                    }

                    &.sg-grid-column-text-left {
                        width: 100%;

                        &.width-70-percent {
                            width: 70%;
                        }
                    }

                    &.sg-grid-column-text-right {
                        width: 100%;
                        text-align: right;

                        &.width-30-percent {
                            width: 30%;
                        }
                    }

                    &.sg-grid-column-actions {
                        width: 40px;
                        vertical-align: middle;
                        padding-left: 5px;
                        padding-right: 0;

                        .sg-grid-column-actions-button-left {
                            padding-left: 10px;
                            padding-right: 0;
                        }

                        .sg-grid-column-actions-button-right {
                            padding-left: 5px;
                            padding-right: 5px;
                        }

                        .k-icon {
                            padding: 7px;
                            cursor: pointer;

                            &.k-plus {
                                background: url(icon/mais_portal_sige.svg) no-repeat repeat center center;
                                background-size: 30px 30px;
                            }

                            &.k-minus {
                                background: url(icon/fechar_portal_sige.svg) no-repeat repeat center center;
                                background-size: 30px 30px;
                            }
                        }
                    }
                }

                &.k-state-selected {
                    background: none;
                    box-shadow: none;
                }
            }

            .k-detail-row {
                .k-hierarchy-cell {
                    display: none;
                }

                .k-detail-cell {
                    padding: 15px 0;

                    .k-widget {
                        &.k-grid {
                            border-radius: 0;
                            box-shadow: none;

                            table {
                                table-layout: auto;

                                thead.k-grid-header {
                                    display: table-header-group;

                                    .k-header {
                                        background: #FFF;
                                        border-radius: 0;
                                        border-bottom: none;

                                        .k-link {
                                            font-family: @font-300;
                                            font-weight: 300;
                                            color: @main-green;
                                        }

                                        &:nth-child(2), &:last-child {
                                            text-align: center;
                                        }
                                    }
                                }

                                tbody {
                                    tr {
                                        td {
                                            font-family: @font-100;
                                            font-weight: 100;
                                            font-size: 13px;

                                            &:nth-child(2), &:last-child {
                                                text-align: center;
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                }
            }
        }


        .k-grid-norecords {
            .k-grid-norecords-template {
                border: none;
                font-family: @font-300;
                font-size: 14px;
                color: @menu-grey;
                width: 100%;
            }
        }
    }
}*/

/*#endregion */

/*#region Windows da Kendo */

.k-overlay {
  background-color: white;
}
.k-widget.k-window {
  border-radius: 0;
  border: 1px solid #a3cc00;
  -webkit-box-shadow: 0 0 15px #5c5b5f;
  -moz-box-shadow: 0 0 15px #5c5b5f;
  box-shadow: 0 0 15px #5c5b5f;
}
.k-widget.k-window .k-window-titlebar {
  background: white;
  border-bottom: none;
}
.k-widget.k-window .k-window-titlebar .k-window-actions .k-window-action {
  opacity: 1;
}
.k-widget.k-window .k-window-titlebar .k-window-actions .k-window-action.k-state-hover {
  border: none;
  background: none;
  padding: 2px;
}
.k-widget.k-window .k-window-titlebar .k-window-actions .k-icon {
  opacity: .7;
}
.k-widget.k-window .k-window-titlebar .k-window-actions .k-icon:hover {
  opacity: 1;
}
.k-widget.k-window .k-window-titlebar .k-window-actions .k-icon.k-i-close {
  background: url(icon/fechar_portal_sige.svg) no-repeat center center;
  background-size: 24px 24px;
  padding: 12px;
  position: absolute;
  top: 0;
  right: -5px;
}
.k-widget.k-window .k-window-titlebar .k-window-actions .k-icon.k-i-custom {
  background: url(icon/seta_portal_sige.svg) no-repeat center center;
  background-size: 24px 24px;
  padding: 12px;
  position: absolute;
  top: 0;
  right: 25px;
}
.k-widget.k-window .k-window-content {
  padding: 15px;
}
/*#endregion */

/*#region HEADING COMMONS */

h1,
h2,
h3,
h4 {
  margin-top: 15px;
  margin-bottom: 15px;
}
h1 {
  font-size: 24px;
}
h2 {
  font-size: 22px;
}
h3 {
  font-size: 20px;
}
h4 {
  font-size: 18px;
}
/*#endregion */

/*#region MAIN CSS */

/*.sg-header {
    .sg-header-inner-container {
        background: url(images/barra_topo_sige.jpg) repeat-x #FFF;
        height: @header-height;

        .sg-header-inner-container-left {
            img {
                padding-left: 15px;
            }
        }

        .sg-header-inner-container-right {
            text-align: right;
            height: 130px;

            & > div {
                display: inline-block;
                height: 100%;
                padding: 32px 45px 32px 0;
            }
        }
    }
}*/

.sg-content {
  padding-top: 190px;
  padding-bottom: 15px;
}
.sg-footer {
  -webkit-box-shadow: 0 -15px 30px 0 rgba(0, 0, 0, 0.4);
  -moz-box-shadow: 0 -15px 30px 0 rgba(0, 0, 0, 0.4);
  box-shadow: 0 -15px 30px 0 rgba(0, 0, 0, 0.4);
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 80px;
  z-index: 5000;
}
.sg-footer.no-shadow {
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
}
.sg-footer.login-shadow {
  -webkit-box-shadow: 0px 20px 40px 40px white;
  -moz-box-shadow: 0px 20px 40px 40px white;
  box-shadow: 0px 20px 40px 40px white;
}
.sg-footer .sg-footer-inner-container {
  background: white;
}
.sg-footer .sg-footer-inner-container .sg-footer-widget-brand {
  height: 80px;
}
.sg-footer .sg-footer-inner-container .sg-footer-widget-brand.sg-footer-widget-brand-school {
  float: left;
  margin-left: 15%;
}
.sg-footer .sg-footer-inner-container .sg-footer-widget-brand.sg-footer-widget-brand-company {
  float: right;
  margin-right: 15%;
}
.sg-footer .sg-footer-inner-container address {
  text-transform: uppercase;
  font-family: 'MuseoSans-500', sans-serif;
  font-size: 11px;
  color: black;
  height: 100%;
  padding-top: 10px;
  margin-bottom: 0;
  margin-left: 90px;
  line-height: 1;
}
.sg-footer .sg-footer-inner-container address p {
  margin-bottom: 5px;
}
.sg-footer .sg-footer-inner-container address p a {
  color: black;
}
#loading-screen {
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  position: fixed;
  display: block;
  opacity: 0.7;
  background-color: white;
  z-index: 9999;
  text-align: center;
}
#loading-screen .hidden {
  display: none;
}
#loading-screen .loading-image {
  position: relative;
  top: 50%;
  text-align: center;
  z-index: 100;
}
/*#endregion */

/*#region Window dos comunicados */

#sg-notice-window {
  font-family: 'MuseoSans-300', sans-serif;
  font-weight: 300;
  font-size: 14px;
}
#sg-notice-window .sg-notice-window-actions {
  margin-top: 15px;
}
#sg-notice-window .sg-notice-window-actions .sg-notice-window-button {
  width: 100px;
  padding: 10px 20px;
  text-transform: uppercase;
  font-family: 'MuseoSans-500', sans-serif;
  font-weight: 500;
  font-size: 14px;
  border: 1px solid #a3cc00;
  border-radius: 0;
  background: none;
  color: #a3cc00;
  margin: 0 25px;
}
#sg-notice-window .sg-notice-window-actions .sg-notice-window-button:hover {
  background: #a3cc00;
  color: white;
  border: 1px solid #a3cc00;
  -moz-transition: all .5s;
  -o-transition: all .5s;
  -webkit-transition: all .5s;
  transition: all .5s;
}
/*#endregion */

/*#region CHARGING PAGE */

/*#sg-container-content-charging {
    padding: 30px 30px 0 30px;
    color: @menu-grey;
    font-family: @font-300;
    font-size: 14px;

    .sg-container-content-charging-step-1 {

        .sg-container-content-charging-step-1-table, .sg-container-content-charging-step-1-logo {
            padding: 15px 0;
        }

        .sg-container-content-charging-step-1-table {
            .table {
                margin-bottom: 0;

                tr {
                    td {
                        vertical-align: middle;
                        border: none;

                        .sg-charging-table-link {
                            cursor: pointer;

                            &:hover {
                                text-decoration: none;
                            }
                        }
                    }
                }
            }
        }

        .sg-container-content-charging-step-1-logo {
            img {
                height: 100px;
            }
        }
    }

    .sg-container-content-charging-step-2 {

        .sg-container-content-charging-step-2-form {
            padding: 15px 0;

            .form-group {
                margin-left: 0;
                margin-right: 0;

                .sg-control-label {
                    color: @main-green;
                    text-transform: uppercase;
                }

                .form-control {
                    border-radius: 0;
                    border-color: @medium-grey;
                }
            }

            .form-control-static {
                -moz-box-sizing: border-box;
                -webkit-box-sizing: border-box;
                box-sizing: border-box;
            }
        }

        .sg-container-content-charging-step-2-little-words {
            font-size: 10px;
            text-align: left;
            padding: 15px 0 0 0;
            color: @color2;
        }

        .sg-container-content-charging-step-2-more-info {
            text-align: left;
            padding: 0;
            font-weight: 300;
            color: @color2;
        }

        .sg-container-content-charging-step-2-logo {
            margin-top: 25px;

            img {
                height: 100px;
            }
        }
    }

    .sg-container-content-charging-step-3 {
        .sg-container-content-charging-step-3-text {
        }

        .sg-container-content-charging-step-3-table {
            .table {
                margin-bottom: 0;

                tr {
                    td {
                        vertical-align: middle;
                        border: none;

                        .sg-charging-table-link {
                            cursor: pointer;

                            &:hover {
                                text-decoration: none;
                            }
                        }
                    }
                }
            }
        }

        .sg-container-content-charging-step-3-little-words {
            font-size: 10px;
            text-align: left;
            padding: 15px 0 0 0;
        }

        .sg-container-content-charging-step-3-logo {
            margin-top: 25px;

            img {
                height: 100px;
            }
        }
    }

    .sg-container-content-charging-text {
        p {
            margin-bottom: 20px;

            &:last-child {
                margin-bottom: 30px;
            }
        }
    }

    .sg-container-content-charging-form {
        font-size: 12px;

        .form-horizontal {
            .form-group {
                margin-bottom: 20px;

                label {
                    color: @main-green;
                    width: 160px;
                    text-transform: uppercase;
                }

                input.k-textbox {
                    border-radius: 0;
                    border-color: @medium-grey;
                    width: ~"calc(100% - 165px)";
                    height: 20px;
                    margin-top: -5px;
                }

                .text-field {
                    color: @main-green;
                    padding-left: 0px;
                }
            }

            .form-group-center {
                margin-top: 15px;
                text-align: center;

                button {
                    width: 32px;
                    height: 32px;
                    border: none;
                    background: url(icon/responder_portal_sige.svg) no-repeat center center;
                    background-size: 32px 32px;
                }
            }
        }
    }

    .sg-container-content-charging-info {
        h5 {
            text-align: center;
            color: @main-green;
            margin-bottom: 15px;
            font-size: 16px;
        }

        .list-group {
            width: 60%;
            margin-right: 0;
            margin-bottom: 15px;

            .list-group-item {
                font-family: @font-300;
                font-weight: 300;
                border: none;
                padding: 10px 0;

                .badge {
                    font-family: @font-700;
                    font-weight: 700;
                    color: @menu-grey;
                    background: none;
                }
            }
        }
    }

    .sg-container-content-charging-conditions {
        display: none;
        text-align: center;

        #sg-container-content-charging-conditions-iframe {
            width: 100%;
            height: 250px;
            border: 1px solid @menu-grey;
            padding: 15px;
        }

        .sg-container-content-charging-checkbox {
        }

        .sg-container-content-charging-actions {
            text-align: center;
            margin-top: 15px;

            .sg-charging-button {
                width: 100px;
                padding: 10px 20px;
                text-transform: uppercase;
                font-family: @font-500;
                font-weight: 500;
                font-size: 14px;
                border: 1px solid @main-green;
                border-radius: 0;
                background: none;
                color: @main-green;
                margin: 0 25px;

                &:hover {
                    background: @main-green;
                    color: #FFF;
                    border: 1px solid @main-green;
                    -moz-transition: all .5s;
                    -o-transition: all .5s;
                    -webkit-transition: all .5s;
                    transition: all .5s;
                }
            }
        }
    }

    .sg-container-content-charging-methods {
        .row {
            margin-top: 50px;
            margin-bottom: 40px;
            font-size: 14px;

            .soft-text {
                color: @color4;
            }

            img {
                margin-top: -12px;
                height: 40px;
            }
        }
    }

    .logo-row {
        text-align: center;
        padding: 20px 0px 10px 0px;

        & > img {
            height: 100px;
        }
    }

    .sg-container-content-charging-links {
        margin-top: 25px;
        text-align: center;
    }

    .badge {
        font-size: 14px;
    }
}*/

/*#endregion*/

/*#region MEALS PAGE */

.k-widget.k-scheduler {
  border-radius: 0;
  border: none;
}
.k-widget.k-scheduler .k-scheduler-toolbar {
  display: none;
}
.k-widget.k-scheduler .k-scheduler-layout {
  /*tr:first-child {
                display: none;
            }*/
  font-family: 'MuseoSans-300', sans-serif;
  font-size: 10px;
  color: black;
}
.k-widget.k-scheduler .k-scheduler-layout .k-scheduler-times .k-scheduler-table th.k-slot-cell,
.k-widget.k-scheduler .k-scheduler-layout .k-scheduler-content .k-scheduler-table th.k-slot-cell,
.k-widget.k-scheduler .k-scheduler-layout .k-scheduler-times .k-scheduler-table td,
.k-widget.k-scheduler .k-scheduler-layout .k-scheduler-content .k-scheduler-table td {
  border-color: black;
  border-right-color: white;
}
.k-widget.k-scheduler .k-scheduler-layout.k-scheduler-dayview .k-scheduler-header {
  display: none;
}
.k-widget.k-scheduler .k-scheduler-layout.k-scheduler-dayview .k-current-time {
  display: none;
}
.k-widget.k-scheduler .k-scheduler-layout .k-scheduler-content .k-scheduler-table .k-middle-row .k-today,
.k-widget.k-scheduler .k-scheduler-layout .k-scheduler-content .k-scheduler-table tr[role="row"] .k-today {
  background: none;
}
.k-widget.k-scheduler .k-scheduler-layout .k-scheduler-content .k-scheduler-table .k-middle-row td {
  border-color: #5c5b5f;
}
.k-widget.k-scheduler .k-scheduler-layout .k-scheduler-content .k-scheduler-table tr td {
  border-left: 0px;
}
.k-widget.k-scheduler .k-scheduler-layout .k-scheduler-content .k-event {
  border-radius: 0;
  border-color: #b3b3b3;
  border-width: 1px;
  background: #a3cc00;
  color: black;
}
.k-widget.k-scheduler .k-scheduler-layout .k-scheduler-content div.horario-evento {
  height: 100%;
  padding: 3px 5px;
}
.k-widget.k-scheduler .k-scheduler-layout .k-scheduler-content div.horario-evento div {
  white-space: nowrap;
  overflow-x: hidden;
  -ms-text-overflow: ellipsis;
  -o-text-overflow: ellipsis;
  text-overflow: ellipsis;
}
.k-widget.k-scheduler .k-scheduler-layout .k-scheduler-header .k-scheduler-table th {
  border-left: 0px;
}
.k-widget.k-scheduler .k-scheduler-footer {
  display: none;
}
/*.events-list {
    width: 100%;
    max-height: 50px;
    padding-left: 3px;
}

.event {
    border: none;
    border-radius: 0;
    box-shadow: none;
    width: 100%;
    height: 20px;
}

.sg-meals {
    padding: 12px;

    &.sg-meals-consumed {
        background: url(icon/consumida_portal_sige.svg) no-repeat center center;
        background-size: 24px 24px;
    }

    &.sg-meals-not-consumed {
        background: url(icon/nao_consumida_portal_sige.svg) no-repeat center center;
        background-size: 24px 24px;
    }

    &.sg-meals-checked {
        background: url(icon/certo_portal_sige.svg) no-repeat center center;
        background-size: 24px 24px;
    }

    &.sg-meals-not-checked {
        background: url(icon/nao_marcada_portal_sige.svg) no-repeat center center;
        background-size: 24px 24px;
    }

    &.sg-meals-available {
        background: url(icon/disponivel_portal_sige.svg) no-repeat center center;
        background-size: 24px 24px;
    }

    &.sg-meals-not-available {
        background: url(icon/nao_disponivel_portal_sige.svg) no-repeat center center;
        background-size: 24px 24px;
    }
}*/

/*.sg-meals-navigation {
    -webkit-box-shadow: 0 0 5px #5c5b5f;
    -moz-box-shadow: 0 0 5px #5c5b5f;
    box-shadow: 0 0 5px #5c5b5f;
    margin-bottom: 15px;

    button {
        padding: 10px 15px;
        font-family: 'MuseoSans-500', sans-serif;
        font-size: 12px;
        font-weight: 500;
        border: none;
        border-radius: 0;
        color: #000;
        background: #FFF;

        &.sg-meals-navigation-previous {

            span {
                left: 5px;
            }
        }

        &.sg-meals-navigation-info {
            font-size: 14px;
            vertical-align: sub;
        }

        &.sg-meals-navigation-next {

            span {
                right: 5px;
            }
        }
    }
}*/

/*
    #sg-meals-calendar {
    .cal-row-fluid {
        &:hover {
            background: none;
        }

        &.cal-row-head {
            .cal-cell1 {
                font-family: 'MuseoSans-300', sans-serif;
                font-size: 12px;
                font-weight: 300;
                text-transform: uppercase;
                color: @menu-grey;

                &:hover {
                    background: none;
                }
            }
        }
    }

    .cal-month-box {
        border: none;

        .cal-row-fluid {
            padding-top: 15px;
            padding-bottom: 5px;
            border-bottom-color: #b3b3b3;

            .cal-cell {
                border-right-color: #b3b3b3;

                &.day-highlight {
                    background: #f2f2f2;
                }

                &:hover {
                    background: #f2f2f2;
                }

                .cal-month-day {
                    &.cal-day-outmonth, &.cal-day-inmonth, &.cal-day-today {
                        font-family: 'MuseoSans-700', sans-serif;
                        font-weight: 700;
                        color: #000;

                        span {
                            opacity: 1;
                        }
                    }

                    &.cal-day-weekend {
                        span {
                            color: #000;
                        }
                    }

                    &.cal-day-today {
                        background: none;

                        span {
                            font-size: 1.2em;
                            color: @main-green;
                        }
                    }

                    #cal-week-box {
                        border: 1px solid #b3b3b3;
                        border-right: 0 solid;
                        border-radius: 0;
                        background-color: #f2f2f2;
                        text-align: center;
                    }

                    #cal-day-tick {
                        display: none !important;                        
                    }
                }
            }
        }

        #cal-slide-box {
            #cal-slide-content {
                color: #000;
                border-top: 7px solid @main-green;
                background: none;
                box-shadow: none;

                ul {
                    li {
                        padding-top: 5px;
                        padding-bottom: 5px;

                        .event {
                            width: 20px;


                            &.sg-meals {
                                padding: 16px;

                                &.sg-meals-consumed {
                                    background-size: 32px 32px;
                                }

                                &.sg-meals-not-consumed {
                                    background-size: 32px 32px;
                                }

                                &.sg-meals-checked {
                                    background-size: 32px 32px;
                                }

                                &.sg-meals-not-checked {
                                    background-size: 32px 32px;
                                }

                                &.sg-meals-available {
                                    background-size: 32px 32px;
                                }

                                &.sg-meals-not-available {
                                    background-size: 32px 32px;
                                }
                            }
                        }

                        a {
                            color: #000;

                            &:hover, &:focus {
                                text-decoration: none;
                                cursor: default;
                            }

                            &.event-item {
                                line-height: 36px;
                            }
                        }
                    }
                }
            }
        }
    }
}
*/

/*#endregion*/

/*#region SCHEDULED MEALS PAGE */

/*.sg-scheduled-meals-container {
    margin: 0 15px;
    font-size: 14px;

    .sg-container-content-body {
        padding-top: 0 !important;
    }

    .meal-time-container {

        .meal-time-header h2 {
            color: @header1;
            text-align: left;
            margin: 10px 0 10px 56px;
            font-weight: bold;
            font-size: 18px;

            &.no-meals {
                margin: 13px 0 7px 56px;
                font-size: 14px;
                font-weight: normal;
            }
        }
    }

    .day-header {
        * {
            margin: 0;
        }

        &.no-margin-top {
            margin-top: 5px;
        }

        h5 {
            color: @header2;
            font-weight: bold;
        }

        p {
            color: @main-color;
            font-weight: bold;
        }
    }

    .day-row {
        border-bottom: 1px solid;
        border-color: @separator-color;
        padding-bottom: 10px;
        padding-top: 10px;

        & > div {
            padding-left: 0px;
            padding-right: 0px;
        }

        &:last-child {
            border-bottom: 0px;
        }
    }

    .meals-container {
    }

    .meal-item {
        border-left: 1px solid;
        border-color: @separator-color;

        div.details {
            margin-left: 40px;
            display: inline-block;

            div.name,
            div.location {
                display: block;
                font-size: smaller;
            }

            div.name {
                color: @color3;
            }

            div.location {
                color: @color4;
            }
        }

        div.price-container {
            font-family: 'MuseoSans-500', sans-serif;
            font-size: small;
            display: inline-block;
            line-height: 1;
            margin: 4px 0 0;
            text-align: right;

            &.single-meal {
                margin: 11px 0 0;
            }

            .meal-counter {
                color: @color4;
            }
        }

        button {
            vertical-align: top;
            padding: 0px;
            font-family: 'MuseoSans-500', sans-serif;
            font-size: medium;
            font-weight: 500;
            border: none;
            border-radius: 0;
            color: #000;
            background: #FFF;
            outline: 0;
            margin: 4px 0 0;

            img {
                width: 26px;
                height: 26px;
            }
        }

        .meal-details {
            margin-top: 10px;
            border: solid 1px @main-color;
            font-size: smaller;
            padding: 3px;
        }

        .k-checkbox:checked + .k-checkbox-label:before {
            background: url('icon/checkbox_comcheck_portal_sige.svg') no-repeat center center;
            content: '';
            border-style: none;
            outline: 0;
        }

        .k-checkbox:disabled + .k-checkbox-label:before {
            background: url('icon/checkbox_disable_portal_sige.svg') no-repeat center center;
            content: '';
            border-style: none;
            outline: 0;
        }

        .k-checkbox:checked:disabled + .k-checkbox-label:before {
            background: url('icon/checkbox_checkdisable_portal_sige.svg') no-repeat center center;
            content: '';
            border-style: none;
            outline: 0;
        }

        .k-checkbox-label {
            padding: 6px 0 0 30px;
            font-weight: 300;
            border-style: none;
            position: absolute;

            &:before {
                background: url('icon/checkbox_semcheck_portal_sige.svg') no-repeat center center;
                content: '';
                width: 30px;
                height: 30px;
                border-style: none;
            }
        }
    }
}*/

/*.sg-scheduled-meals-submit-container {
    margin-bottom: 10px;

    div.total {
        display: inline-block;
        font-family: 'MuseoSans-500', sans-serif;
        font-size: 18px;
        display: block;
        color: @color2;
        margin-bottom: 5px;
    }

    button {
        padding: 0px;
        font-family: 'MuseoSans-500', sans-serif;
        font-size: 12px;
        font-weight: 500;
        border: none;
        border-radius: 0;
        color: #000;
        background: #FFF;
        outline: 0;

        img {
            width: 42px;
            height: 42px;
        }
    }
}*/

/*#endregion*/

/*#region MESSAGES PAGE */

.sg-new-message {
  color: #a3cc00;
}
.sg-modal-window .row {
  margin: 0;
}
.sg-modal-window [class*='col-'] {
  padding: 0;
}
.sg-modal-window .sg-message-detail-window-header {
  color: black;
}
.sg-modal-window .sg-message-detail-window-header .sg-message-detail-window-header-top {
  font-family: 'MuseoSans-300', sans-serif;
  font-weight: 300;
}
.sg-modal-window .sg-message-detail-window-header .sg-message-detail-window-header-bottom {
  font-family: 'MuseoSans-100', sans-serif;
  font-weight: 100;
}
.sg-modal-window .sg-message-detail-window-content {
  font-family: 'MuseoSans-100', sans-serif;
  font-weight: 100;
  color: black;
}
#sg-new-message-window .form-group,
#sg-forward-message-window .form-group {
  font-family: 'MuseoSans-300', sans-serif;
  font-weight: 300;
  font-size: 12px;
}
#sg-new-message-window .form-group .editor-label,
#sg-forward-message-window .form-group .editor-label {
  width: calc(15% - 15px);
  margin-right: 15px;
  display: inline-block;
}
#sg-new-message-window .form-group .editor-field,
#sg-forward-message-window .form-group .editor-field {
  width: calc(85% - 15px);
  margin-left: 15px;
  display: inline-block;
}
#sg-new-message-window .form-group .editor-field input,
#sg-forward-message-window .form-group .editor-field input,
#sg-new-message-window .form-group .editor-field textarea,
#sg-forward-message-window .form-group .editor-field textarea,
#sg-new-message-window .form-group .editor-field .k-textbox,
#sg-forward-message-window .form-group .editor-field .k-textbox {
  width: 100%;
}
#sg-new-message-window .form-group .editor-field textarea,
#sg-forward-message-window .form-group .editor-field textarea {
  height: 120px;
  resize: none;
}
#sg-new-message-window .form-group .editor-field #Assunto,
#sg-forward-message-window .form-group .editor-field #Assunto,
#sg-new-message-window .form-group .editor-field #Corpo,
#sg-forward-message-window .form-group .editor-field #Corpo {
  border-radius: 0;
  border: 1px solid #5c5b5f;
}
#sg-new-message-window .form-group .editor-field .k-widget.k-multiselect.k-header,
#sg-forward-message-window .form-group .editor-field .k-widget.k-multiselect.k-header {
  border-color: #5c5b5f;
  border-radius: 0;
}
#sg-new-message-window .form-group .editor-field .k-widget.k-multiselect.k-header .k-multiselect-wrap,
#sg-forward-message-window .form-group .editor-field .k-widget.k-multiselect.k-header .k-multiselect-wrap {
  min-height: 2.25em;
}
#sg-new-message-window .form-group .editor-field .k-widget.k-multiselect.k-header .k-multiselect-wrap .k-button,
#sg-forward-message-window .form-group .editor-field .k-widget.k-multiselect.k-header .k-multiselect-wrap .k-button {
  background: #a3cc00;
  border: none;
  border-radius: 0;
  margin: 2px;
}
#sg-new-message-window .form-group .editor-field .k-widget.k-multiselect.k-header .k-multiselect-wrap .k-button .sg-multiselect-tag,
#sg-forward-message-window .form-group .editor-field .k-widget.k-multiselect.k-header .k-multiselect-wrap .k-button .sg-multiselect-tag {
  margin-right: 5px;
}
#sg-new-message-window .form-group .editor-field.multiselect,
#sg-forward-message-window .form-group .editor-field.multiselect {
  width: calc(85% - 16px);
  margin-left: 12px;
}
#sg-new-message-window .no-label-field .form-group .editor-label,
#sg-forward-message-window .no-label-field .form-group .editor-label {
  display: none;
}
#sg-new-message-window .no-label-field .form-group .editor-field,
#sg-forward-message-window .no-label-field .form-group .editor-field {
  width: 100%;
  margin: 0;
  display: block;
}
.k-widget.k-window .popover {
  border-radius: 0;
  font-family: 'MuseoSans-300', sans-serif;
  font-weight: 300;
  color: black;
}
.k-widget.k-window .popover .popover-content p {
  margin-bottom: 0;
}
.k-widget.k-window .popover .popover-content p:hover {
  text-decoration: none;
  color: #a3cc00;
}
.sg-disabled {
  border-color: #b3b3b3 !important;
  color: #b3b3b3 !important;
}
/*#endregion*/

/*#region HORÁRIO PAGE */

#schedule-page {
  font-family: 'MuseoSans-100', sans-serif;
  font-weight: 100;
}
#schedule-page .k-scheduler-table {
  text-transform: uppercase;
}
/*#endregion*/

/*#region WIDGETS*/

/*#region ALARMS WIDGET*/

/*#sg-container-alarms {

    .table {
        margin-bottom: 0;
    }

    .sg-container-alarm {

        td {
            border: none;
        }

        .sg-container-alarm-left {
            vertical-align: middle;
            display: table-cell;
            color: @main-green;
            font-family: @font-500;
            font-size: 36px;
            text-align: right;
            width: 45px;
            padding: 8px 0;
        }

        .sg-container-alarm-middle {
            vertical-align: middle;
            display: table-cell;
            text-transform: uppercase;
            color: @menu-grey;
            font-family: @font-500;
            font-size: 14px;
            text-align: left;
        }

        .sg-container-alarm-right {
            vertical-align: middle;
            text-align: right;

            a {
                display: inline-block;
            }

            img {
                vertical-align: middle;
                display: block;
                width: 24px;
                height: 24px;
            }
        }
    }
}*/

/*#endregion */

/*#region MEALS WIDGET*/

#sg-container-meals .sg-container-content {
  padding-top: 0;
}
#sg-container-meals .sg-container-content .sg-container-meals-margin-top {
  margin-top: 15px;
  border-right: 1px solid #b3b3b3;
}
#sg-container-meals .sg-container-content .sg-container-meals-margin-top:last-child {
  border-right: none;
}
#sg-container-meals .sg-container-content .sg-container-meals-margin-top .sg-container-meals-weekday {
  color: black;
  font-family: 'MuseoSans-300', sans-serif;
  font-size: 10px;
  text-align: center;
}
#sg-container-meals .sg-container-content .sg-container-meals-margin-top .sg-container-meals-img {
  max-width: 75px;
  margin: 10px auto;
}
#sg-container-meals .sg-container-content .sg-container-meals-margin-top .sg-container-meals-status {
  color: black;
  font-family: 'MuseoSans-300', sans-serif;
  font-size: 9px;
  margin-bottom: 0;
}
#sg-home-meals-calendar .cal-week-box {
  border: none;
  position: relative;
}
#sg-home-meals-calendar .cal-week-box .cal-row-head {
  text-transform: uppercase;
}
#sg-home-meals-calendar .cal-week-box .cal-row-head:hover {
  background: none;
}
#sg-home-meals-calendar .cal-week-box .cal-row-head .cal-cell1:hover {
  background: none;
}
#sg-home-meals-calendar .cal-week-box .cal-cell1.day-highlight {
  background: none;
}
#sg-home-meals-calendar .cal-week-box .cal-cell1.day-highlight .sg-meals-home-margin {
  margin-top: 15px;
  margin-bottom: 5px;
}
#sg-home-meals-calendar .cal-week-box .cal-cell1.day-highlight a {
  display: inline-block;
  width: 100%;
}
/*#endregion*/

/*#region ATM WIDGET*/

#sg-container-atm {
  font-family: 'MuseoSans-300', sans-serif;
  font-weight: 300;
}
#sg-container-atm .list-group {
  margin-right: 0;
  margin-bottom: 5px;
}
#sg-container-atm .list-group .list-group-item {
  border: none;
  padding: 5px 0;
}
#sg-container-atm .list-group .list-group-item:last-child {
  padding-bottom: 0;
}
#sg-container-atm .list-group .list-group-item .badge {
  font-family: 'MuseoSans-700', sans-serif;
  font-weight: 700;
  color: #5c5b5f;
  background: none;
}
/*#endregion*/

/*#region ATM WIDGET*/

#sg-container-schedule .sg-container-content-body {
  padding-top: 0;
}
#sg-container-schedule #sg-schedule-widget .k-scheduler-layout.k-scheduler-dayview > tbody > tr:first-child {
  display: none;
}
/*#endregion*/

/*#endregion*/

/*#region ACCESS */

#sg-new-specific-auth-window .info {
  margin-bottom: 15px;
}
#sg-new-specific-auth-window #Obs {
  width: 100%;
  height: 100px;
  margin-bottom: 10px;
  resize: none;
}
/*#endregion*/

@media only screen and (max-width: 420px) {
  
}
@media only screen and (max-width: 767px) {
  body {
    margin-bottom: 0 !important;
  }
  .sg-footer-gradient {
    bottom: 0 !important;
  }
  .k-widget.k-window {
    width: 90% !important;
  }
  /*#region LAYOUT COMMONS */
  
  .sg-container.sg-container-no-tabstrip {
    margin-top: 0;
  }
  /*#endregion*/
  
  /*#region FOOTER */
  
  .sg-footer {
    position: absolute;
  }
  .sg-footer.no-footer {
    display: none;
  }
  .sg-footer .sg-footer-inner-container {
    background: white;
    text-align: center;
  }
  .sg-footer .sg-footer-inner-container > div > div {
    display: block;
    margin: 0 auto;
  }
  .sg-footer .sg-footer-inner-container > div > div > * {
    display: inline-block;
    vertical-align: top;
  }
  .sg-footer .sg-footer-inner-container .sg-footer-widget-brand.sg-footer-widget-brand-company,
  .sg-footer .sg-footer-inner-container .sg-footer-widget-brand.sg-footer-widget-brand-school {
    float: none;
    margin-left: 0;
    margin-right: 0;
  }
  .sg-footer .sg-footer-inner-container address {
    margin-left: 0;
  }
  .sg-footer .sg-footer-inner-container .sg-header-inner-container-right {
    text-align: center;
    height: 0;
  }
  .sg-footer .sg-footer-inner-container .sg-header-inner-container-right > div {
    height: 0;
    padding-top: 10px;
    padding-right: 0;
  }
  .sg-footer .sg-footer-inner-container .sg-header-inner-container-right > div img {
    top: -25px;
    right: -85px;
  }
  .sg-footer .sg-footer-inner-container .logo-container {
    margin-top: 10px;
  }
  .sg-footer .sg-footer-inner-container .logo-container img {
    height: 60px;
  }
  /*#endregion*/
  
  /*#region PROFILE PAGE */
  
  .sg-container-content-profile-top > div {
    float: none;
    text-align: center;
  }
  /*#endregion*/
  
  /*#region GRID WIDGET com SUBGRID*/
  
  .k-widget.k-grid tbody .sg-grid-row .sg-grid-column .sg-grid-column-info-bottom span {
    padding-right: 0;
  }
  .k-widget.k-grid tbody .sg-grid-row .sg-grid-column.sg-grid-column-text-left {
    padding-left: 0;
  }
  .k-widget.k-grid tbody .sg-grid-row .sg-grid-column.sg-grid-column-actions .sg-grid-column-actions-button-left,
  .k-widget.k-grid tbody .sg-grid-row .sg-grid-column.sg-grid-column-actions .sg-grid-column-actions-button-right {
    padding-left: 0;
  }
  /*#endregion*/
  
  /*#region Específico para a página de MOVIMENTOS */
  
  #sg-tabstrip-transactions .sg-container-content-header-info {
    margin-right: 87px;
  }
  #sg-tabstrip-transactions #sg-grid-normal-transactions .sg-grid-column.sg-grid-column-text-right .sg-grid-column-info-bottom {
    font-family: 'MuseoSans-700', sans-serif;
    font-weight: 700;
  }
  /*#endregion*/
  
  /*#region Específico para a página de CARREGAMENTO */
  
  /*#sg-container-content-charging {
          padding: 20px 0 5px 0;
  
          .sg-container-content-charging-actions button.sg-charging-button {
              margin: 10px 10px !important;
          }
  
          .sg-container-content-charging-info {
              .list-group {
                  width: 100% !important;
              }
          }
  
          .sg-container-content-charging-form {
              font-size: 14px;
  
              label, input {
                  width: 100% !important;
              }
  
              input {
                  margin-top: 5px !important;
              }
  
              .text-field {
                  margin-top: 10px;
                  margin-left: 15px;
              }
          }
  
          .sg-container-content-charging-methods {
              .row > div:nth-child(3) {
                  margin-top: -10px;
              }
  
              .row > div:last-child {
                  margin-top: 20px;
                  margin-bottom: 20px;
              }
          }
      }*/
  
  /*#endregion*/
  
  /*#region DOCUMENTATION PAGE */
  
  #sg-grid-forasking-documents,
  #sg-grid-requested-documents,
  #sg-grid-ready-documents {
    overflow: auto;
  }
  /*#endregion*/
  
  /*#region MEALS weekly view */
  
  .sg-scheduled-meals-container .day-header {
    margin-top: 42px;
  }
  .sg-scheduled-meals-container .day-header.no-margin-top {
    margin-top: 5px;
  }
  .sg-scheduled-meals-container .meals-container .sg-scheduled-right-container .meal-time-container {
    padding-top: 10px;
    border-top: 1px solid;
    border-color: #cccbcf;
    margin-top: 10px;
  }
  .sg-scheduled-meals-container .meals-container .sg-scheduled-right-container .meal-time-container.no-border {
    border-top: 0;
    padding-top: 0;
    margin-top: 0;
  }
  /*#endregion */
  
  /*#region override of calendar widget for small devices */
  
  /*.cal-week-box.four-columns-only {
          .cal-offset1 {
              margin-left: 25%;
          }
  
          .cal-offset2 {
              margin-left: 50%;
          }
  
          .cal-offset3 {
              margin-left: 75%;
          }
  
          .cal-row-fluid .cal-cell1 {
              width: 25%;
  
              &.top-row {
                  border-bottom: 1px solid #e1e1e1;
                  padding-bottom: 10px;
                  margin-bottom: 10px;
              }
          }
      }*/
  
  /*#endregion*/
  
  /*#region override of access general auth for small devices */
  
  .checkbox-group {
    border-left: none !important;
  }
  .checkbox-group-inline {
    padding: 0;
  }
  .checkbox-group-inline .checkbox-inline {
    padding-left: 10px;
    margin-left: 0;
  }
  /*#endregion*/
}
/*#region SPECIAL BOOTSTRAP COLUMNS - Para existirem 7 colunas na mesma linha */

@media (min-width: 1200px) {
  /*.row.sg-seven-cols .col-lg-1 {
          width: 14.285714285714285714285714285714%;
          padding-left: 5px;
          padding-right: 5px;
  
          .sg-container-meals-img {
              width: 50px;
              height: 50px;
          }
      }*/
}
/*#endregion*/

#sg-grid-access .obs {
  width: 35px;
  border-left: none;
}
#sg-grid-inbox-messages .sg-grid-row {
  cursor: pointer;
}
.swal2-modal .btn-success {
  margin-right: 20px;
}
/*#sg-container-transactions .saldo {
    color: #a3cc00;
    margin-top: 20px;
    float: right;
    font-size: 16px;
}*/

#sg-grid-requested-documents .sg-grid-column-text-left {
  vertical-align: top;
}
.validation-summary-errors ul {
  padding-left: 0;
  font-family: 'MuseoSans-700', sans-serif;
  font-size: 20px;
  list-style-type: none;
}
.validation-summary-errors ul li {
  color: red;
}
/*#region ACESSOS -> HISTÓRICO PAGE */

/*#sg-grid-access {
    .k-detail-row {
        .k-detail-cell {

            .table {
                & > thead {
                    & > tr {
                        & > th {
                            border-bottom: none;
                            font-family: @font-300;
                            font-weight: 300;
                            color: @green;
                            display: block;
                            min-height: 18px;
                            line-height: 18px;
                            margin: -0.5em -0.6em -0.4em -0.6em;
                            padding: .5em .6em .4em 1em;
                            overflow: hidden;
                            -ms-text-overflow: ellipsis;
                            -o-text-overflow: ellipsis;
                            text-overflow: ellipsis;
                            cursor: default;
                        }
                    }
                }

                & > tbody {
                    & > tr {
                        & > td {
                            font-family: @font-100;
                            font-weight: 100;
                            font-size: 13px;
                            margin: -0.5em -0.6em -0.4em -0.6em;
                            padding: .5em .6em .4em .6em;
                            overflow: hidden;
                            line-height: 1.6em;
                            vertical-align: middle;
                            -ms-text-overflow: ellipsis;
                            -o-text-overflow: ellipsis;
                            text-overflow: ellipsis;
                            border-width: 1px 0 0 0;
                            border-style: solid;
                            border-color: #ccc;
                        }
                    }
                }
            }
        }
    }
}*/

/*#endregion*/

/*#region ACESSOS -> AUTORIZAÇÕES GERAIS PAGE */

#sg-general-auth-form .form-group:last-child {
  margin-bottom: 0;
}
#sg-general-auth-form .checkbox-group .k-checkbox-label {
  padding: 11px 0 0 35px;
}
#sg-general-auth-form .checkbox-group-inline .k-checkbox-label {
  padding: 11px 0 0 30px;
}
#sg-general-auth-form .k-checkbox-label {
  font-weight: 300;
  border-style: none;
}
#sg-general-auth-form .k-checkbox-label:before {
  background: url(icon/checkbox_semcheck_portal_sige.svg) no-repeat center center;
  content: '';
  width: 30px;
  height: 30px;
  border-style: none;
}
#sg-general-auth-form .k-checkbox:checked + .k-checkbox-label:before {
  background: url(icon/checkbox_comcheck_portal_sige.svg) no-repeat center center;
  content: '';
  border-style: none;
  outline: 0;
}
.checkbox-group {
  border-left: 1px solid #e1e1e1;
  padding: 5px 0 5px 10px;
}
.checkbox-group-inline {
  padding: 5px 0;
}
.sg-general-auth-submit-container {
  margin-bottom: 10px;
}
.sg-general-auth-submit-container button {
  padding: 0;
  font-family: 'MuseoSans-500', sans-serif;
  font-size: 12px;
  font-weight: 500;
  border: none;
  border-radius: 0;
  color: black;
  background: white;
  outline: 0;
}
.sg-general-auth-submit-container button img {
  width: 42px;
  height: 42px;
}
/*#endregion*/

/*#region ACESSOS -> AUTORIZAÇÕES ESPECÍFICAS PAGE */

#sg-grid-specific-auth .sg-grid-row .sg-grid-column.sg-grid-column-actions img.sg-button {
  cursor: default;
}
#sg-grid-specific-auth .sg-grid-row .sg-grid-column.sg-grid-column-actions img.sg-button.sg-editable-auth {
  cursor: pointer;
}
/*#endregion*/

#sg-menu-products-list {
  display: flex;
  flex-wrap: wrap;
  border: none;
}
#sg-menu-products-list .sg-menu-products-list-product {
  flex: 0 0 16.666666666666666666666666666667%;
  box-sizing: border-box;
  color: #171e42;
  padding: 0 15px;
  margin: 15px 0;
  text-align: center;
}
#sg-menu-products-list .sg-menu-products-list-product .img-responsive {
  width: 100%;
}
#sg-menu-products-list .sg-menu-products-list-product .sg-menu-products-list-product-name {
  margin-bottom: 5px;
}
#sg-menu-products-list .sg-menu-products-list-product .sg-menu-products-list-product-price {
  font-weight: bold;
}
.sg-cart-table thead > tr > th,
.sg-cart-table tbody > tr > td {
  border: none;
}
.sg-cart-table .sg-cart-table-item td {
  vertical-align: middle;
}
.sg-cart-table .sg-cart-table-item .sg-cart-table-item-remove-btn,
.sg-cart-table .sg-cart-table-item .sg-cart-table-item-remove-btn:focus,
.sg-cart-table .sg-cart-table-item .sg-cart-table-item-remove-btn:active,
.sg-cart-table .sg-cart-table-item .sg-cart-table-item-remove-btn:hover {
  width: 26px;
  height: 26px;
  background-color: none;
  background-repeat: no-repeat;
  background-size: 26px 26px;
  background-position: center;
  border: none;
  outline: none;
}
.sg-cart-table .sg-cart-table-item .sg-cart-table-item-qty {
  text-align: center;
  font-family: 'MuseoSans-700', sans-serif;
  font-weight: 700;
  font-size: 18px;
}
@media only screen and (min-width: 320px) {
  #sg-menu-products-list .sg-menu-products-list-product {
    flex: 2 0 50%;
  }
}
@media only screen and (min-width: 768px) {
  #sg-menu-products-list .sg-menu-products-list-product {
    flex: 3 0 33%;
  }
}
@media only screen and (min-width: 991px) {
  #sg-menu-products-list .sg-menu-products-list-product {
    flex: 0 0 25%;
  }
}
@media only screen and (min-width: 1440px) {
  #sg-menu-products-list .sg-menu-products-list-product {
    flex: 0 0 16.666666666666666666666666666667%;
  }
}
.sg-color {
  color: lightblue;
}
#take-away .sg-cart-table-item-remove-btn {
  background-color: transparent;
}
#take-away #submit-container {
  position: absolute;
  bottom: 30px;
  width: 100%;
}
#take-away #submit-container #total {
  text-align: center;
  font-weight: bold;
}
#take-away #submit-container button {
  display: block;
  margin-left: auto;
  margin-right: auto;
  width: 60px;
  height: 60px;
  background-color: transparent;
  border: none;
}
.row-eq-height {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
