/*Revisão CSS GesEdu 2024*/
/*DB@SQUAD - 04/2024*/

/*VAREIÁVEIS*/
:root {
    --ig-green-grad: #2de27f;
    --ig-red-grad: #df474d;
    --ig-blue-grad: #12295f;
    --ig-titlefont: 'IBM Plex Sans', sans-serif;
    --ig-txtfont: 'IBM Plex Sans', sans-serif;
    --ig-glyphfont: 'Glyphicons Halflings';
    --ig-white: #fff;
    --ig-tr-white: rgba(255,255,255,0.5);
    --ig-tr-green: rgba(141,255,195,0.2);
    --ig-blue: #12295f;
    --ig-blue-2: #2975ef;
    --ig-blue-2: #2975ef;
    --ig-lighter-grey: #f8fdf8;
    --ig-light-grey: #E9F9E9;
    --ig-grey: #999999;
    --ig-dark-grey: #58595b;
    --ig-darker-grey: #091633;
    --ig-red: #d71920;
    --ig-red-2: #df474d;
    --ig-orange: #f8971d;
    --ig-green: #1eaf59;
    --ig-yellow: #f9c00c;
    --ig-input-bcolor: #f5f5f5;
    --ig-transition: all 0.5s ease;
    --ig-transition-sh: all 0.2s ease;
    --ig-xxs-font-size: 8px;
    --ig-xs-fsize: 10px;
    --ig-sm-fsize: 14px;
    --ig-md-fsize: 16px;
    --ig-lg-fsize: 18px;
    --ig-xl-fsize: 30px;
    --ig-border: solid 1px #12295f;
    --ig-green-border: solid 1px #1eaf59;
    --ig-lgray-border: solid 1px #e1e1e1;
    --ig-box-shadow: 0 1px 1px rgba(0, 0, 0, .05);
    --ig-box-shadow-input: 0 2px 6px rgba(0, 0, 0, 0.2), 0 2px 3px rgba(0, 0, 0, 0.05);
}

/*Fontes locais*/

/* ibm-plex-sans-regular - latin */
@font-face {
    font-display: swap;
    font-family: 'IBM Plex Sans';
    font-style: normal;
    font-weight: 400;
    src: url('../fonts/ibm-plex-sans-v23-latin/ibm-plex-sans-v23-latin-regular.woff2') format('woff2'); 
}
/* ibm-plex-sans-700 - latin */
@font-face {
    font-display: swap; 
    font-family: 'IBM Plex Sans';
    font-style: normal;
    font-weight: 700;
    src: url('../fonts/ibm-plex-sans-v23-latin/ibm-plex-sans-v23-latin-700.woff2') format('woff2'); 
}

/*Gerais*/
body {
    overflow-x: hidden;
    padding-top: 50px;
    padding-bottom: 20px;
    font-family: var(--ig-txtfont);
    background: var(--ig-lighter-grey);
}

h1, h2, h3, h4, h5 {
    font-family: var(--ig-titlefont);
    font-weight:bold;
}
a {
    color: #2975EF;
}

#wrapper {
    padding-left: 0;
    transition: var(--ig-transition);
}

    #wrapper.toggled {
        padding-left: 200px;
    }

#sidebar-wrapper {
    z-index: 1000;
    position: fixed;
    left: 200px;
    width: 0;
    height: 100%;
    margin-left: -200px;
    overflow-y: auto;
    background: var(--ig-darker-grey);
    transition: var(--ig-transition);
    margin-top: 4px;
}

#wrapper.toggled #sidebar-wrapper {
    width: 200px;
}

#page-content-wrapper {
    width: 100%;
    position: absolute;
    padding: 15px;
}

#wrapper.toggled #page-content-wrapper {
    position: absolute;
    margin-right: -200px;
}

.ig-content {
    min-height: calc(100vh - 256px);
}

    .ig-content.ig-mainarea {
        min-height: calc(100vh - 236px);
    }

/*Sidebar*/
.sidebar-nav {
    position: absolute;
    top: 0;
    width: 200px;
    margin: 0;
    padding: 0;
    list-style: none;
}

    .sidebar-nav li a {
        display: block;
        text-decoration: none;
        color: var(--ig-grey);
        padding: 6px 12px;
        border-bottom: var(--ig-border);
    }

        .sidebar-nav li a:hover, .sidebar-nav li a:focus {
            text-decoration: none;
            color: var(--ig-white);
            background: rgba(255,255,255,0.1);
        }

        .sidebar-nav li a:active, .sidebar-nav li a:focus {
            text-decoration: none;
        }

    .sidebar-nav > .sidebar-brand {
        height: 65px;
        font-size: var(--ig-lg-fsize);
        line-height: 60px;
    }

        .sidebar-nav > .sidebar-brand a {
            color: var(--ig-grey);
        }

            .sidebar-nav > .sidebar-brand a:hover {
                color: var(--ig-white);
                background: none;
            }

.ig-sidebar.sidebar-nav ul ul li a {
    padding-left: 45px;
}

.ig-sidebar.sidebar-nav ul ul ul li a {
    padding-left: 60px;
}

li.ig-sidebarapps-link {
    background: var(--ig-blue);
    border-top:solid 1px var(--ig-green);
}

ul ul .ig-submenu-cont:before, ul ul .ig-submenu-cont.collapsed:before {
    top: 10px;
}

.ss-wrapper {
    overflow: hidden;
    width: 100%;
    height: 100%;
    position: relative;
    z-index: 1;
    float: left;
}

.ss-content {
    height: 100%;
    width: calc(100% + 17px);
    padding: 0 0 0 0;
    position: relative;
    overflow-y: scroll;
    box-sizing: border-box;
}

.ss-scroll {
    position: relative;
    background: rgba(0, 0, 0, 0.2);
    width: 6px;
    border-radius: 4px;
    top: 0;
    z-index: 2;
    cursor: pointer;
    opacity: 0.4;
    transition: opacity 0.25s linear;
    right: calc(-100% + 8px) !important;
}

.ss-hidden {
    display: none;
}

.ss-container:hover .ss-scroll,
.ss-container:active .ss-scroll {
    opacity: 1;
}

.ss-grabbed {
    user-select: none;
}

/*Header*/
.ig-green-gradient {
    height: 3px;
    background: var(--ig-green-grad);
}

nav.ig-navbar.navbar-inverse {
    background: var(--ig-blue);
    border-color: var(--ig-blue);
}

    nav.ig-navbar.navbar-inverse a.navbar-brand {
        padding: 6px 15px;
    }

        nav.ig-navbar a.navbar-brand img{
            height:40px;
        }
        .navbar-inverse .navbar-nav > li > a {
            color: #b9b9b9;
            transition: var(--ig-transition-sh);
        }

    .navbar-inverse .navbar-nav > li > a:hover {
        transition: var(--ig-transition-sh);
    }

.ig-toggle-button {
    margin-left: 35px;
}

li.dropdown.ig-user-ddl span[class*="ig-uo-"] {
    display: block;
}

.ig-user-ddl {
    padding-left: 15px
}

    .ig-user-ddl strong.caret {
        position: absolute;
        top: 50%;
        right: 15px;
    }

    .ig-user-ddl .dropdown-toggle {
        position: relative;
        padding: 5px 30px 3px 15px;
    }

span.ig-uo-number, span.ig-uo-user {
    font-size: var(--ig-xs-fsize);
    line-height: 14px;
}

span.ig-uo-name {
    line-height: 14px;
    font-size: var(--ig-sm-fsize);
}

.ig-servicenow i {
    font-size: var(--ig-lg-fsize);
    margin-right: 3px;
}

.navbar-nav > li.ig-servicenow > a {
    padding: 14px 15px;
}
/*Footer*/
footer.ig-footer {
    background: var(--ig-light-grey);
    padding: 15px 35px;
    width: calc(100% + 40px);
    margin-left: -20px;
    color:var(--ig-blue);
}

    footer.ig-footer .ig-logo-right {
        text-align: right;
    }

    footer.ig-footer .ig-logo-right, footer.ig-footer .ig-logo-left {
        margin-bottom: 10px;
    }

        footer.ig-footer .ig-logo-right img, footer.ig-footer .ig-logo-left img {
            height: 40px;
            margin-top: 10px;
        }

.ig-logo-right a {
    margin-left: 15px;
}

.ig-logo-left a {
    text-decoration: none;
}

.ig-logo-left img {
    margin-right: 15px;
}

.ig-copyright {
    margin-top: 20px;
    padding-top: 15px;
    border-top: var(--ig-border);
    text-align: center;
}

p.ig-privpol a {
    font-size: var(--ig-sm-fsize);
    color: var(--ig-blue);
}

/*Sidebar*/
span.ig-sidebar-link, .ig-sidebar img {
    display: inline-block;
    vertical-align: middle;
}

span.ig-sidebar-link {
    line-height: 16px;
    padding-left: 5px;
    float: none;
    width: 145px;
    color: #e5e5e5;
}

.ig-sidebar img {
    padding: 4px 0;
}

.ig-sidebar.sidebar-nav {
    height: calc(100% - 54px);
}

    .ig-sidebar.sidebar-nav li a {
        min-height: 41px;
        position: relative;
        width: 200px;
        transition: var(--ig-transition-sh);
    }

.ig-panel p.list-group-item-text {
    font-size: var(--ig-sm-fsize);
    color: var(--ig-dark-grey);
}

.ig-sidebar .ss-scroll {
    background: var(--ig-tr-white);
    opacity: 0;
}

.ig-submenu-cont.collapsed:before, .ig-submenu-cont:before {
    position: absolute;
    right: 7px;
    top: 15px;
    font-family: var(--ig-glyphfont);
    font-size: var(--ig-xxs-font-size);
}

.ig-submenu-cont.collapsed:before {
    content: "\e252";
    display: block;
}

