/* Status of services */
/* fontes */
/* Layout */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
caption, tfoot, thead, tbody, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  vertical-align: baseline; }

table {
  vertical-align: baseline;
  border-spacing: 0px; }

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block; }

body {
  line-height: 1; }

ol, ul {
  list-style: none;
  list-style-type: none; }

blockquote, q {
  quotes: none; }

blockquote:before, blockquote:after,
q:before, q:after {
  content: '';
  content: none; }

a:link, a:visited {
  text-decoration: none; }

button {
  cursor: pointer;
  font-family: "Roboto", sans-serif; }

select {
  -webkit-appearance: none;
  -moz-appearance: none;
  -o-appearance: none;
  -ms-appearance: none;
  appearance: none;
  text-indent: 0.01px;
  text-overflow: ''; }
  select label {
    display: none; }

input[type='submit'] {
  cursor: pointer; }

[draggable] {
  -moz-user-select: none;
  -khtml-user-select: none;
  -webkit-user-select: none;
  user-select: none;
  /* Required to make elements draggable in old WebKit */
  -khtml-user-drag: element;
  -webkit-user-drag: element; }

textarea {
  resize: none; }

*:focus {
  outline: none; }

/*Setup Browser*/
input:-webkit-autofill {
  background-color: transparent !important;
  -webkit-box-shadow: 0 0 0 1000px #fff inset;
  -webkit-animation-name: autofill;
  -webkit-animation-fill-mode: both; }

input:autofill {
  background-color: transparent !important;
  box-shadow: 0 0 0 1000px #fff inset;
  animation-name: autofill;
  animation-fill-mode: both; }

@-webkit-keyframes autofill {
  to {
    color: #666;
    background: transparent; } }

@keyframes autofill {
  to {
    color: #666;
    background: transparent; } }

