/* 
    SASS Mixins
*/
flex-loading {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-direction: normal;
  -webkit-box-orient: vertical;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
  height: 100%;
  width: 100%;
  text-align: left; }
  flex-loading .image img {
    height: 4em;
    margin-right: 1em; }
  flex-loading .message {
    font-size: 1.2em;
    opacity: 0.5;
    text-align: left; }
  flex-loading .legend {
    opacity: 0.4;
    margin-top: 0.5em;
    font-size: 0.9em;
    line-height: 1em;
    text-align: left; }

/*# sourceMappingURL=flex-loading.css.map */

/* 
    SASS Mixins
*/
md-dialog.loading-dialog {
  height: 150px;
  width: 450px; }
  md-dialog.loading-dialog > div {
    height: 90%; }

/*# sourceMappingURL=loading-dialog.css.map */

/* 
    SASS Mixins
*/
/*********************
 RESPONSIVE BREAKPOINTS
*********************/
external-authenticators {
  display: block; }
  external-authenticators button.md-button {
    width: 100%;
    margin: 5px 0px;
    padding: 4px;
    text-align: left; }
    external-authenticators button.md-button > md-icon {
      float: left;
      margin-top: 6px;
      margin-left: 8px;
      margin-right: 16px; }
    external-authenticators button.md-button.google {
      background-color: #DC4E41 !important; }

@media (max-width: 800px) {
  external-authenticators button.md-button > md-icon {
    margin-right: 8px; }
  external-authenticators button.md-button > span {
    font-size: 0.85em; } }

/*# sourceMappingURL=external-authenticators.css.map */

/* 
    SASS Mixins
*/
identity-box {
  outline: none;
  display: block;
  padding-left: 12px; }
  identity-box > div.anonymous .md-button.md-raised:not([disabled]) {
    box-shadow: none; }
  identity-box > div.authenticated {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-direction: normal;
    -webkit-box-orient: horizontal;
    -webkit-flex-direction: row;
    -moz-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    -moz-align-items: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    -moz-justify-content: center;
    justify-content: center; }
    identity-box > div.authenticated > div.profile {
      font-size: 0.65em; }
      identity-box > div.authenticated > div.profile > div.name {
        padding-bottom: 2px; }
      identity-box > div.authenticated > div.profile > div.logout {
        text-align: right;
        outline: none; }
        identity-box > div.authenticated > div.profile > div.logout:hover {
          text-decoration: underline;
          cursor: pointer; }
    identity-box > div.authenticated > avatar {
      display: block;
      width: 35px;
      height: 35px;
      margin-left: 16px; }
      identity-box > div.authenticated > avatar > div.halo {
        background-color: #FFF;
        border-radius: 50%;
        width: 100%;
        height: 100%; }
        identity-box > div.authenticated > avatar > div.halo > div {
          border-radius: 50%;
          overflow: hidden;
          height: 100%;
          width: 100%;
          background: #3F51B5; }
          identity-box > div.authenticated > avatar > div.halo > div > img {
            width: 100%; }

/*# sourceMappingURL=identity-box.css.map */

/* 
    SASS Mixins
*/
/*********************
 RESPONSIVE BREAKPOINTS
*********************/
restricted-access-dialog {
  position: fixed;
  top: 0px;
  left: 0px;
  right: 0px;
  bottom: 0px;
  z-index: 9999;
  /* ANIMATION */ }
  restricted-access-dialog > div.backdrop {
    opacity: 0.9;
    background-color: #000;
    height: 100%;
    width: 100%; }
  restricted-access-dialog > div.login-box {
    position: fixed;
    top: 27%;
    bottom: 27%;
    right: 20%;
    left: 20%;
    width: auto;
    height: auto;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    -moz-justify-content: center;
    justify-content: center;
    -webkit-box-direction: normal;
    -webkit-box-orient: vertical;
    -webkit-flex-direction: column;
    -moz-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    padding: 24px;
    color: #fff; }
    restricted-access-dialog > div.login-box > md-icon.close {
      position: absolute;
      right: 16px;
      top: 16px;
      height: 40px;
      width: 40px; }
    restricted-access-dialog > div.login-box > div.logo {
      padding-bottom: 16px;
      text-align: center; }
      restricted-access-dialog > div.login-box > div.logo > md-icon {
        height: 5em;
        width: auto; }
    restricted-access-dialog > div.login-box > div.text {
      font-size: 1.2em;
      text-align: center; }
    restricted-access-dialog > div.login-box > div.legend {
      font-size: 1em;
      font-style: italic;
      text-align: center;
      padding-top: 2em; }
  restricted-access-dialog.ng-show-add {
    animation: 0.4s fadeOut linear; }
  restricted-access-dialog.ng-hide {
    animation: 0.45s fadeIn linear; }

@media (max-width: 800px) {
  restricted-access-dialog > div.login-box {
    position: fixed;
    top: 20%;
    bottom: 20%;
    right: 6%;
    left: 6%; } }

/*# sourceMappingURL=restricted-access.css.map */

.accounts.index[table-content] gale-body{min-height:395px !important}.accounts.create div.rows,.accounts.edit div.rows{height:auto;overflow:auto;overflow-x:hidden}.accounts.create div.rows div.rol-item,.accounts.edit div.rows div.rol-item{outline:none;padding:0.7em;border-bottom:1px solid #E4E4E4;padding-left:8px;padding-right:0px}.accounts.create div.rows div.rol-item>div,.accounts.edit div.rows div.rol-item>div{display:flex;align-items:center;padding-left:0.5em}.accounts.create div.rows div.rol-item>div:last-child,.accounts.edit div.rows div.rol-item>div:last-child{font-style:italic;opacity:0.7}.accounts.create div.rows div.rol-item md-switch,.accounts.edit div.rows div.rol-item md-switch{margin:0px}.accounts.create div.rows div.rol-item:last-child,.accounts.edit div.rows div.rol-item:last-child{border-bottom:none}.accounts.create md-input-container,.accounts.edit md-input-container{margin:25px 0}.accounts.create md-content[table-content].inset,.accounts.edit md-content[table-content].inset{min-height:315px}.accounts.create .recover,.accounts.edit .recover{margin-right:4em}
/*# sourceMappingURL=edit.css.map */

.usuarios md-card{margin-top:2.5em}.usuarios md-card gale-column{background:#f9f9f9;font-weight:bold}.usuarios md-card md-toolbar{height:100px;padding:0.5em;text-align:center}.usuarios md-badge{background-color:#3F51B5;color:white;padding:1px 6px;border-radius:100%}.usuarios .md-card-reporte{margin-top:2px}.usuarios .badge{cursor:pointer;outline:none;padding:3px 3px;background:#FFF;position:absolute;color:#3F51B5;margin-top:-18px;border-radius:50%;margin-left:26px;padding:1px 10px 1px;float:right}.usuarios .estado-por-finalizar{color:orange}.usuarios .estado-atrasado{color:red}.usuarios .estado-entregado{color:green}.usuarios .md-card{min-height:auto}.usuarios .md-card div.header{padding:2px;font-weight:bold;background-color:#f9f9f9;border-bottom:1px solid #ececec;text-align:center}.usuarios .md-card div.headerMessage{padding:2px;font-weight:bold;background-color:#f9f9f9;border-bottom:1px solid #ececec;text-align:left}.usuarios .md-card div.item{border-bottom:1px solid #ececec;min-height:49px;padding:0.5em;text-align:center;padding:10px;font-size:small}.usuarios .md-card div.headerElementos{padding:2px;font-weight:bold;background-color:#f9f9f9;border-bottom:1px solid #ececec}.usuarios .md-card div.itemElementos{border-bottom:1px solid #ececec;padding:0.5em}.usuarios .md-card div.itemMessage{border-bottom:1px solid #ececec;min-height:49px;padding:1em;text-align:left}.usuarios .md-card .pulsar:hover{background-color:#f9f9f9}.usuarios .md-card *:focus{outline:none}.usuarios .md-card .boton-ap-re{height:30px;width:10px;min-width:60px;font-size:x-small;min-height:30px;margin:0;padding:0}
/*# sourceMappingURL=users.css.map */

/*------------------------- 
VIEW:   Home Module
ROUTE:  /app/home/*
-------------------------*/

/*# sourceMappingURL=home.css.map */

md-dialog.md-dialog-fullscreen {
  height: 97%;
  width: 97%;
  max-height: 97%;
  max-width: 97%;
  position: absolute;
  top: 1.5%;
  left: 1.5%;
  border-radius: 0; }
  md-dialog.md-dialog-fullscreen > md-dialog-actions {
    position: fixed;
    left: 0px;
    right: 0px;
    bottom: 0px; }
md-dialog > md-dialog-content > div > flex-loading,
md-dialog > md-dialog-content > flex-loading {
  margin-top: 20%; }

.clickable {
  cursor: pointer;
  outline: none; }
  .clickable > input,
  .clickable > label {
    cursor: pointer; }

.default-layout button.big {
  padding: 6px 6px;
  font-size: 95%;
  white-space: normal; }
.default-layout primary-fab {
  position: fixed;
  left: 24px;
  top: 28px;
  width: 56px;
  height: 56px;
  display: inline-block;
  z-index: 10; }
  .default-layout primary-fab md-fab-trigger > button.md-button {
    margin: 0px 8px 6px 8px; }
  .default-layout primary-fab md-fab-trigger > .md-fab > md-icon,
  .default-layout primary-fab md-fab-actions .md-fab > md-icon {
    color: #fff !important; }
  .default-layout primary-fab > .md-fab {
    padding: 0px !important;
    margin: 0px !important; }
    .default-layout primary-fab > .md-fab > md-icon {
      color: #fff !important; }
  .default-layout primary-fab.md-tall {
    top: 98px; }
  .default-layout primary-fab.right {
    right: 24px;
    left: auto; }
  .default-layout primary-fab.bottom {
    bottom: 24px;
    top: auto; }
.default-layout page-title {
  position: fixed;
  z-index: 2;
  left: 88px;
  color: #fff;
  font-size: 1.7em;
  right: 16px;
  top: 64px;
  height: 64px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  -moz-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center; }
.default-layout page-title.no-primary-fab {
  left: 20px; }
.default-layout md-content[ui-view] {
  background-color: white;
  height: 100%; }
  .default-layout md-content[ui-view] > md-progress-linear {
    left: 0px;
    right: 0px;
    position: fixed; }
  .default-layout md-content[ui-view] > flex-loading {
    min-height: 500px; }
  .default-layout md-content[ui-view] md-content[table-content] {
    background-color: transparent;
    min-height: 505px;
    box-shadow: none;
    margin: 36px 0px 0px 0px;
    /*
        @include box-shadow(3px);
    */ }
    .default-layout md-content[ui-view] md-content[table-content].inset {
      margin-top: 16px;
      padding: 0px; }
    .default-layout md-content[ui-view] md-content[table-content] md-toolbar {
      min-height: 48px;
      height: 48px;
      background: none;
      padding: 10px 10px 0px 10px; }
      .default-layout md-content[ui-view] md-content[table-content] md-toolbar .md-toolbar-tools {
        background-color: #Fff;
        color: rgba(0, 0, 0, 0.87);
        padding-left: 8px;
        font-size: 17px; }
        .default-layout md-content[ui-view] md-content[table-content] md-toolbar .md-toolbar-tools span i {
          opacity: 0.6;
          font-size: 0.8em; }
        .default-layout md-content[ui-view] md-content[table-content] md-toolbar .md-toolbar-tools > button {
          min-width: auto; }
  .default-layout md-content[ui-view] md-content[form-content] {
    background-color: transparent;
    /* 
        FIX: https://github.com/gpittarelli/Frontend/commit/54bd5cd72313d1fb07439c2c206c2b94cdd1e601 
        FIX: https://github.com/angular/material/issues/6214
    */ }
    
    .default-layout md-content[ui-view] md-content[form-content] button-pad {
      display: block;
      position: fixed;
      bottom: 0px;
      right: 0px;
      left: 0px;
      padding: 16px;
      height: 48px;
      text-align: right;
      background-color: #fbfbfb;
      border-top: 1px solid #f3f3f3; }
      .default-layout md-content[ui-view] md-content[form-content] button-pad md-spacer {
        display: inline;
        padding-left: 50px; }
      .default-layout md-content[ui-view] md-content[form-content] button-pad button.big {
        margin-top: 1px; }
    .default-layout md-content[ui-view] md-content[form-content] input[disabled],
    .default-layout md-content[ui-view] md-content[form-content] textarea[disabled] {
      color: #888; }
    .default-layout md-content[ui-view] md-content[form-content] md-input-container .md-errors-spacer {
      min-height: 0; }
    .default-layout md-content[ui-view] md-content[form-content] md-toolbar {
      min-height: 48px;
      height: 48px;
      background: none;
      padding: 10px 10px 0px 10px; }
      .default-layout md-content[ui-view] md-content[form-content] md-toolbar .md-toolbar-tools {
        background-color: #Fff;
        color: rgba(0, 0, 0, 0.87);
        padding-left: 8px;
        font-size: 17px; }
        .default-layout md-content[ui-view] md-content[form-content] md-toolbar .md-toolbar-tools span i {
          opacity: 0.6;
          font-size: 0.8em; }
        .default-layout md-content[ui-view] md-content[form-content] md-toolbar .md-toolbar-tools > button {
          min-width: auto; }
.default-layout md-sidenav md-list {
  outline-style: none;
  padding: 0px; }
  .default-layout md-sidenav md-list.category {
    color: #fff; }
    .default-layout md-sidenav md-list.category md-icon {
      color: #fff; }
    .default-layout md-sidenav md-list.category.md-primary.background {
      background: #3F51B5; }
  .default-layout md-sidenav md-list.toggled md-icon {
    transform: rotate(180deg);
    -webkit-transform: rotate(180deg); }
  .default-layout md-sidenav md-list button md-icon {
    margin-right: 16px !important; }

/*# sourceMappingURL=layouts.css.map */

/* 
    SASS Mixins
*/
/*------------------------- 
VIEW:   Security Module
ROUTE:  /public/security/*
-------------------------*/
div.security {
  /*------------------------- 
  VIEW:   Identity Section
  ROUTE:  /public/security/identity/*
  -------------------------*/ }
  div.security.identity {
        /*------------------------- 
	    VIEW:   Login Page
	    ROUTE:  /public/security/identity/login
	    -------------------------*/ }
    div.security.identity.login > md-whiteframe {
      width: 35%;
      min-width: 350px;
      height: 50%;
      min-height: 450px;
      background-color: #fff; }
      div.security.identity.login > md-whiteframe > div.header {
        padding: 0px 20px 20px 20px;
        font-size: 1.2em; }
        div.security.identity.login > md-whiteframe > div.header md-icon {
          height: 4.5em;
          width: 4.5em; }
      div.security.identity.login > md-whiteframe > div.body {
        padding: 16px; }
        div.security.identity.login > md-whiteframe > div.body button {
          margin: 0px; }
          div.security.identity.login > md-whiteframe > div.body button > md-icon {
            margin-bottom: 4px; }

/*# sourceMappingURL=security.css.map */

md-dialog.maps.dialog.add.section{min-width:86%;min-height:63%}md-dialog.maps.dialog.add.section #map{width:100%;height:90vh}md-dialog.maps.dialog.add.section md-dialog-content{/*height:350px*/}md-dialog.maps.dialog.add.section md-dialog-content md-content{background-color:transparent}md-dialog.maps.dialog.add.section md-dialog-content md-content md-card.header{background-color:#efefef;margin:0px 0px 6px 0px;padding:0px 11px;box-shadow:1px 1px 9px 2px #c1c1c1}md-dialog.maps.dialog.add.section md-dialog-content md-content md-card.header div md-input-container{margin-top:1.6em}md-dialog.maps.dialog.add.section md-dialog-content md-content md-card.header div button{margin-top:1.8em}md-dialog.maps.dialog.add.section md-dialog-content md-content md-card.footer{margin:0px}md-dialog.maps.dialog.add.section md-dialog-content md-content md-card.footer div.comments>div.header{padding:0.5em;font-weight:bold;background-color:#f9f9f9;border-bottom:1px solid #ececec}md-dialog.maps.dialog.add.section md-dialog-content md-content md-card.footer div.comments>div.body{height:175px;overflow:auto}md-dialog.maps.dialog.add.section md-dialog-content md-content md-card.footer div.comments>div.body div.itemCreate{padding:0em 0.5em;border-bottom:1px solid #ececec}md-dialog.maps.dialog.add.section md-dialog-content md-content p.p-alt{margin-top:2em}md-dialog.maps.dialog.add.section md-dialog-content md-content md-select.p-alt{margin-top:1.6em}md-dialog.maps.dialog.add.section md-dialog-content md-content div.algo p{padding-top:0;padding-bottom:0}md-dialog.maps.dialog.add.section md-dialog-content md-content form>div:first-child{padding:0px}md-dialog.maps.dialog.add.section md-dialog-content md-content form md-input-container{margin-bottom:0px}md-dialog.maps.dialog.add.section md-dialog-content md-content form md-input-container .md-errors-spacer{display:none}md-dialog.maps.dialog.add.section md-dialog-content md-content form div.color-brick{height:30px;width:30px;border-radius:50%;margin-left:4px}
/*# sourceMappingURL=dialogs.css.map */

md-dialog.maps.dialog.add.section{min-width:86%;min-height:63%}md-dialog.maps.dialog.add.section md-dialog-content{/*height:350px*/}md-dialog.maps.dialog.add.section md-dialog-content md-content{background-color:transparent}md-dialog.maps.dialog.add.section md-dialog-content md-content md-card.header{background-color:#efefef;margin:0px 0px 6px 0px;padding:0px 11px;box-shadow:1px 1px 9px 2px #c1c1c1}md-dialog.maps.dialog.add.section md-dialog-content md-content md-card.header div md-input-container{margin-top:1.6em}md-dialog.maps.dialog.add.section md-dialog-content md-content md-card.header div button{margin-top:1.8em}md-dialog.maps.dialog.add.section md-dialog-content md-content md-card.footer{margin:0px}md-dialog.maps.dialog.add.section md-dialog-content md-content md-card.footer div.comments>div.header{padding:0.5em;font-weight:bold;background-color:#f9f9f9;border-bottom:1px solid #ececec}md-dialog.maps.dialog.add.section md-dialog-content md-content md-card.footer div.comments>div.body{height:175px;overflow:auto}md-dialog.maps.dialog.add.section md-dialog-content md-content md-card.footer div.comments>div.body div.itemCreate{padding:0em 0.5em;border-bottom:1px solid #ececec}md-dialog.maps.dialog.add.section md-dialog-content md-content md-card.footer div.comments>div.body div.itemCreate div{display:-webkit-box;display:-webkit-flex;display:-moz-flex;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;-webkit-align-items:center;-moz-align-items:center;align-items:center}md-dialog.maps.dialog.add.section md-dialog-content md-content p.p-alt{margin-top:2em}md-dialog.maps.dialog.add.section md-dialog-content md-content md-select.p-alt{margin-top:1.6em}md-dialog.maps.dialog.add.section md-dialog-content md-content form>div:first-child{padding:0px}md-dialog.maps.dialog.add.section md-dialog-content md-content form md-input-container{margin-bottom:0px}md-dialog.maps.dialog.add.section md-dialog-content md-content form md-input-container .md-errors-spacer{display:none}md-dialog.maps.dialog.add.section md-dialog-content md-content form div.color-brick{height:30px;width:30px;border-radius:50%;margin-left:4px}
/*# sourceMappingURL=dialogs.css.map */