.ig-submenu-cont:before {
    content: "\e253";
    width: 10px;
    height: 10px;
}

.ig-sidebar.sidebar-nav ul li a {
    min-height: auto;
    border-bottom: none;
    padding: 6px 6px 8px 26px;
    font-size: var(--ig-sm-fsize);
    color: #e5e5e5;
}

.sidebar-nav li a.ig-submenu-cont, .ig-sidebar li ul li a.ig-submenu-cont.collapsed, .sidebar-nav li ul ul {
    border-bottom: none;
}

    .sidebar-nav li a.ig-submenu-cont.collapsed, .sidebar-nav li ul {
        border-bottom: var(--ig-border);
    }

/*Botões*/
.btn.btn-default {
    line-height: 24px !important;
}

.btn.ig-btn-green, .ig-grid .btn.ig-btn-green, .btn.ig-btn-green:hover, .btn.ig-btn-green:focus, .btn.ig-btn-red, .btn.ig-btn-red:hover, .btn.ig-btn-red:focus, .btn.ig-btn-blue, .btn.ig-btn-blue:hover, .btn.ig-btn-blue:focus {
    color: var(--ig-white);
    transition: var(--ig-transition);
    line-height: 24px;
    font-weight: bold;
    font-size: var(--ig-md-fsize);
}

.btn.ig-btn-green, .ig-grid .btn.ig-btn-green {
    background: var(--ig-green);
    border: var(--ig-green-border);
}

    .btn.ig-btn-green:hover, .btn.ig-btn-green:focus {
        background: #2de27f;
    }

.btn.ig-btn-red {
    background: var(--ig-red);
    border: solid 1px var(--ig-red);
}

    .btn.ig-btn-red:hover, .btn.ig-btn-red:focus {
        background: var(--ig-red-2);
    }

.btn.ig-btn-blue {
    background: var(--ig-blue-grad);
    border: solid 1px var(--ig-dark-grey);
}

    .btn.ig-btn-blue:hover, .btn.ig-btn-blue:focus {
        background: var(--ig-blue-2);
    }

a.btn.ig-btn-round, button.btn.ig-btn-round {
    font-size: var(--ig-lg-fsize);
    color: var(--ig-blue);
    border-radius: 20px;
    border: var(--ig-lgray-border);
    background: var(--ig-lighter-grey);
    width: 40px;
    height: 40px;
    text-align: center;
    padding: 0;
    line-height: 40px;
    margin-left: 5px;
}

    a.btn.ig-btn-round:hover {
        background: var(--ig-white);
    }

    a.btn.ig-btn-round.ig-btn-back {
        float: left;
        font-size: var(--ig-sm-fsize);
        padding: 2px 5px;
        margin-right: 10px;
        margin-top: 7px;
        width: auto;
        height: auto;
        line-height: 16px;
        margin-left: 0;
    }

    a.btn.ig-btn-round.ig-btn-round-danger {
        color: var(--ig-orange);
    }

a.ig-link {
    color: var(--ig-green);
}

.ig-grid a.btn {
    margin-left: 5px;
}

    .ig-grid a.btn.btn-sm {
        color: var(--ig-white);
        padding: 0px 12px;
        font-size: var(--ig-sm-fsize)
    }

.ig-docrec-btn {
    vertical-align: top;
    margin-top: 5px;
}

.ig-task-textarea button.btn {
    vertical-align: top;
    margin: 10px 0 0 10px;
}

a.ig-book-select:hover .ig-panel {
    background: var(--ig-lighter-grey);
}

a.ig-book-select {
    color: var(--ig-blue);
    cursor: pointer;
}

    a.ig-book-select.ig-bs-active .ig-panel, a.ig-book-select.ig-bs-active:hover .ig-panel {
        background: var(--ig-tr-green);
        position: relative;
    }

.ig-update-estimate .btn.btn-default {
    line-height: 18.5px !important;
    padding: 6px 8px;
    border-radius: 0;
}

.ig-validate-btns i {
    width: 15px;
}

.ig-ddbutton-cont {
    position: relative;
}
/*Login*/
a.ig-sec-login {
    font-size: var(--ig-sm-fsize);
    display: block;
    margin-bottom: 15px;

}

.ig-login-panel {
    margin-top: 30px;
}

.ig-register-footer {
    margin-bottom: 50px;
}

/*Homepage*/
.ig-biglinks-container, .ig-biglink-hp .ig-panel, .ig-biglink-hp .ig-panel .panel-body {
    display: flex;
    width: 100%;
}

    .ig-biglink-hp .ig-panel, .ig-biglink-hp .ig-panel .panel-body, .ig-biglink-hp img {
        height: 100%;
    }

.ig-biglinks-container {
    height: calc(100vh - 463px);
    flex-direction: column;
}

a.ig-biglink-hp {
    flex-grow: 1;
    margin-bottom: 10px;
    min-height: 0;
}

    .ig-biglink-hp .ig-panel, a.ig-biglink-hp:last-child {
        margin-bottom: 0;
    }

.ig-biglink-hp:hover .panel-body, .ig-biglink-hp:focus .panel-body, .ig-classlink:hover .panel-body, .ig-classlink:focus .panel-body, .ig-booklink:hover .panel-body, .ig-booklink:focus .panel-body {
    background: var(--ig-tr-green);
    transition: var(--ig-transition-sh);
}

.ig-biglink-hp .ig-panel .panel-body {
    align-items: center;
}

.ig-biglink-hp img {
    margin-right: 30px;
    max-height: 200px;
}

a.ig-biglink-hp:hover, a.ig-biglink-hp:hover h5.ig-dash-title {
    text-decoration: none;
}

.row.ig-uobtn-cont, .row.ig-smrow {
    margin-right: -7px;
    margin-left: -7px;
}

.ig-uobtn-cont [class*="col-"], .ig-smrow [class*="col-"] {
    padding-right: 7px;
    padding-left: 7px;
}

.ig-home-list {
    max-height: calc(100vh - 421px);
    overflow-y: auto;
}

/*Panels*/
.ig-panel, .panel-group .ig-panel, .ig-detuo-schools div.list-group-item, .ig-detuo-schools a.list-group-item:first-child, .ig-detuo-schools a.list-group-item:last-child {
    border-radius: 0
}

.ig-panel, .panel-group .ig-panel {
    border: var(--ig-lgray-border);
}

    .ig-panel .panel-body, .ig-dash-green, .ig-dash-red, .ig-statistics-panel, .ig-panel.panel.panel-default.error {
        position: relative;
    }

    .ig-panel .panel-body {
        padding: 10px 15px;
    }

    .ig-panel .form-group, .ig-estensino-newscont h4.list-group-item-heading, .ig-uodet-contact {
        margin-bottom: 10px;
    }

.ig-estensino-indexcont .ig-panel h4.list-group-item-heading, ig-statistics-panel h4 {
    color: var(--ig-blue);
}

.ig-estensino-indexcont .ig-panel h4.list-group-item-heading {
    margin-top: 2px;
    line-height: 22px;
    font-weight: bold;
}

.ig-estensino-indexcont .ig-panel .panel-body {
    padding-bottom: 0;
}

.ig-dash-green label.control-label, .ig-detuo-schools .list-group {
    margin-bottom: 0;
}

.ig-estensino-news p.ig-newsdate {
    margin: 0;
    font-size: var(--ig-sm-fsize);
}

.ig-estensino-newscont {
    height: calc(100vh - 500px);
    overflow-y: auto;
}

.ig-dash-green:before, .ig-panel.success.panel.panel-default:before, .ig-dash-red:before, .ig-panel.panel.panel-default.error:before, .ig-statistics-panel:before, a.ig-book-select.ig-bs-active .ig-panel:before, .ig-pagetitle:before, .ig-errorlist .ig-panel .panel-body:before, .ig-panel-blue .nav-tabs > li.active > a:before, .ig-tabs .nav-tabs > li.active > a:before, .ig-modal-loader .modal-content::before, .ig-react-homeaxis-disabled .ig-panel:before {
    position: absolute;
    content: "";
}

.ig-dash-green:before, .ig-panel.success.panel.panel-default:before, .ig-dash-red:before, .ig-panel.panel.panel-default.error:before, .ig-statistics-panel:before, a.ig-book-select.ig-bs-active .ig-panel:before, .ig-pagetitle:before, .ig-errorlist .ig-panel .panel-body:before {
    width: 3px;
    height: 100%;
    display: block;
    top: 0;
    left: 0;
    z-index: 2;
}

.ig-panel-blue .nav-tabs > li.active > a:before, .ig-tabs .nav-tabs > li.active > a:before, .ig-modal-loader .modal-content::before, .ig-dash-green:before, .ig-panel.success.panel.panel-default:before, a.ig-book-select.ig-bs-active .ig-panel:before, .ig-pagetitle:before {
    background: var(--ig-green-grad);
}

.ig-dash-red:before, .ig-panel.panel.panel-default.error:before, ig-errorlist .ig-panel .panel-body:before {
    background: var(--ig-red-grad);
}

.ig-statistics-panel:before {
    background: var(--ig-blue-grad);
}

.ig-panel-blue .nav-tabs > li.active > a:before, .ig-tabs .nav-tabs > li.active > a:before, .ig-modal-loader .modal-content::before {
    width: 100%;
    height: 3px;
    top: 0;
    left: 0;
    border-radius: 3px 3px 0 0;
}

