/* Variables */
/* Shadow levels */
/* SCSS */
@-webkit-keyframes spin {
  from {
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg); }
  to {
    -webkit-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg); } }
@-moz-keyframes spin {
  from {
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg); }
  to {
    -webkit-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg); } }
@-ms-keyframes spin {
  from {
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg); }
  to {
    -webkit-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg); } }
@keyframes spin {
  from {
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg); }
  to {
    -webkit-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg); } }
* {
  box-sizing: border-box; }

html {
  height: 100%; }

body {
  margin: 0;
  width: 100%;
  height: 100%;
  display: flex;
  background: linear-gradient(45deg, #e2ecfc, #cbddfa);
  background-repeat: no-repeat;
  background-attachment: fixed; }

h1, h2, h3, h4 {
  font-family: "Montserrat", sans-serif;
  margin: 16px 0 0 0;
  text-align: left; }

h1 {
  font-size: 32pt;
  text-transform: uppercase;
  color: #1275BB; }

h2 {
  font-size: 24pt;
  color: #009DDD;
  margin: 32px 0 16px 0;
  font-weight: 400; }

h3 {
  font-size: 18pt;
  color: #009DDD;
  margin: 40px 0 24px 0;
  font-weight: 400; }

h4 {
  font-size: 14pt;
  color: #009DDD;
  margin: 0 0 24px 0;
  font-weight: 400; }

a, p, span, input, button, label {
  font-family: "Open Sans", "Helvetica Neue", Arial, sans-serif; }

a {
  color: #009DDD;
  cursor: pointer; }

select {
  height: 40px;
  padding: 8px;
  margin: 8px;
  border: none;
  border-bottom: 1px solid #cccccc;
  max-width: 280px;
  text-overflow: ellipsis;
  background: #ffffff; }

.left {
  text-align: left; }

.right {
  text-align: right; }

.center {
  text-align: center; }

.navBar {
  background: #ffffff;
  box-shadow: 0 4px 9px rgba(0, 0, 0, 0.16);
  width: 100%;
  height: 56px;
  position: fixed;
  top: 0; }

.navHeader {
  display: flex;
  justify-content: space-between; }
  .navHeader > .group {
    display: flex; }

.compare-period {
  font-family: "Open Sans", "Helvetica Neue", Arial, sans-serif; }
  .compare-period-select {
    margin-right: 24px; }
  .compare-period-check:disabled, .compare-period-check:disabled ~ label:hover {
    cursor: not-allowed; }
  .compare-period-label {
    margin-right: 24px; }
    .compare-period-label:hover {
      cursor: pointer; }

/*input{
	height: 40px;
	border: none;
	border-bottom: 1px solid #cccccc;
	font-size: 14pt;
	width: 100%;
	margin: 2*$large 0;
}
*/
.viewport {
  width: 100%;
  height: 100%; }

div.flexWrapper {
  display: flex;
  width: 100%;
  flex-wrap: wrap; }

.loginScreen {
  width: 100%;
  height: 100%; }

.loginModal {
  width: 672px;
  margin: auto;
  background: #ffffff;
  box-shadow: 0 4px 9px rgba(0, 0, 0, 0.16);
  position: fixed;
  top: 50%;
  left: 50%;
  display: flex;
  flex-wrap: wrap;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  border-radius: 4px; }

.loginFields {
  padding: 24px;
  width: 480px; }
  .loginFields img {
    display: none; }

.loginIntro {
  width: 192px;
  background: linear-gradient(45deg, #fafbfe, #e2ecfc);
  border-radius: 4px 0 0 4px; }
  .loginIntro img {
    margin: 8px 40px; }
    .loginIntro img:first-child {
      margin-top: 40px; }

@media (max-width: 720px) {
  .loginIntro {
    display: none; }

  .loginModal {
    width: calc(100% - 2 * 8px);
    max-width: 480px; }
    .loginModal h1, .loginModal h4 {
      text-align: center; }

  .loginFields img {
    display: block;
    margin: 0 auto; }
  .loginFields h1 {
    font-size: 24pt; } }
.loginLoader {
  position: fixed;
  top: 50%;
  left: 50%; }
  .loginLoader .loader-block-circle {
    display: block;
    margin: 0 auto;
    width: 60px;
    height: 60px;
    border: 5px solid transparent;
    border-bottom-color: #1275BB;
    border-left-color: #1275BB;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    border-radius: 50%;
    -webkit-animation: spin 0.666s linear 0.2s infinite;
    -moz-animation: spin 0.666s linear 0.2s infinite;
    -ms-animation: spin 0.666s linear 0.2s infinite;
    -o-animation: spin 0.666s linear 0.2s infinite;
    animation: spin 0.666s linear 0.2s infinite; }

/*
.loginZone{
	display: flex;
 	justify-content: center;
}
*/
.btn-main {
  font-size: 14pt;
  font-weight: 600;
  color: #ffffff;
  background-color: #1275BB;
  line-height: 2em;
  min-width: 100px;
  max-width: 200px;
  border-radius: 4px;
  border: 1px solid #0e588c;
  border-bottom: 3px solid #0e588c;
  display: inline-block;
  justify-content: center;
  margin: 16px auto 0 auto; }
  .btn-main span {
    text-shadow: 0 -1px 0px rgba(0, 0, 0, 0.12); }

.btn {
  height: 48px;
  padding: 8px 16px;
  border-radius: 4px;
  background: #009DDD;
  box-shadow: 0 4px 9px rgba(0, 0, 0, 0.16);
  margin: 16px 0;
  display: inline-block;
  cursor: pointer;
  transition: all 0.5s ease-in-out;
  -webkit-transition: all 0.5s ease-in-out; }
  .btn i, .btn a {
    line-height: 35px;
    vertical-align: middle; }
  .btn a {
    color: #ffffff;
    font-weight: 600;
    padding-left: 16px; }
  .btn span {
    color: #ffffff;
    font-weight: 600; }
  .btn:hover {
    background: #00b3fc;
    box-shadow: 0 7px 18px rgba(0, 0, 0, 0.28); }

.logos {
  display: flex;
  justify-content: center; }
  .logos img {
    margin: 0 8px; }

.header {
  display: flex; }

.headerText {
  width: 80%; }

.headerLogo {
  width: 20%; }
  .headerLogo img {
    float: right;
    margin: 16px 0 0 0; }

.headerFilters {
  width: 100%; }

div.logout {
  height: 56px;
  line-height: 56px;
  padding: 0 8px;
  margin: 0 16px 0 0; }

/* mdInput */
div.mdInput {
  position: relative;
  float: left;
  margin-top: 32px;
  padding: 0 0.5em;
  width: 50%; }
  div.mdInput :last-child {
    margin-bottom: 24px; }

div.mdInput.full {
  width: 100%; }

div.mdInput input {
  display: block;
  padding: 1em 0.3em;
  width: 100%;
  border: none;
  border-bottom: 1px solid #cccccc; }

div.mdInput input:focus {
  outline: none; }

div.mdInput label {
  position: absolute;
  color: #9E9E9E;
  left: 0.8em;
  top: 1em;
  transition: 0.2s ease-in-out all;
  -moz-transition: 0.2s ease-in-out all;
  -webkit-transition: 0.2s ease-in-out all; }

div.mdInput input:focus ~ label {
  left: 0.5em;
  top: -1.2em;
  color: #FF5722;
  font-size: 0.8em;
  font-weight: bold; }

div.mdInput input:valid ~ label {
  left: 0.5em;
  top: -1.2em;
  color: #4CAF50;
  font-size: 0.8em;
  font-weight: bold; }

div.mdInput span {
  display: block;
  position: relative; }

div.mdInput span:before,
div.mdInput span:after {
  position: absolute;
  bottom: 0.01em;
  height: 0.2em;
  width: 0;
  background: #FF5722;
  content: '';
  transition: 0.2s ease all;
  -moz-transition: 0.2s ease all;
  -webkit-transition: 0.2s ease all; }

div.mdInput span:before {
  left: 50%; }

div.mdInput span:after {
  right: 50%; }

div.mdInput input:focus ~ span:before,
div.mdInput input:focus ~ span:after {
  width: 50%; }

div.mdInput input:valid ~ span:before,
div.mdInput input:valid ~ span:after {
  width: 50%;
  background-color: #4CAF50; }

.tab-wrap {
  height: 56px;
  max-width: 720px;
  position: relative;
  display: flex; }
  .tab-wrap.isadmin > input[type="radio"][name="tabs"]:nth-of-type(1):checked ~ .slide {
    left: calc(144px * 0); }
  .tab-wrap.isadmin > input[type="radio"][name="tabs"]:nth-of-type(2):checked ~ .slide {
    left: calc(144px * 1); }
  .tab-wrap.isadmin > input[type="radio"][name="tabs"]:nth-of-type(3):checked ~ .slide {
    left: calc(144px * 2); }
  .tab-wrap.isadmin > input[type="radio"][name="tabs"]:nth-of-type(4):checked ~ .slide {
    left: calc(144px * 3); }
  .tab-wrap.isadmin > input[type="radio"][name="tabs"]:nth-of-type(5):checked ~ .slide {
    left: calc(144px * 4); }
  .tab-wrap.isadmin > input[type="radio"][name="tabs"]:nth-of-type(6):checked ~ .slide {
    left: calc(144px * 5); }
  .tab-wrap.isadmin > input[type="radio"][name="tabs"]:nth-of-type(7):checked ~ .slide {
    left: calc(144px * 6); }
  .tab-wrap.issecretario > input[type="radio"][name="tabs"]:nth-of-type(1):checked ~ .slide {
    left: calc(144px * 0); }
  .tab-wrap.issecretario > input[type="radio"][name="tabs"]:nth-of-type(2):checked ~ .slide {
    left: calc(144px * 1); }
  .tab-wrap.issecretario > input[type="radio"][name="tabs"]:nth-of-type(3):checked ~ .slide {
    left: calc(144px * 2); }
  .tab-wrap.issecretario > input[type="radio"][name="tabs"]:nth-of-type(4):checked ~ .slide {
    left: calc(144px * 3); }
  .tab-wrap.issecretario > input[type="radio"][name="tabs"]:nth-of-type(5):checked ~ .slide {
    left: calc(144px * 4); }
  .tab-wrap.issecretario > input[type="radio"][name="tabs"]:nth-of-type(6):checked ~ .slide {
    left: calc(144px * 5); }
  .tab-wrap.isescola > input[type="radio"][name="tabs"]:nth-of-type(1):checked ~ .slide {
    left: calc(144px * 0); }
  .tab-wrap.isescola > input[type="radio"][name="tabs"]:nth-of-type(2):checked ~ .slide {
    left: calc(144px * 1); }
  .tab-wrap.isescola > input[type="radio"][name="tabs"]:nth-of-type(3):checked ~ .slide {
    left: calc(144px * 2); }

input[type="radio"][name="tabs"] {
  position: absolute;
  z-index: -1; }
  input[type="radio"][name="tabs"]:checked + .tab-label-content label {
    color: #1275BB;
    font-weight: 600; }
  input[type="radio"][name="tabs"]:checked + .tab-label-content .tab-content {
    display: block; }

div.tab-wrap label {
  color: #009DDD;
  background-color: #ffffff;
  box-sizing: border-box;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  height: 56px;
  transition: color 0.2s ease;
  width: 144px;
  cursor: pointer; }

.slide {
  background: #1275BB;
  max-width: 144px;
  height: 4px;
  position: absolute;
  left: 0;
  top: calc(100% - 4px);
  transition: left 0.3s ease-out; }
  .slide.isadmin {
    width: 144px; }
  .slide.issecretario {
    width: 144px; }
  .slide.isescola {
    width: 144px; }

.tab-label-content {
  width: 100%;
  max-width: 144px; }
  .tab-label-content .tab-content {
    position: absolute;
    top: 100px;
    left: 16px;
    line-height: 130%;
    display: none; }

.only-print {
  display: none; }

@media screen and (max-width: 800px) {
  .tab-wrap {
    width: 80%; } }
@media print {
  * {
    box-shadow: none; }

  .navBar {
    display: none; }

  .btn.print {
    display: none; }

  .only-print {
    display: block; }

  .page-print-group {
    page-break-inside: avoid; }

  .hide-in-print {
    display: none; } }
/* Rules for sizing the icon. */
.material-icons.md-18 {
  font-size: 18px; }

.material-icons.md-24 {
  font-size: 24px; }

.material-icons.md-36 {
  font-size: 36px; }

.material-icons.md-48 {
  font-size: 48px; }

/* Rules for using icons as black on a light background. */
.material-icons.md-dark {
  color: rgba(0, 0, 0, 0.54); }

.material-icons.md-dark.md-inactive {
  color: rgba(0, 0, 0, 0.26); }

/* Rules for using icons as white on a dark background. */
.material-icons.md-light {
  color: white; }

.material-icons.md-light.md-inactive {
  color: rgba(255, 255, 255, 0.3); }

/* Icon coloring */
.material-icons.blue {
  color: #009DDD; }

/*# sourceMappingURL=qmagico-relatorio-main.css.map */