header {
  position: relative;
  float: left;
  height: 3em;
  width: calc(100% - 2em);
  padding: 0px 1em;
  box-shadow: 0 0.05em 0 0.05em rgba(0, 0, 0, 0.1); }
  header .menu, header .logo {
    position: relative;
    float: left;
    cursor: pointer;
    fill: #616161;
    display: -webkit-flex;
    display: -o-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: flex;
    -webkit-flex-direction: row;
    -o-flex-direction: row;
    -moz-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-flex-wrap: wrap;
    -o-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-justify-content: flex-start;
    -o-justify-content: flex-start;
    -moz-justify-content: flex-start;
    -ms-justify-content: flex-start;
    justify-content: flex-start; }
    header .menu:hover, header .logo:hover {
      fill: #009b3a; }
    header .menu svg, header .logo svg {
      position: relative;
      float: left;
      margin: auto; }
  header .menu {
    width: 2em;
    height: 2em;
    top: calc(50% - 1em);
    margin-right: 0.4em; }
    header .menu svg {
      width: auto;
      height: 24px;
      transition-property: all;
      transition-duration: 0.3s;
      transition-timing-function: cubic-bezier(0.55, 0, 0.1, 1);
      -moz-transform: scale(0.8);
      -webkit-transform: scale(0.8);
      -ms-transform: scale(0.8);
      -o-transform: scale(0.8);
      transform: scale(0.8); }
  header .logo {
    width: auto;
    height: 100%; }
    header .logo svg {
      width: auto;
      height: 50%; }
  header nav {
    position: relative;
    float: left;
    width: auto;
    height: 3em;
    margin: 0 2em; }
    header nav a {
      position: relative;
      float: left;
      width: auto;
      line-height: 3.57em;
      font-size: 0.9em;
      color: #424242;
      opacity: 0.5;
      padding: 0 .8em;
      margin: 0 0.25em;
      cursor: pointer;
      transition-property: all;
      transition-duration: 0.3s;
      transition-timing-function: cubic-bezier(0.55, 0, 0.1, 1); }
      header nav a:hover {
        opacity: 1;
        color: #2196F3; }
    header nav a.selected {
      opacity: 1;
      font-weight: 500; }
  header .logout {
    position: relative;
    float: right;
    width: auto;
    top: calc(50% - 1em);
    border-radius: .2em;
    background-color: #EEEEEE;
    cursor: pointer;
    display: -webkit-flex;
    display: -o-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: flex;
    -webkit-flex-direction: row;
    -o-flex-direction: row;
    -moz-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-flex-wrap: wrap;
    -o-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-justify-content: flex-start;
    -o-justify-content: flex-start;
    -moz-justify-content: flex-start;
    -ms-justify-content: flex-start;
    justify-content: flex-start;
    fill: #424242;
    color: #424242;
    padding: .3em .5em; }
    header .logout:hover {
      background-color: #FFEBEE;
      fill: #F44336;
      color: #F44336; }
    header .logout svg {
      position: relative;
      float: left;
      width: 20px;
      height: 20px;
      margin: auto;
      -moz-transform: scale(0.9);
      -webkit-transform: scale(0.9);
      -ms-transform: scale(0.9);
      -o-transform: scale(0.9);
      transform: scale(0.9); }
    header .logout p {
      position: relative;
      float: left;
      line-height: 20px;
      font-size: 14px;
      margin-right: .35em; }

@media only screen and (min-width: 20em) and (max-width: 46em), screen and (min-width: 20em) and (max-width: 46em) and (orientation: portrait) {
  header .logo {
    position: absolute;
    left: calc(50% - 42.5px);
    margin: 0; }
  header nav {
    display: none; } }

@keyframes explosion {
  0% {
    -moz-transform: scale(0);
    -webkit-transform: scale(0);
    -ms-transform: scale(0);
    -o-transform: scale(0);
    transform: scale(0); }
  100% {
    -moz-transform: scale(1);
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
    opacity: 0; } }

h1, h2, h3, h4, h5, h6, p, span, label, a {
  font-family: "Roboto", sans-serif; }

.center {
  position: relative;
  float: left;
  height: auto;
  width: 900px;
  left: calc(50vw - 450px);
  transition-property: all;
  transition-duration: 0.1s;
  transition-timing-function: cubic-bezier(0.55, 0, 0.1, 1); }

@media only screen and (max-width: 900px) {
  .center {
    left: 5%;
    width: 90%; } }

@media only screen and (min-width: 20em) and (max-width: 46em), screen and (min-width: 20em) and (max-width: 46em) and (orientation: portrait) {
  .center {
    width: calc(100% - 0.5in);
    left: 0.25in; } }

.pg {
  position: relative;
  float: left;
  width: 100%;
  height: calc(100vh - 3em); }

.loading {
  position: fixed;
  left: 0;
  top: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.75); }

.expand-loading {
  position: absolute;
  left: 0;
  width: 100%;
  height: 100%;
  top: 0;
  background: rgba(255, 255, 255, 0.8); }

#loadingExplosion, .load-explosion {
  position: absolute;
  top: calc(50% - 2.5em);
  left: calc(50% - 2.5em);
  width: 5em;
  height: 5em;
  background-color: green;
  border-radius: 100%;
  animation: explosion 1s ease-out 0s infinite; }

.load-explosion {
  margin: auto; }

.ember-notify.info {
  background: #e9ebec;
  color: #424242; }

.ember-notify.alert {
  background: #F44336;
  color: white; }

.ember-notify.success {
  background: #01be7f;
  color: white; }

.ember-notify.warning {
  background: FFEB3B; }

footer {
  display: none; }

@keyframes infinite-rotate {
  0% {
    -webkit-transform: rotate(0);
    -moz-transform: rotate(0);
    -ms-transform: rotate(0);
    -o-transform: rotate(0);
    transform: rotate(0); }
  100% {
    -webkit-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg); } }

.component-button .lo.loading-button {
  position: relative;
  float: left; }

button, .loading-button, input[type="button"], input[type="reset"], input[type="submit"], .loading-button:hover {
  position: relative;
  float: left;
  color: white;
  background-color: #009b3a !important;
  box-shadow: none;
  font-weight: 300;
  letter-spacing: 1px;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  border: none;
  padding: 0.7em 1.5em;
  font-size: .9em;
  border-radius: 0.2em;
  transition-property: all;
  transition-duration: 0.3s;
  transition-timing-function: cubic-bezier(0.55, 0, 0.1, 1); }
  button:hover, .loading-button:hover, input[type="button"]:hover, input[type="reset"]:hover, input[type="submit"]:hover, .loading-button:hover:hover {
    background-color: #388E3C; }
  button:active, .loading-button:active, input[type="button"]:active, input[type="reset"]:active, input[type="submit"]:active, .loading-button:hover:active {
    background-color: #2E7D32; }

button.ember-hold-button {
  background-color: transparent !important; }

button:disabled, .loading-button {
  opacity: .8;
  cursor: default; }

.svg-load {
  position: relative;
  fill: white;
  width: 1.1em;
  height: 1.1em;
  top: .2em;
  transition-property: all;
  transition-duration: 0.3s;
  transition-timing-function: cubic-bezier(0.55, 0, 0.1, 1);
  animation: infinite-rotate 1s ease-out 0s infinite; }

button, input[type="button"], input[type="reset"], input[type="submit"] {
  -webkit-appearance: button; }

.component-button.outline.white button, .component-button.outline.white input[type="button"], .component-button.outline.white input[type="reset"], .component-button.outline.white input[type="submit"] {
  color: white;
  background-color: transparent;
  border: 2px solid rgba(255, 255, 255, 0.5); }

.component-button.white button, .component-button.white input[type="button"], .component-button.white input[type="reset"], .component-button.white input[type="submit"] {
  color: #F44336;
  background-color: white;
  border: 2px solid white; }

.component-button.outline button, .component-button.outline input[type="button"], .component-button.outline input[type="reset"], .component-button.outline input[type="submit"] {
  color: #009b3a;
  background-color: transparent;
  border-color: #009b3a; }

.component-button.fail button, .component-button.fail input[type="button"], .component-button.fail input[type="reset"], .component-button.fail input[type="submit"] {
  color: white;
  background-color: #F44336;
  border-color: #F44336; }

.component-button.outline.fail button, .component-button.outline.fail input[type="button"], .component-button.outline.fail input[type="reset"], .component-button.outline.fail input[type="submit"] {
  color: #F44336;
  background-color: transparent; }

:root {
  --disabled-button-bg: #999; }

.loading-button {
  position: relative; }

.loading-button .loading-spinner {
  position: absolute;
  z-index: 2;
  display: inline-block;
  top: 1em;
  margin-top: 0;
  opacity: 0;
  pointer-events: none; }

.loading-button .loading-label {
  position: relative;
  z-index: 3; }

.loading-button .loading-progress {
  position: absolute;
  width: 0;
  height: 100%;
  left: 0;
  top: 0;
  background: #009b3a;
  visibility: hidden;
  opacity: 0;
  transition: 0.1s linear all !important; }

.loading-button[data-loading] .loading-progress {
  opacity: 1;
  visibility: visible; }

.loading-button, .loading-button .loading-spinner, .loading-button .loading-label {
  transition: 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275) all !important; }

.loading-button[data-style=zoom-in],
.loading-button[data-style=zoom-in] .loading-spinner,
.loading-button[data-style=zoom-in] .loading-label,
.loading-button[data-style=zoom-out],
.loading-button[data-style=zoom-out] .loading-spinner,
.loading-button[data-style=zoom-out] .loading-label {
  transition: 0.3s ease all !important; }

.loading-button[data-style=expand-right] .loading-spinner {
  right: 30%; }

.loading-button[data-style=expand-right][data-size="s"] .loading-spinner, .loading-button[data-style=expand-right][data-size="xs"] .loading-spinner {
  right: -12px; }

.loading-button[data-style=expand-right][data-loading] {
  padding-right: 56px; }

.loading-button[data-style=expand-right][data-loading] .loading-spinner {
  opacity: 1; }

.loading-button[data-style=expand-right][data-loading][data-size="s"], .loading-button[data-style=expand-right][data-loading][data-size="xs"] {
  padding-right: 40px; }

.form-item {
  position: relative;
  float: left;
  width: 100%;
  height: auto; }
  .form-item input[type='text'], .form-item input[type='number'], .form-item input[type='email'], .form-item input[type='password'], .form-item select {
    height: 2.5em;
    width: 100%;
    border: none;
    border-bottom: 1px solid #d6d6d6;
    padding: 0;
    font-size: 0.9em;
    border-radius: 0;
    transition-property: all;
    transition-duration: 0.2s;
    transition-timing-function: cubic-bezier(0.55, 0, 0.1, 1);
    box-shadow: 0 0 0 0 transparent;
    background-color: transparent;
    -webkit-text-fill-background: transparent !important;
    text-fill-background: transparent !important;
    color: #424242; }
    .form-item input[type='text']:focus, .form-item input[type='number']:focus, .form-item input[type='email']:focus, .form-item input[type='password']:focus, .form-item select:focus {
      outline: none;
      border-bottom: 1px solid transparent; }
  .form-item input:disabled {
    border-bottom: 1px dashed #d6d6d6;
    cursor: not-allowed;
    color: rgba(66, 66, 66, 0.75); }
  .form-item label {
    position: absolute;
    top: -1em;
    left: 0;
    width: 100%;
    height: auto;
    font-weight: bold;
    color: rgba(66, 66, 66, 0.6);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    font-size: .72em;
    line-height: 1.4em;
    letter-spacing: .25px;
    transition-property: all;
    transition-duration: 0.2s;
    transition-timing-function: cubic-bezier(0.55, 0, 0.1, 1);
    pointer-events: none; }
  .form-item input:focus + label, .form-item input:active + label {
    font-size: .72em;
    color: #009b3a; }

.fail-message {
  position: absolute;
  color: #F44336;
  font-size: 11px;
  margin-top: 5px; }

.fail label {
  color: #F44336; }

.fail input[type='text'], .fail input[type='number'], .fail input[type='email'], .fail input[type='password'], .fail select {
  border-bottom: 1px solid #F44336;
  padding-right: 2.5em;
  width: calc(100% - 2.5em); }

.fail input:focus + label, .fail input:active + label {
  font-size: .72em;
  color: #F44336; }

.fail .line:before, .fail .line:after {
  background: #F44336; }

.helper-text, .helper-error {
  position: relative;
  float: left;
  width: 100%;
  font-size: .75em;
  line-height: 1.25em;
  color: #424242;
  margin-top: .5em;
  opacity: .7; }

.helper-error {
  opacity: 1;
  color: #F44336; }

.line {
  width: 100%;
  left: 0; }

.line:before, .line:after {
  position: absolute;
  height: 2px;
  width: 0;
  bottom: 0;
  content: '';
  background: #009b3a;
  transition-property: all;
  transition-duration: 0.2s;
  transition-timing-function: cubic-bezier(0.55, 0, 0.1, 1); }

.line:before {
  left: 50%; }

.line:after {
  right: 50%; }

input:focus ~ .line:before, input:focus ~ .line:after {
  width: 50%; }

#cpMessageAlert.success p {
  background-color: #01be7f; }

#cpMessageAlert.fail p {
  background-color: #F44336; }

#cpMessageAlert.show {
  animation: notificationTextAlert 0.25s linear 0s 1; }

#cpMessageAlert.show.hide p, #cpMessageAlert.hide p {
  opacity: 0; }

#cpMessageAlert {
  position: fixed;
  height: 2em;
  width: 100%;
  top: 0;
  pointer-events: none;
  overflow: hidden;
  transition-property: all;
  transition-duration: 0.3s;
  transition-timing-function: cubic-bezier(0.55, 0, 0.1, 1);
  display: -webkit-flex;
  display: -o-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: flex;
  -webkit-flex-direction: row;
  -o-flex-direction: row;
  -moz-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-flex-wrap: wrap;
  -o-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-start;
  -o-justify-content: flex-start;
  -moz-justify-content: flex-start;
  -ms-justify-content: flex-start;
  justify-content: flex-start; }
  #cpMessageAlert p {
    position: relative;
    float: left;
    margin: auto;
    text-align: center;
    font-size: 0.9em;
    line-height: 2em;
    color: white;
    letter-spacing: 0.5px;
    font-family: "Roboto", sans-serif;
    padding: 0px 1em;
    border-radius: 2px;
    box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.1);
    transition-property: all;
    transition-duration: 0.3s;
    transition-timing-function: cubic-bezier(0.55, 0, 0.1, 1); }

@media only screen and (min-width: 20em) and (max-width: 46em), screen and (min-width: 20em) and (max-width: 46em) and (orientation: portrait) {
  #cpMessageAlert {
    width: 100%;
    height: 3em; }
    #cpMessageAlert p {
      width: 100%;
      padding: 0;
      font-size: 1em;
      line-height: 3em;
      border-radius: 0; } }

@-webkit-keyframes $name {
  0% {
    -moz-transform: scale(0);
    -webkit-transform: scale(0);
    -ms-transform: scale(0);
    -o-transform: scale(0);
    transform: scale(0);
    height: 0px;
    p {
      -moz-transform: scale(0);
      -webkit-transform: scale(0);
      -ms-transform: scale(0);
      -o-transform: scale(0);
      transform: scale(0);
      font-size: 0px;
      line-height: 0px; } }
  100% {
    -moz-transform: scale(1.15);
    -webkit-transform: scale(1.15);
    -ms-transform: scale(1.15);
    -o-transform: scale(1.15);
    transform: scale(1.15);
    height: 24px;
    p {
      -moz-transform: scale(1.15);
      -webkit-transform: scale(1.15);
      -ms-transform: scale(1.15);
      -o-transform: scale(1.15);
      transform: scale(1.15);
      font-size: 12px;
      line-height: 22px; } } }

@-moz-keyframes $name {
  0% {
    -moz-transform: scale(0);
    -webkit-transform: scale(0);
    -ms-transform: scale(0);
    -o-transform: scale(0);
    transform: scale(0);
    height: 0px;
    p {
      -moz-transform: scale(0);
      -webkit-transform: scale(0);
      -ms-transform: scale(0);
      -o-transform: scale(0);
      transform: scale(0);
      font-size: 0px;
      line-height: 0px; } }
  100% {
    -moz-transform: scale(1.15);
    -webkit-transform: scale(1.15);
    -ms-transform: scale(1.15);
    -o-transform: scale(1.15);
    transform: scale(1.15);
    height: 24px;
    p {
      -moz-transform: scale(1.15);
      -webkit-transform: scale(1.15);
      -ms-transform: scale(1.15);
      -o-transform: scale(1.15);
      transform: scale(1.15);
      font-size: 12px;
      line-height: 22px; } } }

@-o-keyframes $name {
  0% {
    -moz-transform: scale(0);
    -webkit-transform: scale(0);
    -ms-transform: scale(0);
    -o-transform: scale(0);
    transform: scale(0);
    height: 0px;
    p {
      -moz-transform: scale(0);
      -webkit-transform: scale(0);
      -ms-transform: scale(0);
      -o-transform: scale(0);
      transform: scale(0);
      font-size: 0px;
      line-height: 0px; } }
  100% {
    -moz-transform: scale(1.15);
    -webkit-transform: scale(1.15);
    -ms-transform: scale(1.15);
    -o-transform: scale(1.15);
    transform: scale(1.15);
    height: 24px;
    p {
      -moz-transform: scale(1.15);
      -webkit-transform: scale(1.15);
      -ms-transform: scale(1.15);
      -o-transform: scale(1.15);
      transform: scale(1.15);
      font-size: 12px;
      line-height: 22px; } } }

@keyframes $name {
  0% {
    -moz-transform: scale(0);
    -webkit-transform: scale(0);
    -ms-transform: scale(0);
    -o-transform: scale(0);
    transform: scale(0);
    height: 0px;
    p {
      -moz-transform: scale(0);
      -webkit-transform: scale(0);
      -ms-transform: scale(0);
      -o-transform: scale(0);
      transform: scale(0);
      font-size: 0px;
      line-height: 0px; } }
  100% {
    -moz-transform: scale(1.15);
    -webkit-transform: scale(1.15);
    -ms-transform: scale(1.15);
    -o-transform: scale(1.15);
    transform: scale(1.15);
    height: 24px;
    p {
      -moz-transform: scale(1.15);
      -webkit-transform: scale(1.15);
      -ms-transform: scale(1.15);
      -o-transform: scale(1.15);
      transform: scale(1.15);
      font-size: 12px;
      line-height: 22px; } } }

.component-search {
  position: relative;
  float: left; }
  .component-search input[type='text'] {
    position: relative;
    float: left;
    width: calc(100% - 3.5em);
    height: 100%;
    margin-top: -1px;
    border: 0px solid white;
    padding: 0 1em 0 2.5em;
    font-size: 0.9em;
    font-weight: 400;
    background-color: transparent;
    border-bottom: 1px solid rgba(165, 165, 165, 0.65); }
    .component-search input[type='text']:focus {
      outline: none;
      border-bottom: 1px solid #009b3a; }
  .component-search ul {
    position: relative;
    float: left;
    left: 0px;
    top: -1px;
    width: 100%;
    background-color: white;
    z-index: 1000;
    box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.16), 0 0 0 1px rgba(0, 0, 0, 0.08);
    border-radius: 0px 0px 2px 2px; }
    .component-search ul li {
      position: relative;
      float: left;
      width: 100%;
      height: auto;
      cursor: pointer; }
      .component-search ul li:hover {
        background-color: #e9ebec; }
      .component-search ul li:first-child p {
        line-height: 30px; }
      .component-search ul li:last-child p {
        line-height: 30px; }
    .component-search ul li.select {
      background-color: #e9ebec; }
      .component-search ul li.select:hover {
        font-weight: bold; }
    .component-search ul p {
      position: relative;
      float: left;
      width: calc(100% - 10px);
      padding-left: 10px;
      font-size: 15px;
      line-height: 25px;
      color: #424242;
      -webkit-touch-callout: none;
      -webkit-user-select: none;
      -khtml-user-select: none;
      -moz-user-select: none;
      -ms-user-select: none;
      user-select: none; }
      .component-search ul p span {
        font-weight: bold; }
  .component-search .line:before, .component-search .line:after {
    position: absolute;
    height: 2px;
    width: 0;
    bottom: 0;
    content: '';
    background: #009b3a;
    transition-property: all;
    transition-duration: 0.2s;
    transition-timing-function: cubic-bezier(0.55, 0, 0.1, 1); }
  .component-search .line:before {
    left: 50%; }
  .component-search .line:after {
    right: 50%; }
  .component-search input:focus ~ .line:before, .component-search input:focus ~ .line:after {
    width: 50%; }

.lupa {
  position: absolute;
  left: 0;
  margin: 0px 10px;
  top: calc(50% - 0.6em);
  width: 1.2em;
  height: 1.2em;
  fill: #424242;
  opacity: 0.4; }

.component-textarea {
  position: relative;
  float: left; }
  .component-textarea .form-item {
    position: relative;
    float: left;
    width: 100%;
    height: auto; }
    .component-textarea .form-item textarea {
      position: relative;
      height: auto;
      width: 100%;
      border: none;
      border-bottom: 1px solid #d6d6d6;
      font-size: 0.9em;
      padding: .5em 0 1em 0;
      margin-top: .5em;
      line-height: 1.4em;
      border-radius: 0;
      transition-property: all;
      transition-duration: 0.2s;
      transition-timing-function: cubic-bezier(0.55, 0, 0.1, 1);
      box-shadow: 0 0 0 0 transparent;
      background-color: transparent;
      -webkit-text-fill-background: transparent !important;
      text-fill-background: transparent !important; }
      .component-textarea .form-item textarea:focus {
        outline: none;
        border-bottom: 1px solid transparent; }
    .component-textarea .form-item label {
      position: absolute;
      top: -1em;
      left: 0;
      width: 100%;
      height: auto;
      font-weight: bold;
      color: rgba(66, 66, 66, 0.75);
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
      font-size: .72em;
      line-height: 1.4em;
      letter-spacing: .25px;
      transition-property: all;
      transition-duration: 0.2s;
      transition-timing-function: cubic-bezier(0.55, 0, 0.1, 1);
      pointer-events: none; }
    .component-textarea .form-item textarea:focus + label, .component-textarea .form-item textarea:active + label {
      font-size: .72em;
      color: #009b3a; }
    .component-textarea .form-item svg {
      position: absolute;
      right: 0.5em;
      width: 20px;
      height: 20px;
      top: 2.4em;
      -moz-transform: scale(0);
      -webkit-transform: scale(0);
      -ms-transform: scale(0);
      -o-transform: scale(0);
      transform: scale(0);
      transition-property: all;
      transition-duration: 0.3s;
      transition-timing-function: cubic-bezier(0.55, 0, 0.1, 1); }
      .component-textarea .form-item svg .fail, .component-textarea .form-item svg .success {
        display: none; }
  .component-textarea .form-item.fail label, .component-textarea .form-item.fail label.focus {
    color: #F44336; }
  .component-textarea .form-item.fail textarea {
    border: 1px solid #F44336; }
    .component-textarea .form-item.fail textarea:focus {
      border: 1px solid #F44336;
      box-shadow: 0 1px 0 0 #F44336; }
  .component-textarea .form-item.fail svg {
    -moz-transform: scale(1);
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
    fill: #F44336; }
    .component-textarea .form-item.fail svg .success {
      display: none; }
    .component-textarea .form-item.fail svg .fail {
      display: block; }
  .component-textarea .form-item.success label.focus {
    color: #01be7f; }
  .component-textarea .form-item.success textarea {
    /*border-bottom: 1px solid $theme_success;*/ }
    .component-textarea .form-item.success textarea:focus {
      border-bottom: 1px solid #01be7f;
      box-shadow: 0 1px 0 0 #01be7f; }
  .component-textarea .form-item.success svg {
    -moz-transform: scale(1);
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
    fill: #01be7f; }
    .component-textarea .form-item.success svg .success {
      display: block; }
    .component-textarea .form-item.success svg .fail {
      display: none; }

/*Setup Browser*/
input:-webkit-autofill {
  background-color: transparent !important;
  -webkit-box-shadow: 0 0 0 1000px #fff inset;
  -webkit-animation-name: autofill;
  -webkit-animation-fill-mode: both; }

input:autofill {
  background-color: transparent !important;
  box-shadow: 0 0 0 1000px #fff inset;
  animation-name: autofill;
  animation-fill-mode: both; }

@-webkit-keyframes autofill {
  to {
    color: #666;
    background: transparent; } }

@keyframes autofill {
  to {
    color: #666;
    background: transparent; } }

.bar {
  position: absolute;
  width: 100%;
  bottom: 0;
  left: 0; }

.bar:before, .bar:after {
  position: absolute;
  height: 2px;
  width: 0;
  bottom: 0;
  content: '';
  background: #009b3a;
  transition-property: all;
  transition-duration: 0.2s;
  transition-timing-function: cubic-bezier(0.55, 0, 0.1, 1); }

.bar:before {
  left: 50%; }

.bar:after {
  right: 50%; }

textarea:focus ~ .bar:before, textarea:focus ~ .bar:after {
  width: 50%; }

.bk-console-navigation {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.2); }

.console-navigation {
  position: absolute;
  top: 3em;
  width: 32em;
  height: 20em;
  background-color: white;
  margin: .5em 1.5em;
  border-radius: 4px;
  box-shadow: 0 7px 8px -4px rgba(0, 0, 0, 0.2), 0 13px 19px 2px rgba(0, 0, 0, 0.14), 0 5px 24px 4px rgba(0, 0, 0, 0.12);
  overflow: hidden;
  display: -webkit-flex;
  display: -o-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: stretch;
  -webkit-flex-direction: row;
  -moz-flex-direction: row;
  -ms-flex-direction: row;
  -o-flex-direction: row;
  -webkit-flex-wrap: nowrap;
  -moz-flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  -o-flex-wrap: nowrap;
  -webkit-align-items: stretch;
  -moz-align-items: stretch;
  -ms-align-items: stretch;
  -o-align-items: stretch; }
  .console-navigation .section, .console-navigation .service {
    position: relative;
    float: left;
    height: 100%;
    font-size: 0.8em;
    overflow-y: auto;
    transition-property: all;
    transition-duration: 0.3s;
    transition-timing-function: cubic-bezier(0.55, 0, 0.1, 1);
    width: 50%; }
    .console-navigation .section:hover, .console-navigation .service:hover {
      width: 75%; }
    .console-navigation .section header, .console-navigation .service header {
      position: relative;
      float: left;
      height: 2em;
      padding: 0;
      left: 0;
      width: 100%;
      background-color: transparent;
      border-bottom: 1px solid #E0E0E0; }
    .console-navigation .section p, .console-navigation .section a, .console-navigation .service p, .console-navigation .service a {
      position: relative;
      float: left;
      opacity: 0.8;
      padding: 0 1em;
      width: calc(100% - 2em);
      color: #5c5c5f;
      margin: 0;
      line-height: 2em;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis; }
    .console-navigation .section ul, .console-navigation .service ul {
      position: relative;
      float: left;
      width: 100%;
      height: calc(100% - 2.1em); }
    .console-navigation .section li, .console-navigation .service li {
      position: relative;
      float: left;
      padding: 0.8em 0;
      font-size: 1em;
      width: 100%;
      border-bottom: 1px solid #E0E0E0;
      cursor: pointer;
      color: #5c5c5f;
      font-weight: 500; }
      .console-navigation .section li:hover, .console-navigation .service li:hover {
        background-color: #EEEEEE; }
    .console-navigation .section li.on, .console-navigation .service li.on {
      background-color: #EEEEEE; }
  .console-navigation .service {
    border-left: 1px solid #E0E0E0; }

.page-login {
  position: relative;
  float: left;
  width: 100%;
  height: auto;
  margin: auto;
  padding: 0 1.25em;
  padding-bottom: 1em; }
  .page-login .logo {
    position: relative;
    float: left;
    width: 100%;
    height: 40px;
    fill: #009b3a;
    display: -webkit-flex;
    display: -o-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: flex;
    -webkit-flex-direction: row;
    -o-flex-direction: row;
    -moz-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-flex-wrap: wrap;
    -o-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-justify-content: flex-start;
    -o-justify-content: flex-start;
    -moz-justify-content: flex-start;
    -ms-justify-content: flex-start;
    justify-content: flex-start;
    margin-bottom: .75em; }
    .page-login .logo svg {
      position: relative;
      float: left;
      width: 110px;
      height: 100%;
      margin: 0 auto; }
  .page-login h1 {
    font-size: .9em;
    line-height: 1.25em;
    line-height: auto;
    text-align: center;
    opacity: .8;
    margin-bottom: 1.5em;
    font-weight: 600; }
    .page-login h1 span {
      opacity: 0.5; }
  .page-login form {
    position: relative;
    float: left;
    width: 100%;
    height: auto;
    margin-top: 1.6em; }
    .page-login form .fail span {
      position: absolute;
      top: 37px;
      color: #F44336;
      font-size: 11px;
      margin-top: 5px; }
  .page-login .component-input {
    margin-bottom: 2.25em;
    width: 100%; }
  .page-login .component-button {
    width: 100%; }
    .page-login .component-button button {
      width: 100%; }

@media only screen and (min-width: 46.001em) {
  .page-login {
    width: 280px;
    left: calc(50% - 140px);
    padding: 0;
    padding-bottom: 1.5em;
    margin: auto 0; } }

.form-taxes {
  padding: 0 1.5em; }
  .form-taxes p {
    position: relative;
    float: left;
    width: 100%;
    margin: 2em 0 1em;
    font-size: 1.1em;
    color: #424242; }
  .form-taxes form {
    position: relative;
    float: left;
    width: calc(100% - 3em);
    transition-property: all;
    transition-duration: 0.15s;
    transition-timing-function: cubic-bezier(0.55, 0, 0.1, 1); }
  .form-taxes .component-input, .form-taxes .component-select, .form-taxes .component-textarea {
    position: relative;
    float: left;
    width: calc(25% - 2em);
    margin: 1.5em 0;
    margin-right: 2em; }
  .form-taxes .component-button {
    margin-right: 1em; }
  .form-taxes .right {
    float: right !important; }
  .form-taxes .small {
    width: 140px; }
  .form-taxes .component-input.taxes {
    width: 30%;
    margin-right: 3.3%; }
  .form-taxes .description {
    position: relative;
    float: left;
    width: 96.4%; }
  .form-taxes .actions {
    position: relative;
    float: left;
    width: 100%;
    height: auto;
    padding: 1.5em 0; }

.fixed {
  box-shadow: -2px 6px 15px -5px rgba(0, 155, 58, 0.35);
  border-bottom: 2px solid rgba(0, 155, 58, 0.5);
  list-style: none;
  height: 65px; }
  .fixed span {
    position: relative;
    float: left;
    font-size: .74em;
    margin-bottom: .5em;
    color: #424242; }

.fixed-index {
  display: flex;
  align-items: center; }

.fixed li {
  padding: 1em;
  color: #009b3a;
  opacity: 1;
  font-size: 0.9em;
  border-bottom: 1px solid transparent; }
  .fixed li p {
    margin-top: .25em;
    font-weight: 600; }
  .fixed li:hover {
    background: transparent; }

.list-city {
  position: relative;
  float: left;
  width: 100%;
  height: calc(100% - 42px);
  overflow: hidden;
  overflow-y: auto; }
  .list-city::-webkit-scrollbar-track {
    background-color: #e9ebec; }
  .list-city::-webkit-scrollbar {
    width: 10px; }
  .list-city::-webkit-scrollbar-thumb {
    background-color: rgba(66, 66, 66, 0.5);
    border-radius: 5px; }
  .list-city::-o-scrollbar-track {
    background-color: #e9ebec; }
  .list-city::-o-scrollbar {
    width: 10px; }
  .list-city::-o-scrollbar-thumb {
    background-color: rgba(66, 66, 66, 0.5);
    border-radius: 5px; }
  .list-city::-ms-scrollbar-track {
    background-color: #e9ebec; }
  .list-city::-ms-scrollbar {
    width: 10px; }
  .list-city::-ms-scrollbar-thumb {
    background-color: rgba(66, 66, 66, 0.5);
    border-radius: 5px; }
  .list-city::-moz-scrollbar-track {
    background-color: #e9ebec; }
  .list-city::-moz-scrollbar {
    width: 10px; }
  .list-city::-moz-scrollbar-thumb {
    background-color: rgba(66, 66, 66, 0.5);
    border-radius: 5px; }
  .list-city a {
    position: relative;
    float: left;
    width: 100%;
    height: auto; }
  .list-city li {
    position: relative;
    float: left;
    width: calc(100% - 2em);
    background: transparent;
    font-family: "Roboto", sans-serif;
    color: #424242;
    font-size: .9em;
    padding: 1em;
    cursor: pointer;
    opacity: 0.9;
    font-weight: normal;
    letter-spacing: 0.5px;
    transition-property: all;
    transition-duration: 0.3s;
    transition-timing-function: cubic-bezier(0.55, 0, 0.1, 1);
    border-bottom: 1px solid rgba(0, 0, 0, 0.08); }
    .list-city li:hover {
      transition-property: all;
      transition-duration: 0;
      transition-timing-function: cubic-bezier(0.55, 0, 0.1, 1);
      opacity: 1;
      background-color: rgba(97, 97, 97, 0.085);
      border-bottom: 1px solid transparent; }
  .list-city li.active {
    color: #424242;
    background-color: rgba(97, 97, 97, 0.12);
    border-bottom: 1px solid transparent;
    font-weight: 600; }

.list-city:first-child {
  overflow-y: hidden !important;
  height: 100% !important; }

.list-taxes::-webkit-scrollbar-track {
  background-color: #e9ebec; }

.list-taxes::-webkit-scrollbar {
  width: 10px; }

.list-taxes::-webkit-scrollbar-thumb {
  background-color: rgba(66, 66, 66, 0.5);
  border-radius: 5px; }

.list-taxes::-o-scrollbar-track {
  background-color: #e9ebec; }

.list-taxes::-o-scrollbar {
  width: 10px; }

.list-taxes::-o-scrollbar-thumb {
  background-color: rgba(66, 66, 66, 0.5);
  border-radius: 5px; }

.list-taxes::-ms-scrollbar-track {
  background-color: #e9ebec; }

.list-taxes::-ms-scrollbar {
  width: 10px; }

.list-taxes::-ms-scrollbar-thumb {
  background-color: rgba(66, 66, 66, 0.5);
  border-radius: 5px; }

.list-taxes::-moz-scrollbar-track {
  background-color: #e9ebec; }

.list-taxes::-moz-scrollbar {
  width: 10px; }

.list-taxes::-moz-scrollbar-thumb {
  background-color: rgba(66, 66, 66, 0.5);
  border-radius: 5px; }

.list-taxes ul {
  position: relative;
  float: left;
  width: 100%;
  height: auto;
  min-height: 100%; }
  .list-taxes ul label {
    font-size: 0.7em;
    line-height: 1em;
    opacity: .6;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    color: #424242; }
  .list-taxes ul li {
    position: relative;
    float: left;
    width: calc(100% - 2em);
    background: transparent;
    font-family: "Roboto", sans-serif;
    color: #424242;
    font-size: .95em;
    padding: .8em 1em;
    cursor: pointer;
    font-weight: normal;
    letter-spacing: 0.5px;
    cursor: pointer;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08); }
    .list-taxes ul li p {
      font-size: .9em;
      color: #424242;
      margin: .25em 0 .3em 0;
      line-height: 1.3em;
      cursor: pointer;
      opacity: .9;
      font-weight: 400; }
    .list-taxes ul li:hover {
      background-color: rgba(97, 97, 97, 0.085);
      border-bottom: 1px solid rgba(0, 0, 0, 0.02); }
      .list-taxes ul li:hover .ember-hold-button.rectangle {
        display: block; }
    .list-taxes ul li p, .list-taxes ul li label {
      position: relative;
      cursor: pointer; }
    .list-taxes ul li label, .list-taxes ul li p.description {
      width: 100%; }
    .list-taxes ul li p.description {
      font-size: 1em; }
    .list-taxes ul li .tax-rates {
      margin: 10px 0;
      clear: both; }
      .list-taxes ul li .tax-rates p {
        opacity: .8;
        font-size: 12px;
        margin: 0;
        float: inherit; }
      .list-taxes ul li .tax-rates .withholding {
        clear: both; }
        .list-taxes ul li .tax-rates .withholding p:first-of-type {
          font-weight: 600;
          opacity: .9; }
        .list-taxes ul li .tax-rates .withholding ul, .list-taxes ul li .tax-rates .withholding span {
          float: inherit;
          opacity: .8;
          font-size: 12px;
          color: #424242; }
        .list-taxes ul li .tax-rates .withholding span {
          margin-right: 10px; }
    .list-taxes ul li .taxe {
      display: flex; }
    .list-taxes ul li .tax {
      position: relative;
      width: 100%;
      display: flex;
      align-items: center; }
      .list-taxes ul li .tax p {
        width: auto;
        margin-right: 10px;
        line-height: 1.4em;
        font-size: 1.2em;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        font-weight: 500;
        color: #424242; }
        .list-taxes ul li .tax p small {
          color: #888; }
      .list-taxes ul li .tax span {
        color: #888; }
    .list-taxes ul li .ember-hold-button.rectangle {
      height: inherit;
      line-height: inherit;
      min-width: inherit;
      background-color: transparent;
      border-radius: .2em;
      margin-left: 20px;
      padding: .30em 1em;
      font-size: .74em;
      letter-spacing: .4px;
      font-weight: bold;
      color: #424242;
      border: 1px solid #424242;
      transition-property: all;
      transition-duration: 0.3s;
      transition-timing-function: cubic-bezier(0.55, 0, 0.1, 1);
      display: none;
      z-index: 5; }
      .list-taxes ul li .ember-hold-button.rectangle:hover {
        color: #F44336;
        border: 1px solid #F44336;
        box-shadow: 0 0 0 1px #F44336; }
      .list-taxes ul li .ember-hold-button.rectangle span {
        z-index: -1;
        background-color: #F44336;
        height: 3px;
        bottom: -1px;
        left: -1px; }

.empty-taxes svg {
  position: relative;
  float: left;
  width: 300px;
  height: 300px;
  left: calc(50% - 150px);
  fill: #424242; }

.message-box {
  position: fixed;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  bottom: 0;
  background-color: rgba(255, 255, 255, 0.75); }

.message-box-content {
  position: absolute;
  width: 18em;
  height: auto;
  padding: 1.2em 1.5em;
  background-color: #F44336;
  left: calc(50% - 10.5em);
  box-shadow: 0 0.9em 0.9em rgba(0, 0, 0, 0.12);
  border-radius: 0 0 0.25em 0.25em; }
  .message-box-content p {
    position: relative;
    float: left;
    width: 100%;
    text-align: center;
    font-size: 1em;
    color: white;
    font-weight: 300;
    line-height: 1em;
    margin: 1.1em 0 1.5em 0; }
  .message-box-content .buttons {
    position: relative;
    float: left;
    width: 100%;
    height: auto; }
  .message-box-content .component-button {
    position: relative;
    float: left;
    margin: auto;
    width: calc(50% - 0px);
    display: -webkit-flex;
    display: -o-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: flex;
    -webkit-flex-direction: row;
    -o-flex-direction: row;
    -moz-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-flex-wrap: wrap;
    -o-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-justify-content: flex-start;
    -o-justify-content: flex-start;
    -moz-justify-content: flex-start;
    -ms-justify-content: flex-start;
    justify-content: flex-start; }
  .message-box-content .component-button button {
    border: 1px solid rgba(255, 255, 255, 0.5) !important;
    margin: auto; }

.search {
  position: relative;
  float: left;
  border-radius: 2px 2px 0px 0;
  background-color: rgba(255, 255, 255, 0.88);
  border: 0px solid transparent;
  background-color: white;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.16), 0 0 0 1px rgba(0, 0, 0, 0.08); }
  .search input[type='text'] {
    position: relative;
    float: left;
    width: calc(100% - 40px);
    height: 100%;
    margin-top: -1px;
    border: 0px solid white;
    padding-left: 10px;
    font-size: 14px;
    font-weight: 400;
    background-color: transparent; }
  .search svg {
    position: absolute;
    right: 0px;
    margin: 0px 10px;
    top: calc(50% - 12px);
    padding: 0px;
    width: 24px;
    height: 24px;
    fill: #424242;
    opacity: 0.4; }
  .search ul {
    position: relative;
    float: left;
    left: 0px;
    top: -1px;
    width: 100%;
    background-color: white;
    z-index: 1000;
    box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.16), 0 0 0 1px rgba(0, 0, 0, 0.08);
    border-radius: 0px 0px 2px 2px; }
    .search ul li {
      position: relative;
      float: left;
      width: 100%;
      height: auto;
      cursor: pointer; }
      .search ul li:hover {
        background-color: #e9ebec; }
      .search ul li:first-child p {
        line-height: 30px; }
      .search ul li:last-child p {
        line-height: 30px; }
    .search ul li.select {
      background-color: #e9ebec; }
      .search ul li.select:hover {
        font-weight: bold; }
    .search ul p {
      position: relative;
      float: left;
      width: calc(100% - 10px);
      padding-left: 10px;
      font-size: 15px;
      line-height: 25px;
      color: #424242;
      -webkit-touch-callout: none;
      -webkit-user-select: none;
      -khtml-user-select: none;
      -moz-user-select: none;
      -ms-user-select: none;
      user-select: none; }
      .search ul p span {
        font-weight: bold; }

.component-select {
  position: relative;
  float: left;
  margin: 10px 0; }
  .component-select .form-item {
    position: relative;
    float: left;
    width: 100%;
    height: auto;
    min-height: 3.8em; }
    .component-select .form-item input[type='text'] {
      position: relative;
      float: left;
      border: 0px solid transparent;
      height: 2.8em;
      width: calc(100% - 30px);
      padding-right: 30px;
      font-size: 14px;
      border-bottom: 1px solid #d6d6d6;
      transition-property: all;
      transition-duration: 0.3s;
      transition-timing-function: cubic-bezier(0.55, 0, 0.1, 1);
      box-shadow: 0 0 0 0 transparent;
      background-color: transparent;
      cursor: pointer; }
      .component-select .form-item input[type='text']:focus {
        background-color: transparent !important;
        border-bottom: 1px solid #009b3a;
        box-shadow: 0 1px 0 0 #009b3a;
        outline: none; }
    .component-select .form-item label {
      position: relative;
      float: left;
      width: 100%;
      height: auto;
      top: 2em;
      color: #d6d6d6;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
      font-size: 0.9em;
      transition-property: all;
      transition-duration: 0.3s;
      transition-timing-function: cubic-bezier(0.55, 0, 0.1, 1); }
      .component-select .form-item label span {
        opacity: 0.8;
        font-size: 12px; }
    .component-select .form-item label.active {
      top: 0px;
      line-height: 1em;
      font-size: 0.7em; }
      .component-select .form-item label.active span {
        opacity: 0.5;
        font-size: 10px; }
    .component-select .form-item label.focus {
      color: #009b3a; }
    .component-select .form-item svg {
      position: absolute;
      right: 5px;
      width: 20px;
      height: 20px;
      top: 1.8em;
      -moz-transform: scale(0);
      -webkit-transform: scale(0);
      -ms-transform: scale(0);
      -o-transform: scale(0);
      transform: scale(0);
      transition-property: all;
      transition-duration: 0.3s;
      transition-timing-function: cubic-bezier(0.55, 0, 0.1, 1);
      pointer-events: none; }
      .component-select .form-item svg .fail, .component-select .form-item svg .success {
        display: none; }
    .component-select .form-item svg.select-arrow {
      position: absolute;
      right: 0px;
      width: 20px;
      height: 20px;
      top: 1.65em;
      display: block;
      -moz-transform: scale(1);
      -webkit-transform: scale(1);
      -ms-transform: scale(1);
      -o-transform: scale(1);
      transform: scale(1);
      fill: #d6d6d6; }
  .component-select .options {
    position: absolute;
    float: left;
    width: 100%;
    height: auto;
    background-color: white;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    border-left: 1px solid rgba(0, 0, 0, 0.1);
    border-right: 1px solid rgba(0, 0, 0, 0.1);
    box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.15);
    z-index: 1000;
    top: 3.3em; }
    .component-select .options ul {
      max-height: 194px; }
  .component-select .complete-options svg {
    position: absolute;
    left: 0px;
    margin: 19.5px 15px;
    opacity: 0.3;
    width: 18px;
    height: 18px;
    transition-property: all;
    transition-duration: 0.3s;
    transition-timing-function: cubic-bezier(0.55, 0, 0.1, 1);
    pointer-events: none; }
  .component-select .complete-options svg.focus {
    opacity: 1;
    fill: #009b3a; }
  .component-select .complete-options input {
    position: relative;
    float: left;
    width: calc(100% - 48px);
    height: 32px;
    margin: 10px 8px;
    border: 1px solid #EEEEEE;
    border-radius: 2px;
    padding-left: 28px;
    font-size: 14px;
    transition-property: all;
    transition-duration: 0.3s;
    transition-timing-function: cubic-bezier(0.55, 0, 0.1, 1); }
    .component-select .complete-options input:focus {
      box-shadow: 0px 0px 2px #009b3a;
      border: 1px solid #009b3a; }
  .component-select .form-item.fail label, .component-select .form-item.fail label.focus {
    color: #F44336; }
  .component-select .form-item.fail input[type='text'] {
    border-bottom: 1px solid #F44336;
    width: calc(100% - 60px);
    padding-right: 60px; }
    .component-select .form-item.fail input[type='text']:focus {
      border-bottom: 1px solid #F44336;
      box-shadow: 0 1px 0 0 #F44336; }
  .component-select .form-item.fail svg {
    background: red;
    -moz-transform: scale(1);
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
    fill: #F44336; }
    .component-select .form-item.fail svg .success {
      display: none; }
    .component-select .form-item.fail svg .fail {
      display: block; }
  .component-select .form-item.fail svg.select-arrow {
    right: 32px;
    fill: #F44336; }
  .component-select .form-item.success label.focus {
    color: #01be7f; }
  .component-select .form-item.success input[type='text'] {
    border-bottom: 1px solid #01be7f;
    width: calc(100% - 60px);
    padding-right: 60px; }
    .component-select .form-item.success input[type='text']:focus {
      border-bottom: 1px solid #01be7f;
      box-shadow: 0 1px 0 0 #01be7f; }
  .component-select .form-item.success svg {
    background: red;
    -moz-transform: scale(1);
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
    fill: #01be7f; }
    .component-select .form-item.success svg .success {
      display: block; }
    .component-select .form-item.success svg .fail {
      display: none; }
  .component-select .form-item.success svg.select-arrow {
    right: 32px;
    fill: #01be7f; }

table.component-table {
  position: relative;
  float: left; }
  table.component-table p {
    position: relative;
    float: left;
    width: 100%;
    text-align: left;
    color: #424242;
    font-size: 14px;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none; }
  table.component-table tbody, table.component-table thead, table.component-table tfoot {
    position: relative;
    float: left;
    width: 100%; }
  table.component-table thead {
    height: 50px;
    background-color: #e9ebec;
    line-height: 50px; }
    table.component-table thead th {
      position: relative;
      float: left;
      height: 100%; }
    table.component-table thead tr {
      position: relative;
      float: left;
      padding: 0px 20px;
      width: calc(100% - 40px);
      height: 100%; }
      table.component-table thead tr input[type='checkbox'] {
        position: relative;
        float: left;
        width: 14px;
        height: 14px;
        margin: 18px 12px 6px 0px; }
      table.component-table thead tr button {
        position: relative;
        float: left;
        width: auto;
        height: 30px;
        padding: 0px 10px;
        color: #424242;
        border: 1px solid rgba(30, 30, 35, 0.3);
        letter-spacing: 0.5px;
        background-color: white;
        margin: 9px 6px;
        border-radius: 2px;
        font-size: 12px;
        font-weight: bold; }
      table.component-table thead tr button.red {
        background-color: red; }
  table.component-table tbody {
    height: calc(100% - 84px); }
    table.component-table tbody tr {
      position: relative;
      float: left;
      padding: 0px 20px;
      width: calc(100% - 40px);
      height: 28px;
      line-height: 28px;
      border-bottom: 1px solid rgba(0, 0, 0, 0.12);
      cursor: pointer; }
      table.component-table tbody tr:hover {
        background-color: #FFFDE7;
        border-bottom: 1px solid rgba(0, 0, 0, 0.06); }
    table.component-table tbody tr.check {
      background-color: #FFF9C4; }
      table.component-table tbody tr.check p {
        font-weight: bold;
        opacity: 1; }
      table.component-table tbody tr.check:hover {
        background-color: #FFF59D; }
    table.component-table tbody p {
      opacity: 0.8;
      font-size: 13px;
      font-weight: bold; }
    table.component-table tbody input[type='checkbox'] {
      position: relative;
      float: left;
      width: 14px;
      height: 14px;
      margin: 6px 12px 6px 0px; }
  table.component-table tfoot {
    height: 34px;
    line-height: 34px;
    font-size: 12px;
    background-color: #e9ebec; }
    table.component-table tfoot p {
      opacity: 0.6; }
    table.component-table tfoot tr, table.component-table tfoot td {
      position: relative;
      float: left;
      width: 100%;
      height: 100%; }
    table.component-table tfoot td {
      padding: 0px 20px;
      width: calc(100% - 40px); }

.left-content {
  position: relative;
  float: left;
  width: 300px;
  height: calc(100% - 2px);
  border-right: 1px solid rgba(0, 0, 0, 0.1); }
  .left-content .component-search {
    height: 2.6em;
    margin: 0.7em;
    width: calc(100% - 1.4em); }
  .left-content .list-city {
    height: calc(100% - 4.04em); }

.main-content {
  position: relative;
  float: left;
  width: calc(100% - 301px);
  height: calc(100% - 0px);
  overflow: hidden;
  display: -webkit-flex;
  display: -o-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: flex;
  -webkit-flex-direction: row;
  -o-flex-direction: row;
  -moz-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-flex-wrap: wrap;
  -o-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-start;
  -o-justify-content: flex-start;
  -moz-justify-content: flex-start;
  -ms-justify-content: flex-start;
  justify-content: flex-start; }
  .main-content h1 {
    position: relative;
    float: left;
    width: 100%;
    color: #009b3a;
    line-height: 3em;
    font-size: 1.4em;
    font-weight: normal;
    margin: 0.5em 0;
    text-align: left;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis; }

.prefecture-taxes {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0; }
  .prefecture-taxes h1 {
    padding: 0 .8em; }
  .prefecture-taxes header {
    padding: 0;
    width: 100%;
    display: flex;
    box-shadow: none;
    height: auto;
    padding: .6em 0; }
  .prefecture-taxes .lupa-taxNumber {
    position: absolute;
    left: 113px;
    margin: 0px 10px;
    top: calc(50% - 0.9em);
    width: 1.2em;
    height: 1.2em;
    fill: #424242;
    opacity: 0.4; }
  .prefecture-taxes .component-search {
    height: 2.6em;
    width: calc(100% - 8em);
    float: right; }
    .prefecture-taxes .component-search input[type='text'] {
      width: calc(100% - 5em); }
    .prefecture-taxes .component-search .line:before {
      left: 48.5%; }
  .prefecture-taxes .component-button {
    margin: .35em 1em;
    float: left; }
  .prefecture-taxes .list-taxes {
    position: relative;
    float: left;
    width: 100%;
    height: calc(100% - 133px);
    overflow-y: auto; }
  .prefecture-taxes .search-taxNumber {
    position: relative;
    height: 2.6em;
    width: calc(100% - 8em);
    float: right; }
    .prefecture-taxes .search-taxNumber input {
      position: relative;
      float: left;
      width: calc(100% - 5em);
      height: 41px;
      margin-top: -1px;
      border: 0px solid white;
      padding: 0 1em 0 2.5em;
      font-size: 0.9em;
      font-weight: 400;
      background-color: transparent;
      border: 0px solid white;
      border-bottom: 1px solid rgba(165, 165, 165, 0.65); }
    .prefecture-taxes .search-taxNumber .line:before {
      left: 48.5%; }

.empty-taxes {
  position: relative;
  float: left;
  width: calc(100% - 2em);
  font-size: 1em;
  color: #424242;
  margin: 1em;
  opacity: .5;
  margin: auto; }
  .empty-taxes h3 {
    position: relative;
    float: left;
    width: 100%;
    color: #424242;
    line-height: 3em;
    font-size: 1.4em;
    font-weight: 400;
    text-align: center;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis; }
  .empty-taxes .map-svg {
    margin: 0;
    opacity: .75; }

label.empty-taxes {
  margin: .5em 1em; }

.form-taxes {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow-y: auto; }

#login {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  display: -webkit-flex;
  display: -o-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: flex;
  -webkit-flex-direction: row;
  -o-flex-direction: row;
  -moz-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-flex-wrap: wrap;
  -o-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-start;
  -o-justify-content: flex-start;
  -moz-justify-content: flex-start;
  -ms-justify-content: flex-start;
  justify-content: flex-start; }