.panel-group .ig-statistics-panel, .ig-statistics-panel {
    margin-bottom: 15px
}

    .ig-statistics-panel h4, .ig-statistics-panel p {
        margin-bottom: 5px;
        margin-top: 0;
        display: inline-block;
    }

    .ig-statistics-panel .row [class*="col-"] {
        border-right: var(--ig-lgray-border);
    }

        .ig-statistics-panel .row [class*="col-"]:last-child {
            border-right: none;
        }

        .ig-statistics-panel .row [class*="col-"].ig-colbtnstats {
            border: none;
        }

    .ig-statistics-panel p {
        float: right;
        display: inline;
        margin-bottom: 0 !important;
        margin-top: 2px;
    }

    .ig-statistics-panel h5.ig-dash-title {
        display: block;
        overflow: hidden;
        white-space: nowrap;
        text-overflow: ellipsis;
        line-height: 16px;
        margin-bottom: 7px;
    }

    .ig-statistics-panel a.ig-sec-link {
        margin: 15px 15px 0 0;
    }

    .ig-statistics-panel a:hover h4 {
        text-decoration: underline;
    }

    .ig-statistics-panel .alert {
        margin-bottom: 0;
    }

.ig-panel.ig-statpanel-sbs .panel-body {
    padding: 15px;
}

.ig-rs-resolved {
    background: var(--ig-tr-green);
    color: var(--ig-green);
    font-family: var(--ig-titlefont);
    font-size: var(--ig-lg-fsize);
    padding-left: 45px;
    font-weight:bold;
}

    .ig-rs-resolved:before {
        font-family: 'Font Awesome 5 Free';
        font-weight: 900;
        float: left;
        margin-left: -30px;
        font-size: 24px;
        line-height: 24px;
        margin-right: 10px;
        content: "\f00c";
    }

.ig-panel hr, .ig-dsr-contact hr, hr.ig-smhr {
    margin: 10px 0;
}

hr.ig-sep {
    margin: 20px 0;
}

.ig-react-homeaxis-disabled .ig-panel:before {
    width: 100%;
    height: 100%;
    background: var(--ig-tr-white);
    z-index: 3;
    cursor: not-allowed;
}

.ig-detuo-schools .ig-scroll {
    height: 407px;
}

.ig-detuo-schools div.list-group-item:first-child, .ig-detuo-schools a.list-group-item:first-child {
    border-top: none;
}

.ig-panel .panel-body.ig-detuo-schools-container {
    padding: 10px 15px 0 15px;
}

.ig-detuo-schools div.list-group-item, .ig-detuo-schools a.list-group-item {
    border-left: none;
    border-right: none;
}

    .ig-uodet-contact:last-child, .ig-detuo-schools div.list-group-item:last-child {
        border-bottom: none;
    }

.ig-uodet-contact {
    border-bottom: var(--ig-lgray-border);
    padding-bottom: 5px;
}

/*Titles*/
h4.ig-small-title, h5.ig-small-title, h5.ig-dash-title {
    font-family: var(--ig-txtfont);
    font-size: var(--ig-sm-fsize);
    color: var(--ig-green);
    font-weight: bold;
    letter-spacing: 0.5pt;
}

h5.ig-dash-title {
    margin-top: 5px;
    display: inline-block;
}

.ig-subject-book h4.ig-small-title, .ig-subject-book h5.ig-small-title {
    margin-top: 25px;
}
/*Labels*/
label.control-label, .ig-uobtn-cont span, span.ig-asyncdoc-download, span.ig-state-success {
    color: var(--ig-blue);
}
span.ig-state-success{
    color:var(--ig-green);
}
label.control-label, label.error {
    font-size: var(--ig-sm-fsize);
}

.ig-info-label, span.ig-state-neutral {
    color: var(--ig-blue);
}

.ig-hidetxt {
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}

label.control-label.ig-hidetxt {
    margin-bottom: -2px;
    margin-top: 2px;
}

label.error {
    color: var(--ig-red-2);
    padding-top: 5px;
}

    label.error:before {
        font-family: FontAwesome;
        font-weight: 900;
        content: "\f071";
        margin-right: 3px;
    }

.ig-uobtn-cont span {
    margin-right: 8px;
}

span.ig-asyncdoc-processing, span.ig-state-warning, span.ig-state-error, span.ig-state-neutral, span.ig-asyncdoc-download, span.ig-state-success {
    font-weight: bold;
}

.ig-uobtn-cont span.label {
    color: var(--ig-white);
}

span.ig-asyncdoc-processing, span.ig-state-warning {
    color: var(--ig-orange);
}

span.ig-state-error {
    color: var(--ig-red);
}

/*Títulos de páginas*/
.ig-pagetitle {
    background: var(--ig-white);
    padding: 15px;
    margin: 0 0 15px 0;
    border: var(--ig-lgray-border);
    position: relative;
    box-shadow: var(--ig-box-shadow);
    font-weight:bold;
}

    .ig-pagetitle:before {
        width: 6px;
    }

    .ig-pagetitle h2 {
        margin: 0px;
        color: var(--ig-green);
        font-weight: bold;
    }

h2.ig-dashmaintitle {
    margin: 0 0 20px 0;
    color: var(--ig-green);
    font-weight: bold;
}

.ig-pagetitle ol.breadcrumb, .ig-pagetitle p, .ig-pagetitle ol.breadcrumb a {
    font-size: var(--ig-sm-fsize);
    color: var(--ig-blue);
}
    .ig-pagetitle ol.breadcrumb a{
        font-weight:normal;
    }
    .ig-pagetitle p {
        margin: 5px 0 0 0;
    }

.ig-pagetitle ol.breadcrumb {
    background: transparent;
    padding: 0;
    margin: 8px 0 0 0;
}

p.ig-titledet, ul.ig-titledet li {
    font-size: var(--ig-sm-fsize);
}

/*Utilizadores*/
a.ig-permissions-collapse, a.ig-smcollapse {
    font-size: var(--ig-sm-fsize);
    font-weight: bold;
    display: inline-block;
    color: var(--ig-green);
    margin-top: 5px;
}

a.ig-permissions-collapse {
    letter-spacing: 0.5pt;
    margin-bottom: 15px;
}

    a .ig-permissions-collapse:after, a.ig-smcollapse:after {
        font-size: var(--ig-xxs-font-size);
        font-family: var(--ig-glyphfont);
        width: 15px;
        text-align: right;
        height: 10px;
        display: inline-block;
        content: "\e253";
    }

    a.ig-permissions-collapse.collapsed:after, a.ig-smcollapse.collapsed:after {
        content: "\e252";
    }

/*Listagens*/
.ig-dash-docs {
    margin-bottom: 30px;
}

.ig-docs-list {
    margin-bottom: 40px;
}

    .ig-docs-list .ig-panel, .ig-students-list .ig-panel, .ig-users-list .ig-panel {
        margin-bottom: 10px;
    }

        .ig-docs-list .ig-panel:last-child {
            margin-bottom: 0;
        }

.ig-students-panel {
    margin-top: 42px;
}

.ig-subject-book-details, .ig-book-details {
    margin-top: 5px;
}

    .ig-subject-book-details .form-group, .ig-books-list .ig-panel, .alert.ig-rec-payment-alert {
        margin-bottom: 5px;
    }

.ig-book-adopt-cont .ig-books-list, .ig-book-add-cont .ig-addbook-form {
    border-top: 1px solid #e5e5e5;
}

.ig-student-box .ig-scval-details, .ig-dash-docs .ig-scval-details, .ig-errorlist .ig-scval-details, .ig-alertlist .ig-scval-details {
    margin-top: 7px;
}

.ig-react-docnotavailable:before {
    content: "";
    background: var(--ig-tr-white);
    width: 100%;
    height: 100%;
    cursor: not-allowed;
    position: absolute;
    left: 0;
}

.ig-react-axisnodata {
    padding: 30px 0;
}

.ig-react-homeaxis-cont .ig-panel, .ig-contabilitydata-container {
    position: relative;
}

.ig-react-updatedata {
    min-height: 130px;
}

.ig-docrec-listdet {
    width: calc(100% - 48px);
    display: inline-block;
    padding-right: 15px;
}

.ig-booklink .panel-body {
    min-height: 86px;
}
/*Nomes de escolas, estudantes, documentos...*/
span.badge.ig-badge-neutral, span.badge.ig-reactbadge-neutral, span.label.ig-cycle-co {
    background: var(--ig-blue);
}

span.badge.ig-badge-success, span.badge.ig-reactbadge-success {
    background: var(--ig-green);
}

span.badge.ig-badge-alert, span.badge.ig-reactbadge-alert {
    background: var(--ig-orange);
}

span.label.ig-hqschool {
    background: var(--ig-yellow);
}

span.badge.ig-stlabel-ase, span.label.ig-cycle01 {
    background: #19C973;
}

span.label.ig-cycle02 {
    background: #99E01B;
}

span.label.ig-cycle03 {
    background: #F7BB12;
}

span.badge.ig-stlabel-rep, span.label.ig-cycle-se {
    background: #ED4E11;
}

span.badge.ig-stlabel-bra {
    background: #288BED;
}

a.label.ig-stlabel-alert:hover {
    background: rgba(255,255,255,0.8)
}

a.ig-classlink, a.ig-booklink, p.ig-react-workerdata, .ig-students-panel h3, ig-subject-book h3 {
    color: var(--ig-blue);
}

.ig-panel h4.list-group-item-heading {
    color: var(--ig-blue);
}

p.ig-react-success, .ig-react-hp-cont h4 {
    color: var(--ig-green);
}

h4.ig-val-waittitle, p.ig-fieldalert, p.ig-react-notsubmited, .ig-student-alerts p {
    color: var(--ig-orange);
}

.ig-react-info .panel-heading a.collapsed:after {
    content: "\e080";
}

h4.ig-cyclestat, .ig-exportpanel label {
    display: block;
    margin-bottom: 10px;
}

a.ig-school-name, a.ig-sec-link, a.ig-student-name, a.ig-username, h4.panel-title {
    display: inline-block;
}

.ig-sec-links-cont a.ig-sec-link {
    display: table;
}

.panel-heading h4 .ig-cycles-container {
    float: none;
}

.panel-heading .ig-cycles-container {
    float: right;
}

h4.panel-title, h4.ig-cyclestat, .ig-scval-details h4 {
    font-family: var(--ig-txtfont);
}

a.ig-classlink p, a.ig-booklink p, a.ig-sec-link, h4.ig-school-name span, span.ig-react-axislabel, .ig-books-list .ig-panel p, .ig-docs-list, .ig-student-box, .ig-subject-book p, .ig-user-box {
    font-size: var(--ig-sm-fsize);
}

p.ig-fieldalert, .alert.ig-react-alert, .ig-scval-details h4, .ig-scval-details h4 .ig-student-alerts p {
    font-size: var(--ig-md-fsize);
}

h4 .ig-id-code, .ig-cycles-container .label {
    font-size: 13px;
}

.ig-cycle-title .label {
    font-size: 16px;
}

p.ig-fieldalert, .ig-student-alerts p {
    font-weight: bold;
}

.ig-booklink .ig-course-container, .ig-classlink .ig-course-container {
    line-height: 9px;
}

p.ig-req-data, .ig-pl-attachment .ig-sec-link {
    margin: 0;
}

.ig-scval-details h4 {
    margin: 5px 0;
}

.ig-students-panel h3 {
    margin: 15px 0;
}

.ig-subject-book .ig-sec-link {
    margin: 0 10px 0 0;
}

.ig-years-title .ig-sec-link {
    margin: 0 15px 0 0;
}

p.ig-m0 .ig-sec-link {
    margin: 5px 0 0 0;
}

a.ig-sec-link {
    margin: 15px 10px 15px 0;
}

.ig-detuo-schools p.list-group-item-text {
    margin-top: 4px;
}

.ig-react-hp-cont h4, .ig-subject-book h3 {
    margin-top: 5px;
}

.ig-classkey-container, .ig-mtop15 {
    margin-top: 15px;
}

.ig-years-title {
    margin-top: 20px;
}

h4 .ig-id-code, .ig-books-list h4, .ig-sec-links-cont .ig-sec-link:first-child {
    margin-top: 0;
}

p.ig-school-data span.ig-uo-code {
    margin-right: 0;
}

.ig-subject-book span.ig-book-uncertified {
    margin-right: 5px;
}

p.ig-contact-data span, p.ig-doc-data span, p.ig-school-data span, p.ig-student-data span, p.ig-user-data span {
    margin-right: 15px;
}

a.ig-booklink p, a.ig-classlink p, p.ig-contact-data, p.ig-doc-data, p.ig-school-data, p.ig-user-data, span.ig-react-axislabel:last-child, .ig-panel .list-group label.control-label, .ig-student-alerts p:last-child {
    margin-bottom: 0;
}

a.ig-booklink p {
    margin-bottom: 3px;
}

.ig-books-list h4, .ig-books-list .ig-panel p, .ig-dash-docs .ig-scval-details p, .ig-dash-green .ig-uodet-contact label.control-label, .ig-scval-details span.badge, .ig-uodet-contact p, .list-group h5.ig-dash-title, .ig-subject-book p {
    margin-bottom: 5px;
}

.ig-mbot10 {
    margin-bottom: 10px;
}

.ig-pl-attachment {
    margin-bottom: 30px;
}

.ig-dash-docs .ig-scval-details p, .ig-scval-details a.btn.ig-btn-round:first-child, ig-subject-book span.ig-book-uncertified {
    margin-left: 0;
}

.ig-scval-details p {
    margin-left: 17px;
}

a.ig-booklink p.pull-right, a.ig-classlink p.pull-right {
    padding-top: 2px;
}

p.ig-fieldalign {
    padding-top: 9px;
}

.ig-react-axisnodata p {
    text-align: center;
}

a.ig-booklink, a.ig-classlink {
    text-decoration: none;
}

h4.panel-title {
    vertical-align: middle;
}

p.ig-wordwrap {
    word-break: break-all;
}

a.ig-school-name span, h3 .ig-id-code, h3.ig-school-name span, h4 .ig-id-code, h4.ig-school-name span, span.ig-react-axislabel, .ig-pagetitle h2 .ig-id-code, .ig-pagetitle h2 .ig-sc-code, .panel-heading .ig-sc-code {
    background: var(--ig-light-grey);
    color: var(--ig-blue);
}

a.label.ig-stlabel-alert, span.label.ig-stlabel-alert {
    background: var(--ig-white);
    color: var(--ig-red-2);
}

a.ig-booklink h4, a.ig-classlink h4, a.ig-file-link, span.label.ig-hqschool, .ig-attachment, .ig-classlink span.label, .ig-react-attachment {
    display: inline-block;
    max-width: 100%;
}

.ig-cycle-title .label, .ig-cycles-container .label {
    display: inline-block;
    padding: 5px 10px;
}

p.ig-react-notsubmited, p.ig-react-success, p.ig-react-workerdata, span.ig-react-axislabel {
    font-weight: bold;
    margin-bottom: 5px;
}

a.ig-booklink h4, a.ig-classlink h4 {
    margin-top: 0;
    margin-bottom: 3px;
}

.text-right p.ig-contact-data span, .text-right p.ig-doc-data span, .text-right p.ig-school-data span, .text-right p.ig-student-data span, .text-right p.ig-user-data span {
    margin-right: 0;
    margin-left: 15px;
}

a.ig-cycles-container:hover, .ig-cycles-container a:hover {
    opacity: 0.8;
    text-decoration: none;
}

span.ig-school-name {
    padding-left: 10px;
    white-space: normal;
}

span.ig-uo-code, span.ig-id-code {
    background: var(--ig-light-grey);
    font-weight: bold;
    padding: 2px 7px;
    white-space: nowrap;
}

span.badge.ig-badge-alert, span.badge.ig-badge-neutral, span.badge.ig-badge-success, span.badge.ig-reactbadge-alert, span.badge.ig-reactbadge-neutral, span.badge.ig-reactbadge-success {
    color: var(--ig-white);
    display: table;
    margin-top: 2px;
}

a.ig-school-name span, h3 .ig-id-code, h3.ig-school-name span, h4 .ig-id-code, h4.ig-school-name span, .ig-pagetitle h2 .ig-id-code, .ig-pagetitle h2 .ig-sc-code, .panel-heading .ig-sc-code {
    float: left;
    font-weight: bold;
    vertical-align: middle;
}

.ig-classkey-container p > span {
    float: left;
    margin-right: 5px;
    margin-bottom: 10px;
}

h4.ig-val-waittitle {
    font-family: var(--ig-titlefont);
    font-size: var(--ig-lg-fsize);
    font-weight: normal;
}

span.label.ig-hqschool, .ig-classlink span.label {
    font-size: var(--ig-sm-fsize);
    font-weight: normal;
    padding: 4px 8px;
}

a.ig-booklink h4, a.ig-classlink h4, a.ig-file-link, .ig-attachment, .ig-classlink span.label, .ig-scval-details p, .ig-react-attachment, .ig-react-hp-cont h4 {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-weight: bold;
}

.ig-flschool {
    align-items: center;
    display: flex;
    flex-direction: row;
    min-height: 45px;
}

span.ig-react-axislabel {
    border-radius: 20px;
    display: table;
    padding: 4px 15px;
    transition: var(--ig-transition-sh);
}

a.ig-doc-name h3, a.ig-error-name h3, a.ig-school-name h3, a.ig-student-name h3, a.ig-username h3, h3.ig-doc-name, h3.ig-doc-name a, h3.ig-error-name, h3.ig-school-name, h3.ig-username {
    color: var(--ig-blue);
    font-size: 20px;
    margin-top: 0;
    word-break: break-word;
}

h3 .ig-id-code, h4 .ig-id-code, .ig-pagetitle h2 .ig-id-code, .ig-pagetitle h2 .ig-sc-code, .panel-heading .ig-sc-code {
    font-family: var(--ig-txtfont);
    padding: 4px 10px;
}

h3 .ig-id-code, .ig-pagetitle h2 .ig-id-code, .ig-pagetitle h2 .ig-sc-code, .panel-heading .ig-sc-code {
    margin: 4px 10px 0 0;
    font-size: var(--ig-lg-fsize);
}

h4 .ig-id-code {
    margin-right: 5px;
}

a.ig-school-name span, h3.ig-school-name span, h4.ig-school-name span {
    font-family: var(--ig-txtfont);
    font-size: var(--ig-md-fsize);
    margin: -2px 10px 0 0;
    padding: 5px 10px;
}

span.ig-book-certified, span.ig-book-uncertified {
    border-radius: 4px;
    display: inline-block;
    font-size: var(--ig-xs-fsize);
    padding: 2px 5px;
    background: var(--ig-light-grey)
}

.ig-react-info .panel-heading a:after {
    font-family: var(--ig-glyphfont);
    content: "\e114";
    float: right;
    color: var(--ig-darker-grey);
    position: absolute;
    right: 30px;
}

/*Accordions*/
.panel-heading .ig-sc-code {
    margin-top: 0;
    font-size: 13px;
    padding: 0 10px;
}

.ig-schools-accordion .panel-heading h4 {
    line-height: 24px;
}

.panel-default > .panel-heading {
    color: var(--ig-blue);
    background: var(--ig-white);
    overflow-y: auto;
}

    .panel-default > .panel-heading + .panel-collapse > .panel-body.ig-panel-blue {
        border-top: solid 3px var(--ig-blue);
        background: #f7f9fb;
    }

.ig-panel-blue .nav {
    padding-left: 15px;
}

.ig-content .panel-heading h4 {
    font-weight: bold;
    font-size: 15px;
}

.ig-content .panel-heading h5 {
    font-weight: bold;
    font-size: 13px;
}

.ig-adopt-accordion .panel-heading .accordion-toggle:after {
    font-family: var(--ig-glyphfont);
    content: "\e114";
    float: right;
    color: var(--ig-blue);
    position: absolute;
    right: 30px;
    margin-top: 4px;
}

.ig-adopt-accordion .panel-heading .accordion-toggle.collapsed:after {
    content: "\e080";
}

/*Tabs*/
.ig-panel-blue .tab-content {
    margin: 0 -15px -10px -15px;
    padding: 15px;
    background: var(--ig-white);
}

.ig-panel-blue .modal-body .tab-content {
    margin: -1px 0 0 0;
}

.ig-tabs .tab-content {
    background: #f0fcf0;
    padding: 15px;
    border: solid 1px #ddd;
    margin-top: -1px;
    margin-bottom: 30px;
}

.ig-tabs .panel-default > .panel-heading + .panel-collapse > .panel-body.ig-panel-blue {
    background: var(--ig-white);
}

.ig-link-tabs.ig-tabs .tab-content {
    margin-bottom: 10px;
}

span.ig-axis-tab {
    font-size: var(--ig-sm-fsize);
    font-weight: bold;
    display: table;
}

.ig-appreciation-tabs li a {
    height: 100px;
}

.ig-appreciation-tabs li {
    max-width: 17.5%;
}

p.ig-bookapreciation-subtitle {
    font-size: var(--ig-sm-fsize);
    margin-bottom: 5px;
}

p.ig-bookapreciation-text, ul.ig-bookapreciation-text {
    white-space: normal;
    font-size: var(--ig-sm-fsize);
    margin: 0;
}

.ig-bookstats-cont label.control-label {
    margin-bottom: 5px;
}

.ig-books-list .ig-bookstats-read p {
    font-size: var(--ig-md-fsize);
}

.ig-adoptedbook span {
    color: var(--ig-blue);
    white-space: nowrap;
}

.nav-tabs span.label.ig-cycle01, .nav-tabs span.label.ig-cycle02, .nav-tabs span.label.ig-cycle03, .nav-tabs span.label.ig-cycle-se, .nav-tabs span.label.ig-cycle-co {
    font-size: var(--ig-md-fsize);
    margin: 5px 0;
    display: block;
}

/*Grids*/
.ig-grid .k-grouping-header {
    background: var(--ig-blue);
}

.ig-grid .k-grid tr.k-state-selected, .ig-grid .k-grid td.k-state-selected:hover, .ig-grid .k-grid tr.k-state-selected:hover td {
    background: var(--ig-tr-green);
}

.ig-alert-row {
    background: var(--ig-red-2);
}

.ig-grid.ig-grid-1l.ig-horizontal-grid .k-grid tr:hover td.ig-obscol {
    background: #ebebeb;
}

.ig-warning-row {
    background: #fad875;
}

.k-grid tfoot tr:hover {
    background: #fafafa;
}

.k-grid tr.ig-warning-row:hover {
    background: rgba(250, 216, 117,0.8);
}

.k-grid tr.ig-alert-row:hover {
    background: rgba(223, 71, 77, 0.8);
}

.ig-warning-row td.ig-studentname-classgrid > a:hover span {
    border-bottom: solid 1px var(--ig-darker-grey);
}

td.ig-studentname-classgrid > a:hover span {
    border-bottom: var(--ig-green-border);
}

.ig-alert-row td.ig-studentname-classgrid > a:hover span {
    border-bottom: solid 1px var(--ig-white);
}

tr.ig-headerline2 > th.k-header:first-child {
    border-left: solid 1px #e6e6e6;
}

.ig-grid .k-grid tr.k-state-selected > td, .ig-grid .k-grid td.k-state-selected {
    border-color: var(--ig-green);
}

.ig-grid.ig-grid-1l .k-grid td, .ig-grid.ig-progndocgrid .k-grid td {
    border-width: 0 0 1px 0;
}

.ig-grid .k-grid-header .k-i-sort-asc-sm, .ig-grid .k-grid-header .k-i-sort-desc-sm, .ig-grid .k-grid-header .k-sort-order {
    color: var(--ig-blue);
}

.ig-grid a.btn-default, .ig-warning-row a.ig-grid-student {
    color: var(--ig-darker-grey);
}

.ig-footlabel {
    color: var(--ig-green);
}
.ig-grid a {
    color: var(--ig-blue);
}
.ig-alert-row, .ig-alert-row a.ig-grid-student {
    color: var(--ig-white);
}

.k-edit-form-container .k-primary, .k-list > .k-state-selected.k-state-focused, .k-popup .k-primary {
    color: var(--ig-green) !important;
}

.ig-grid a {
    cursor: pointer;
}

tfoot {
    font-weight: bold;
}

.ig-grid input.form-control, .ig-grid select.form-control {
    height: 26px;
}

.ig-grid .input-group input.form-control {
    height: 33px;
}

.ig-returnbook-grid thead tr:last-child {
    height: 195px;
}

.ig-grid label.control-label {
    line-height: normal;
}

.ig-panel .ig-grid {
    margin-bottom: 0;
}

.ig-grid {
    margin-bottom: 20px;
}

    .ig-grid a.btn.ig-gridinfo-btn, .ig-grid button.btn.ig-gridinfo-btn, .ig-grid a.btn.ig-btn-m0 {
        margin-left: 0;
    }

.ig-grid-1l .k-grid-content {
    overflow-y: hidden;
}

.ig-grid .k-grid td, .ig-grid .k-grid-header th.k-header, .k-filter-row th {
    padding: 8px;
}

    .ig-grid .k-grid td.ig-noresults {
        padding: 30px;
    }

.ig-budgetpropgrid .input-group-addon {
    padding: 6px 8px;
}

.ig-row-noresults {
    padding: 30px 0;
}

.ig-contractcode-cell {
    padding-right: 15px;
}

.ig-grid .k-radio-label {
    padding-left: 18px;
}

.ig-grid-1l .k-grid-header {
    padding-right: 0 !important;
}

.ig-grid.ig-grid-1l.ig-grid-weekhours .k-grid table, .ig-grid.ig-grid-1l.ig-shrinkable-table .k-grid table {
    table-layout: auto;
}

.ig-grid.ig-grid-1l .k-grid table {
    table-layout: fixed;
}

.k-grid-header th.k-header.text-right {
    text-align: right;
}

td.ig-studentname-classgrid > a:hover {
    text-decoration: none;
}

td.ig-studentname-grid {
    text-transform: lowercase;
}

    td.ig-studentname-grid::first-line {
        text-transform: capitalize;
    }

td.ig-studentname-classgrid > a span::first-line {
    text-transform: capitalize !important;
}

.ig-grid .k-filter-row th, .ig-grid .k-grid-header th.k-header {
    white-space: normal;
}

.ig-tdnowrap {
    white-space: nowrap;
}

.ig-alert-row span.badge.ig-stlabel-rep, .ig-alert-row .ig-bookcheck-err {
    background: var(--ig-white);
    color: #ed4e11;
}

tr:hover span.ig-react-axislabel {
    background: var(--ig-white);
    transition: var(--ig-transition-sh);
}

.ig-grid.ig-grid-1l.ig-horizontal-grid .k-grid td.ig-obscol {
    background: var(--ig-white);
    z-index: 1;
}

.ig-grid .k-grouping-header .k-group-indicator, .k-pivot-toolbar .k-button {
    background-color: #475f7c;
    border-color: #475f7c;
}

.ig-grid .k-pager-numbers .k-state-selected {
    border-color: var(--ig-green) transparent transparent;
    color: var(--ig-green);
}

.ig-grid.ig-budgetpropgrid .k-grid td {
    border-width: 0 0 1px 0;
    overflow-wrap: anywhere;
}

.ig-warning-row a.label.ig-stlabel-alert, .ig-warning-row span.label.ig-stlabel-alert {
    color: var(--ig-orange);
    text-transform: initial;
}

td.ig-studentname-classgrid > a {
    cursor: pointer;
    margin-right: 10px;
}

span.ig-subject-vertheader span {
    display: block;
    width: 120px;
}

tr.ig-class-header {
    height: 155px;
    vertical-align: bottom;
}

.ig-grid.ig-grid-1l.ig-horizontal-grid th.k-header.ig-funcname, .ig-grid.ig-grid-1l.ig-horizontal-grid .k-grid td.ig-obscol {
    left: 0;
    position: sticky;
}

.ig-grid.ig-grid-1l.ig-horizontal-grid th.k-header.ig-funcname {
    width: 230px;
    z-index: 3;
}

.ig-grid .k-grid-header .k-header, .ig-grid .k-grid-header .k-header a.k-link {
    color: var(--ig-green);
    font-size: var(--ig-sm-fsize);
    font-weight: bold;
}

th label.ig-check-label.k-checkbox-label {
    color: var(--ig-green);
    line-height: 15px;
    margin: 0 0 -1px 0;
}

.ig-grid th.k-header .k-checkbox-label:before {
    margin-top: -3px;
}

.ig-horizontal-grid .k-grid.k-widget.k-display-block.k-editable {
    height: calc(100vh - 100px);
    overflow-y: scroll;
    width: 100%;
}

.ig-grid.ig-grid-1l .k-grid td, span.ig-subject-vertheader span {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.ig-horizontal-grid tr.k-grid-header {
    position: sticky;
    top: 0;
    z-index: 2;
}

.ig-grid.ig-budgetpropgrid input[type="number"], .ig-grid.ig-budgetpropgrid input[type="text"] {
    box-sizing: border-box;
    height: 32px;
    padding: 0 5px;
    text-align: right;
}

.ig-grid .k-widget textarea {
    box-sizing: border-box;
    height: 75px;
    padding: 8px 10px;
    resize: none;
}

.ig-grid a.btn.ig-btn-round, .ig-grid button.btn.ig-btn-round {
    font-size: var(--ig-md-fsize);
    height: 28px;
    line-height: 28px;
    width: 28px;
}

.ig-subject-vertheader {
    display: inline-block;
    padding: 0 8px;
    transform: rotate(-90deg);
    white-space: nowrap;
    width: 2px;
}

td.ig-studentname-classgrid > a span {
    display: inline-block;
    line-height: 11px;
    padding-right: 0;
    position: relative;
    text-transform: lowercase !important;
}

.ig-grid.ig-budgetpropgrid .ig-updated-field .form-control, .ig-grid.ig-budgetpropgrid .ig-notupdated-field .form-control {
    padding: 0;
    text-align: left;
}
/*Tamanhos de colunas*/
th.ig-col-shrink {
    width: 1%;
}

th.k-header.ig-subject-column {
    width: 20px;
}

th.k-header.ig-grid-infobutton, .ig-bldespcol {
    width: 30px;
}



th.k-header.ig-snccol, th.k-header.ig-bookstate, th.k-header.ig-coledit, th.k-header.ig-colreact-edit, th.k-header.ig-fofi-col, th.ig-funcol-regimen {
    width: 45px;
}

th.ig-modal-desinh,  th.k-header.ig-voucher-column, .ig-header50, th.ig-funcol-activity {
    width: 55px;
}

th.k-header.ig-classdetail, th.k-header.ig-elementscol, .k-header.ig-header-scyear, th.k-header.ig-header60 {
    width: 60px;
}

th.k-header.ig-colreact-detail, .k-header.ig-header-class, th.k-header.ig-header65 {
    width: 65px;
}

th.k-header.ig-freqheader-sm, th.k-header.ig-grid-bookprice, th.k-header.ig-schoolyear-grid  {
    width: 70px;
}

 th.k-header.ig-header75 {
    width: 75px;
}

th.k-header.ig-nifee-column, th.k-header.ig-reumodalgrid-smcol, .ig-nif-column, th.k-header.ig-emdate, th.ig-header80 {
    width: 80px;
}

th.k-header.ig-header70, th.ig-header85 {
    width: 85px;
}

th.k-header.ig-exportsgrid {
    width: 90px;
}

th.k-header.ig-freqheader-date {
    width: 95px;
}

th.k-header.ig-opartcol, th.ig-funcol-career, th.ig-modal-desinh-state, th.k-header.ig-appreciation-state, th.k-header.ig-digitalbookscol, th.k-header.ig-errorsmcol, th.k-header.ig-studentestimate, th.k-header.ig-header100 {
    width: 100px;
}

th.k-header.ig-propcol {
    width: 115px;
}

th.k-header.ig-colreact-axis, th.k-header.ig-colreact-month, th.k-header.ig-colreact-rhgen, th.k-header.ig-header120 {
    width: 120px;
}

th.k-header.ig-reumodalgrid-isbn {
    width: 125px;
}

th.k-header.ig-header130 {
    width: 130px;
}
th.k-header.ig-header-isbn{
    width:135px;
}

th.k-header.ig-studentdoc, .ig-budgetpropgrid th.k-header.ig-obscol, th.ig-header150 {
    width: 150px;
}

th.ig-funcol-endreason {
    width: 160px;
}

th.k-header.ig-header200 {
    width: 200px;
}

th.k-header.ig-colreqs-value, th.k-header.ig-header210 {
    width: 210px;
}

th.k-header.ig-header270 {
    width: 270px;
}

th.ig-schoolname-col {
    width: 300px;
}

th.k-header.ig-plurianual-value {
    width: 130px;
    table-layout: fixed;
}

td.ig-funcol-bond, th.ig-funcol-bond {
    width: 215px;
    white-space: normal !important;
}

th.k-header.ig-obscol, .ig-grid.ig-grid-1l .k-grid td.ig-obscol {
    width: 230px;
    white-space: normal;
}

th.ig-funcol-category, td.ig-funcol-category {
    width: 275px;
    white-space: normal !important;
}

/*Modals*/
.ig-modal .modal-header {
    background: var(--ig-blue);
    border-radius: 4px 4px 0 0;
    color: var(--ig-white);
}

.ig-modal .close {
    color: var(--ig-white);
    text-shadow: 0 1px 0 #000;
    opacity: 0.4;
}

    .ig-modal .close:hover {
        opacity: 0.8;
    }

.ig-books-list .ig-subject-book-modal {
    height: calc(100vh - 220px);
}

.modal-footer a.ig-sec-link {
    float: left;
    margin: 10px 0 0 0;
}

.ig-modal .alert {
    padding: 10px 15px;
    margin-bottom: 0;
    font-size: var(--ig-sm-fsize);
}

.modal-header.ig-modal-header-error {
    background: var(--ig-red-grad);
    border-radius: 5px 5px 0 0;
}

.ig-modal-error, .ig-modal-loader {
    z-index: 1500;
    background: rgba(0,0,0,0.7);
}

.modal-header.ig-modal-header-success {
    background: var(--ig-green-grad);
    border-radius: 5px 5px 0 0;
}

.ig-modal-loader {
    pointer-events: none;
}

    .ig-modal-loader h3 {
        color: var(--ig-blue);
        margin-top: 40px;
        text-align: center;
    }

    .ig-modal-loader .modal-content {
        background: var(--ig-white);
        margin-top: calc(50vh - 150px);
        position: relative;
        border-radius: 3px;
        border: none;
    }

.modal-body.ig-modal-scroll {
    max-height: calc(100vh - 190px);
    overflow-y: auto;
}

.ig-modalbook-adopt-cont {
    max-height: 300px;
    overflow-y: auto;
}

body:not(.modal-open):not(.modal-open2) {
    padding-right: 0px !important;
}

body.modal-open2 {
    overflow: hidden;
}

/*Loader*/
.sk-fading-circle {
    margin: 30px auto;
    width: 100px;
    height: 100px;
    position: relative;
}

    .sk-fading-circle .sk-circle {
        width: 100%;
        height: 100%;
        position: absolute;
        left: 0;
        top: 0;
    }

        .sk-fading-circle .sk-circle:before {
            content: '';
            display: block;
            margin: 0 auto;
            width: 15%;
            height: 15%;
            background-color: var(--ig-green);
            border-radius: 100%;
            animation: sk-circleFadeDelay 1.2s infinite ease-in-out both;
        }

    .sk-fading-circle .sk-circle2 {
        transform: rotate(30deg);
    }

    .sk-fading-circle .sk-circle3 {
        transform: rotate(60deg);
    }

    .sk-fading-circle .sk-circle4 {
        transform: rotate(90deg);
    }

    .sk-fading-circle .sk-circle5 {
        transform: rotate(120deg);
    }

    .sk-fading-circle .sk-circle6 {
        transform: rotate(150deg);
    }

    .sk-fading-circle .sk-circle7 {
        transform: rotate(180deg);
    }

    .sk-fading-circle .sk-circle8 {
        transform: rotate(210deg);
    }

    .sk-fading-circle .sk-circle9 {
        transform: rotate(240deg);
    }

    .sk-fading-circle .sk-circle10 {
        transform: rotate(270deg);
    }

    .sk-fading-circle .sk-circle11 {
        transform: rotate(300deg);
    }

    .sk-fading-circle .sk-circle12 {
        transform: rotate(330deg);
    }

    .sk-fading-circle .sk-circle2:before {
        animation-delay: -1.1s;
    }

    .sk-fading-circle .sk-circle3:before {
        animation-delay: -1s;
    }

    .sk-fading-circle .sk-circle4:before {
        animation-delay: -0.9s;
    }

    .sk-fading-circle .sk-circle5:before {
        animation-delay: -0.8s;
    }

    .sk-fading-circle .sk-circle6:before {
        animation-delay: -0.7s;
    }

    .sk-fading-circle .sk-circle7:before {
        animation-delay: -0.6s;
    }

    .sk-fading-circle .sk-circle8:before {
        animation-delay: -0.5s;
    }

    .sk-fading-circle .sk-circle9:before {
        animation-delay: -0.4s;
    }

    .sk-fading-circle .sk-circle10:before {
        animation-delay: -0.3s;
    }

    .sk-fading-circle .sk-circle11:before {
        animation-delay: -0.2s;
    }

    .sk-fading-circle .sk-circle12:before {
        animation-delay: -0.1s;
    }

@keyframes sk-circleFadeDelay {
    0%, 39%, 100% {
        opacity: 0;
    }

    40% {
        opacity: 1;
    }
}
/*Paginação*/
.pagination > li > a, .pagination > li > span {
    color: var(--ig-blue);
    cursor: pointer;
}

.pagination > .active > a, .pagination > .active > a:focus, .pagination > .active > a:hover, .pagination > .active > span, .pagination > .active > span:focus, .pagination > .active > span:hover {
    background: var(--ig-blue);
    border-color: var(--ig-blue);
}

p.ig-pageresults {
    padding-top: 29px;
    font-size: var(--ig-sm-fsize);
    margin-bottom: 0;
}

.ig-pagination .disabled a {
    pointer-events: none;
}
/*Lista Papelarias*/
.ig-map-container {
    height: calc(100vh - 200px);
    margin: 15px -15px -10px -15px;
}

    .ig-map-container .leaflet-popup-content p {
        margin-top: 0;
        margin-bottom: 3px;
        font-family: var(--ig-txtfont);
    }

    .ig-map-container .leaflet-popup-content h3 {
        color: var(--ig-blue);
    }

.ig-map-list {
    height: calc(100vh - 210px);
    border: solid 1px #ddd;
    margin-top: 15px;
}

    .ig-map-list .list-group-item {
        border-left: none;
        border-right: none;
    }

        .ig-map-list .list-group-item:first-child {
            border-radius: 0;
            border-top: none;
        }

        .ig-map-list .list-group-item:last-child {
            border-radius: 0;
        }

    .ig-map-list .ss-scroll {
        opacity: 0;
    }

/*Utilizadores*/
.ig-userpermissions-cont {
    padding-top: 10px;
    margin-top: 5px;
    border-top: var(--ig-lgray-border);
}

    .ig-userpermissions-cont h5 {
        margin-bottom: 15px;
    }

.ig-user-box label.ig-check-label {
    font-size: var(--ig-md-fsize);
}

.ig-user-box.ig-panel .panel-body {
    padding-bottom: 0;
}

.ig-docs-results ul.pagination {
    margin: 0;
}

/*FAQs*/
span.ig-faq-number {
    background: var(--ig-green);
    color: var(--ig-white);
    width: 24px;
    height: 24px;
    display: inline-block;
    text-align: center;
    margin: 0 10px 0 -34px;
    text-decoration: none;
    line-height: 24px;
    border-radius: 24px;
}

.ig-faqs-cont h4.panel-title {
    padding-left: 34px;
}

p.ig-dsr-cont {
    margin-bottom: 5px;
}

.ig-dsr-cont {
    overflow-x: hidden;
    text-overflow: ellipsis;
}

.ig-faq-sidebar {
    margin-top: 40px;
}

.ig-faqs-cont iframe {
    width: 100%;
    aspect-ratio: 16 / 9;
}

/*Formulários*/
input.form-control, select.form-control, textarea.form-control {
    padding: 0.17857143em 0;
    background-color: var(--ig-white);
    color: #444444;
    border-color: #e1e1e1;
    box-shadow: none;
    border-radius: 0;
}

textarea.form-control {
    padding: 10px 15px;
}

input.form-control, select.form-control {
    height: 38px;
    text-indent: 0.8em;
    line-height: 2.21428571em;
}

.form-inline input.form-control, .form-inline select.form-control {
    text-indent: 0;
    padding-left: 8px;
    padding-right: 8px;
    margin-right: 15px;
}

input.form-control:hover, select.form-control:hover, textarea.form-control:hover, input.form-control:focus, select.form-control:focus, textarea.form-control:focus {
    background-color: var(--ig-white);
    border-color: var(--ig-input-bcolor);
    box-shadow: var(--ig-box-shadow-input);
}

input.form-control:focus, select.form-control:focus, textarea.form-control:focus {
    background-image: none;
    background-position: 50% 50%;
}

.form-group .k-textbox {
    display: block;
    width: 100%;
}

.input-group-addon {
    border: solid 1px #f0f0f0;
    border-radius: 0;
    background: #f5f5f5;
}

    .input-group-addon a {
        color: var(--ig-blue);
    }

        .input-group-addon a:hover {
            opacity: 0.8;
        }

.ig-cp4cont {
    width: calc(100% - 150px);
}

.ig-codpostal-input .ig-cp3cont {
    width: 120px;
}

.ig-codpostal-input * {
    float: left;
}

.ig-codpostal-input .input-group-addon {
    padding: 11px 14px;
}

.control-label.ig-labelalign-2l {
    margin-top: 17px
}

.form-group .k-dropdown, .form-group .k-combobox, .form-group span.k-widget.k-datepicker.k-header {
    width: 100%;
}

    .form-group .k-dropdown, .form-group .k-dropdown .k-state-default {
        border-color: #f0f0f0;
        background: #fff;
    }

.form-group p {
    margin-bottom: 0;
}

.form-group textarea {
    max-width: 100%;
    width: 100%;
    min-width: 100%;
}

input[type="date"].form-control {
    text-indent: 6px;
}

.ig-input-textres {
    display: inline-block;
    padding: 0;
    border: 0;
    outline: 0;
    font-family: var(--ig-titlefont);
    font-size: var(--ig-lg-fsize);
    line-height: 1.1;
    font-weight:bold;
    color:var(--ig-blue);
}

input[type="number"].ig-studentestimate-field {
    -moz-appearance: textfield;
}

.ig-studentestimate-field::-webkit-outer-spin-button, .ig-studentestimate-field::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.ig-task-textarea textarea.form-control {
    min-width: auto;
    max-width: calc(100% - 52px);
    display: inline-block;
}

/*Kendo - Calendário*/
.k-calendar td {
    border-color: transparent !important;
    box-shadow: none !important;
    text-align: center !important;
}

.k-calendar .k-header {
    background: var(--ig-blue) !important;
}

.k-calendar .k-month .k-today {
    background: var(--ig-white) !important;
    border: none;
    box-shadow: none;
}

    .k-calendar .k-month .k-today a {
        background-color: var(--ig-blue) !important;
    }

    .k-calendar .k-month .k-state-selected, .k-calendar .k-month .k-today.k-state-selected, .k-calendar .k-month .k-state-hover {
        background-color: var(--ig-white) !important;
    }

        .k-calendar .k-month .k-state-hover a {
            background-color: var(--ig-light-grey);
        }

        .k-calendar .k-month .k-state-selected a, .k-calendar .k-month .k-today.k-state-selected a {
            background-color: var(--ig-green) !important;
        }

.k-calendar .k-content .k-link {
    min-height: 2em !important;
    line-height: 2em !important;
    width: 2em;
    display: inline-block !important;
    border-radius: 50%;
}

.k-calendar .k-content th {
    text-align: center !important;
    padding-right: 0 !important;
}

.k-calendar tr {
    line-height: 1em;
}

.k-calendar .k-header .k-link.k-nav-prev, .k-calendar .k-header .k-link.k-nav-next, .k-calendar .k-header .k-link.k-nav-fast {
    height: 2.5em !important;
    line-height: 2.5em !important;
}

.k-calendar .k-header .k-link.k-nav-prev, .k-calendar .k-header .k-link.k-nav-next {
    width: 2.5em !important;
}

.k-filter-menu .k-widget.k-calendar {
    margin-top: -1px !important;
}

.k-calendar .k-header .k-state-hover {
    background-color: #475f7c !important;
}

.k-calendar .k-footer .k-nav-today {
    color: var(--ig-blue) !important;
}

.ig-updated-field, .ig-notupdated-field {
    position: relative;
}

    .ig-updated-field .form-control, .ig-updated-field .form-control:hover, .ig-updated-field .form-control:focus {
        border: solid 1px var(--ig-green);
    }

    .ig-notupdated-field .form-control, .ig-notupdated-field .form-control:hover, .ig-notupdated-field .form-control:focus {
        border: solid 1px var(--ig-orange);
    }

    .ig-updated-field::after, .ig-notupdated-field::after {
        font-family: 'Font Awesome 5 Free';
        font-weight: 900;
        right: 10px;
        top: 6px;
        position: absolute;
    }

    .ig-updated-field::after {
        content: "\f00c";
        color: var(--ig-green);
    }

    .ig-notupdated-field::after {
        content: "\f071";
        color: var(--ig-orange);
        z-index: 100;
    }

/*Checkboxes*/
.ig-check.k-checkbox:checked + .ig-check-label.k-checkbox-label:before, .ig-check.k-checkbox:checked:hover + .ig-check-label.k-checkbox-label:before, .ig-check.k-checkbox:checked + .ig-check-label.k-checkbox-label:hover:before, .ig-radio.k-radio:checked + .ig-radio-label.k-radio-label:before, .ig-radio.k-radio:checked + .ig-radio-label.k-radio-label:hover:before {
    border-color: var(--ig-green);
}

.ig-check.k-checkbox:checked + .ig-check-label.k-checkbox-label:before {
    background-color: var(--ig-green);
    border-color: var(--ig-green);
    font-size: 11px;
}

label.ig-check-label.k-checkbox-label {
    color: var(--ig-blue);
}

.ig-check.k-checkbox:checked:focus + .ig-check-label.k-checkbox-label:after, .ig-check.k-checkbox:checked + .ig-check-label.k-checkbox-label:focus:after, .ig-check.k-checkbox:checked:active + .ig-check-label.k-checkbox-label:after, .ig-check.k-checkbox:checked + .ig-check-label.k-checkbox-label:active:after {
    box-shadow: 0 0 0 12px rgba(0, 114, 54, 0.2);
    background: rgba(0, 114, 54, 0.2);
}

.ig-check.k-checkbox:disabled + .k-checkbox-label {
    cursor: not-allowed;
    opacity: 0.6;
}

.ig-radio-label.k-radio-label:before {
    width: 18px;
    height: 18px;
}

.ig-grid .ig-radio-label.k-radio-label:before {
    width: 14px;
    height: 14px;
}

.ig-radio.k-radio:checked + .ig-radio-label.k-radio-label:after {
    background-color: var(--ig-green);
}

.ig-hor-checks {
    display: flex;
    height: 36px;
    align-items: center;
}

    .ig-hor-checks label.ig-check-label.k-checkbox-label, .ig-hor-checks .k-radio-label.ig-radio-label {
        margin: 0 15px 0 0;
    }

.checkbox label.k-checkbox-label.ig-check-label:before, .checkbox label.k-checkbox-label.ig-check-label:after {
    top: 3px;
}

/*Resultados vazios*/
.ig-noresults, .ig-noresults-server-error {
    font-family: var(--ig-txtfont);
    font-size: var(--ig-sm-fsize);
    margin-top: 5px;
    color: rgba(0, 0, 0, 0.68);
    font-weight: bold;
    text-align: center;
}

.ig-noresults {
    color: rgba(0, 0, 0, 0.68);
}

.ig-noresults-server-error {
    color: #e61833;
}

    .ig-noresults i, .ig-noresults-server-error i {
        font-size: var(--ig-xl-fsize);
        padding-bottom: 10px;
    }

.ig-noresults.ig-nr-outpanel {
    padding-top: 15px;
    color: #6b7887;
}

.ig-modalmodule-nr .ig-noresults {
    padding: 50px 0;
}
/*MEGA - Turmas*/
a[class*="ig-bookcheck"] {
    cursor: pointer;
}

a[class*="ig-bookcheck"], span[class*="ig-bookcheck"] {
    width: 18px;
    height: 18px;
    display: inline-block;
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    color: var(--ig-white);
    line-height: 18px;
    font-size: 11px;
    text-align: center;
    text-decoration: none;
    vertical-align: middle;
}

span[class*="ig-bookcheck"] {
    margin-right: 5px;
}

.ig-bookcheck-new {
    background: var(--ig-green);
}

    .ig-bookcheck-new:before {
        content: "\f00c";
    }

.ig-bookcheck-reu {
    background: #99E01B;
}

    .ig-bookcheck-reu:before {
        content: "R";
        font-family: var(--ig-txtfont);
    }

.ig-bookcheck-inh {
    background: #F7BB12;
}

    .ig-bookcheck-inh:before {
        content: "I";
        font-family: var(--ig-txtfont);
    }

.ig-bookcheck-err {
    background: #ED4E11;
}

    .ig-bookcheck-err:before {
        content: "\f05e";
    }

.ig-bookcheck-emp {
    border: var(--ig-lgray-border);
    background: var(--ig-white);
}

/*Página detalhe Aluno (MEGA)*/
.ig-student-badges {
    margin-bottom: 10px;
}

.form-inline .form-control.ig-schoolyear-ddl {
    width: 100px;
}

.ig-justification-detail p {
    font-size: var(--ig-sm-fsize);
    margin: 0;
}

    .ig-justification-detail p a {
        margin-left: 5px;
    }
/*Exportação Alunos (MEGA)*/
.ig-errorlist p, .ig-alertlist p {
    font-size: var(--ig-sm-fsize);
    margin-bottom: 0;
}

.ig-errorlist .ig-panel, .ig-alertlist .ig-panel {
    margin-bottom: 10px;
}

.ig-statistics-panel h4.ig-alert-title {
    color: var(--ig-orange);
}

.ig-statistics-panel h4.ig-noalert-title {
    color: var(--ig-green);
}

.ig-statistics-panel h4.ig-stateexp-title {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    display: block;
    margin-bottom: 15px;
}

/*Distribuição de verbas*/
th.k-header.ig-classeco {
    width: 100px;
}

td.ig-classeco label, td.ig-multidata label.control-label {
    margin-bottom: 0px;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 12px;
}

td.ig-classeco p, td.ig-multidata p {
    margin-bottom: 3px;
}

    td.ig-multidata p:last-child {
        margin-bottom: 0;
    }

.ig-data-detail {
    font-size: var(--ig-sm-fsize);
    line-height: var(--ig-lg-fsize);
    white-space: normal;
}
.ig-data-detail {
    font-size: var(--ig-sm-fsize);
    line-height: var(--ig-lg-fsize);
    white-space: normal;
}

/*REACT*/
.ig-react-userdata a.ig-sec-link {
    margin: 0 0 5px 0;
}

.ig-react-auditdocs a.ig-sec-link {
    margin-top: 5px;
    cursor: pointer;
}

p.ig-form-p {
    margin-top: 10px;
}

.ig-react-cicledata label.control-label, .ig-react-auditdocs label.control-label, .ig-labels2l label.control-label {
    display: flex;
    align-items: flex-end;
    min-height: 33px;
}

/*Uploads de documentos*/
p.ig-file-upload-name {
    margin: 5px 0 0 0;
    max-height: 60px;
    overflow: hidden;
    word-break: break-all;
}

.ig-fileupload-container {
    height: 90px;
}

.ig-upload-btn {
    display: block;
}

.ig-react-cicledata .ig-cycles-container {
    padding-top: 10px;
}
/*Tooltips*/
.tooltip.top .tooltip-arrow {
    bottom: 1px;
}

/*SIME - Adoção manuais*/
span.badge.ig-bookbadge {
    color: var(--ig-white);
    background: var(--ig-blue);
    margin: -2px 3px 0 0;
    display: inline-block;
}

.ig-adopt-accordion .row {
    display: flex;
    flex-flow: row wrap;
}

.ig-adopt-accordion a.ig-booklink {
    height: 100%;
    display: grid;
    cursor: pointer;
}

.ig-adopt-accordion .ig-booklink .panel-body {
    min-height: auto;
    height: 100%;
}

.ig-adopt-accordion a.ig-booklink h4 {
    white-space: normal;
}

ol.ig-bookappreciation-description {
    padding-left: 25px;
    font-size: var(--ig-sm-fsize);
    line-height: 18px;
}

    ol.ig-bookappreciation-description li {
        display: block;
        white-space: normal;
    }

.ig-bookappreciation-description span {
    margin-left: -25px;
    margin-right: 5px;
}

.ig-bookappreciation-description ul {
    padding-left: 30px;
}

.ig-adoptedbook {
    margin-bottom: 15px;
}

    .ig-adoptedbook:last-child {
        margin-bottom: 0;
    }

.ig-yeardiv .ig-panel {
    margin-bottom: 0;
}

.ig-adopt-accordion .ig-panel-blue > .ig-panel.panel.panel-default {
    margin-bottom: 10px;
}

/*Página erro (está a ser usado??)*/
.ig-errorpage-panel {
    margin-top: 5vh;
}

    .ig-errorpage-panel h2 {
        color: var(--ig-red);
    }

    .ig-errorpage-panel i {
        font-size: 80px;
        margin: 15px;
        color: var(--ig-red);
    }

    .ig-errorpage-panel a {
        margin-top: 10px;
    }

.ig-align-p-btn {
    margin-bottom: 0;
    padding-top: 10px
}

/*MEDIA-QUERIES!*/
@media(min-width:1850px) {
    .ig-student-column {
        width: 800px;
    }
}

@media(max-width:1399px) {
    .ig-desccol {
        width: 130px;
    }
}

@media(max-width:1299px) {
    .ig-subject-book-details {
        margin-top: 0;
    }
}

@media(max-width:1199px) {
    footer.ig-footer .ig-logo-left, footer.ig-footer .ig-logo-right {
        text-align: center;
    }
}

@media(max-width:991px) {
    .ig-classkey-container p {
        float: left;
        width: 100%;
    }

        .ig-classkey-container p > span {
            margin-bottom: 0;
        }

    .ig-map-container {
        height: calc(100vh - 100px);
        margin-bottom: 15px;
    }

    .ig-map-list {
        height: auto;
        overflow: auto;
    }

    .ig-statistics-panel .row [class*="col-"] {
        border-right: none;
        margin-bottom: 15px;
    }

    label.ig-check-label.k-checkbox-label span {
        font-weight: bold;
        line-height: 22px;
    }

    .ig-subject .checkbox, .ig-docs-list .ig-scval-details {
        text-align: left;
    }

    #page-content-wrapper {
        padding-bottom: 0;
    }

    .ig-dsr-contact {
        margin-top: 0;
    }

    .ig-faqs-cont iframe {
        height: 250px;
    }

    .ig-adopt-accordion .col-md-4 {
        width: 100%;
    }
}

@media(min-width:768px) {
    .ig-navbar .navbar-right {
        margin-right: 0;
    }

    .ig-data-overflow {
        overflow: hidden;
        white-space: nowrap;
        text-overflow: ellipsis;
        margin-bottom: 0;
    }
    /*Sidebar*/
    #wrapper {
        padding-left: 200px;
    }

        #wrapper.toggled {
            padding-left: 0;
        }

    #sidebar-wrapper {
        width: 200px;
    }

    #wrapper.toggled #sidebar-wrapper {
        width: 0;
    }

    #page-content-wrapper {
        padding: 20px;
        position: relative;
    }

    #wrapper.toggled #page-content-wrapper {
        position: relative;
        margin-right: 0;
    }
}

@media(max-width:767px) {
    a.ig-school-name span, h3.ig-school-name span {
        float: none;
        display: block;
        margin-bottom: 5px;
        width: 70px;
        text-align: center;
        font-weight: bold;
    }

    ul.nav.navbar-nav.navbar-right {
        float: right;
        margin: 0;
    }

    .navbar-header {
        float: left;
    }

    ul.nav.navbar-nav {
        margin: 0;
    }

    li.ig-toggle-button {
        margin-left: 5px;
    }

    .nav > li {
        display: inline-block;
        vertical-align: top;
    }

        .nav > li > a {
            display: inline-block;
            vertical-align: middle;
            padding: 15px 10px
        }

    a.navbar-brand, ul.nav.navbar-nav {
        display: inline-block;
    }

    p.ig-student-data, p.ig-user-data {
        margin-bottom: 0;
    }

        p.ig-student-data span, p.ig-user-data span {
            display: block;
            margin-bottom: 5px;
        }
}

@media(max-width:499px) {
    .ig-content, #sidebar-wrapper {
        margin-top: 54px;
    }

    ul.nav.navbar-nav.navbar-right {
        width: 100%;
        padding-left: 15px;
    }

    .ig-plcheck-cont {
        width: 100%;
        margin-bottom: 10px;
    }
}

/*COL-MD-15*/
.col-xs-15,
.col-sm-15,
.col-md-15,
.col-lg-15 {
    position: relative;
    min-height: 1px;
    padding-right: 15px;
    padding-left: 15px;
}

.col-xs-15 {
    width: 20%;
    float: left;
}

@media (min-width: 768px) {
    .col-sm-15 {
        width: 20%;
        float: left;
    }
}

@media (min-width: 992px) {
    .col-md-15 {
        width: 20%;
        float: left;
    }
}

@media (min-width: 1200px) {
    .col-lg-15 {
        width: 20%;
        float: left;
    }
}