@charset "UTF-8";
@-moz-keyframes spin {
  100% {
    -moz-transform: rotate(360deg); } }

@-webkit-keyframes spin {
  100% {
    -webkit-transform: rotate(360deg); } }

@keyframes spin {
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg); } }

/* file upload */
body.gallery {
  background-color: #000000ab;
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 55px; }

html {
  font-family: 'Arimo', sans-serif;
  font-size: 100%;
  height: 100%;
  min-height: 100%; }
  html body {
    direction: rtl;
    height: auto;
    min-height: 100%; }
    html body ul {
      list-style-type: none; }
    html body button {
      outline: none; }
    html body .fa {
      font-size: 20px; }

.splash {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%); }
  .splash h1 {
    font-size: 2.5em;
    position: absolute;
    top: 0px;
    left: -58px;
    z-index: 1;
    animation-name: color-change;
    animation-duration: .5s;
    -webkit-animation-name: color-change;
    -webkit-animation-duration: .5s;
    animation-iteration-count: infinite;
    animation-direction: alternate; }
  .splash loading {
    z-index: 2; }

.loading-splash {
  width: 100px;
  margin: 0 auto; }
  .loading-splash svg {
    height: 100%;
    width: 100%; }

.loading-overlay {
  width: 100%;
  height: 100%;
  position: fixed;
  left: 0;
  z-index: 2;
  top: 0;
  background-color: rgba(21, 21, 21, 0.7);
  display: none; }

.loading-overlay.show {
  display: block; }

.pika-time {
  width: 100px;
  margin: 0 auto;
  margin-bottom: 5px;
  direction: ltr; }
  .pika-time select {
    padding: 5px 10px;
    margin: 0 2px; }

.info-window {
  color: #193441;
  padding: 10px;
  min-width: 230px;
  text-align: right; }
  .info-window ul {
    margin: 0;
    padding: 0;
    margin-bottom: 10px; }
    .info-window ul label {
      font-weight: bold;
      margin-left: 10px;
      width: 80px;
      text-align: left;
      display: inline-block; }
  .info-window button {
    display: inline-block;
    text-align: center;
    border: none;
    background-color: #3e606f;
    padding: 5px 15px;
    color: white;
    vertical-align: middle;
    margin: 0 5px; }

.cropArea {
  background-color: white;
  overflow: hidden;
  width: 500px;
  height: 300px; }

.cropper {
  position: fixed;
  width: 100%;
  top: 0;
  height: 100%;
  background: -webkit-radial-gradient(center, ellipse cover, rgba(0, 0, 0, 0.1) 0, rgba(0, 0, 0, 0.9) 100%);
  z-index: 99999999;
  left: 0; }
  .cropper .cropArea {
    background-color: white;
    overflow: hidden;
    width: 50%;
    height: 70%;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center; }
    .cropper .cropArea button {
      padding: 5px 10px;
      color: white;
      background-color: cadetblue;
      margin: 10px 0;
      border: none; }

.show-per-page {
  float: left;
  margin-left: 10px;
  display: inline-block;
  vertical-align: middle;
  margin-top: 15px; }
  .show-per-page select {
    padding: 3px 5px; }

.leasing {
  margin-top: 40px; }
  .leasing .input-group {
    margin: 0; }

.input-group .ui-control.disabled {
  opacity: .5; }
  .input-group .ui-control.disabled:before {
    display: none; }

.input-group .ui-control.readonly {
  pointer-events: none; }

.input-group .ui-control.disabled.readonly {
  opacity: 1; }
  .input-group .ui-control.disabled.readonly .line {
    border: none; }

.vehicle-page .save {
  margin-top: 12px; }

.leasing.disabled > div:last-child {
  opacity: .1;
  pointer-events: none; }

.content ui-view {
  display: block;
  height: 100%; }

.page {
  padding: 10px 20px 15px 20px;
  box-sizing: border-box;
  height: 100%;
  min-height: 768px;
  position: relative; }
  .page > .map {
    height: 485px; }
    .page > .map > div {
      height: 100%;
      width: 100%; }
      .page > .map > div map {
        height: 100%;
        width: 100%; }
  .page .page-title {
    color: black;
    margin: 30px 0px 10px 0;
    font-weight: normal;
    position: relative;
    display: inline-block;
    color: white;
    background-color: #13A89E;
    right: -30px;
    padding: 9px 20px;
    font-size: 18px;
    position: relative; }
    .page .page-title:first-of-type:before {
      content: '';
      position: absolute;
      left: -38px;
      top: 0px;
      border: 19px solid #13A89E;
      border-left-color: transparent;
      border-top-color: transparent;
      border-bottom-color: transparent;
      z-index: 2; }
    .page .page-title:not(:first-of-type) {
      background-color: #2dd897;
      padding-right: 30px;
      border-top-left-radius: 0;
      border-bottom-left-radius: 0; }
      .page .page-title:not(:first-of-type):before {
        content: '';
        position: absolute;
        right: 0;
        top: 0;
        border: 19px solid white;
        border-left-color: transparent;
        border-top-color: transparent;
        border-bottom-color: transparent; }
  .page .view-type {
    margin-bottom: 10px;
    float: right; }
    .page .view-type button {
      background-color: transparent;
      font-size: 1.2em;
      padding: 3px 10px;
      border: none;
      color: #193441;
      outline: none; }
    .page .view-type button.active {
      box-shadow: 1px 2px 5px silver inset; }

.angular-tooltip {
  background: #fff;
  padding: 3px 10px;
  border: 1px solid #000;
  color: black;
  font-size: 14px; }
  .angular-tooltip .alert-item {
    border-bottom: 1px solid #e8e8e8;
    padding: 5px 0; }
    .angular-tooltip .alert-item:last-of-type {
      border: none; }
  .angular-tooltip:before {
    border-width: 6px; }
  .angular-tooltip:after {
    border-width: 4px; }

.ui-badge {
  border-radius: 50%;
  width: 10px;
  height: 10px;
  font-family: 'FontAwesome';
  font-weight: normal;
  font-size: 14px;
  line-height: 16px;
  content: "\f12a";
  color: #e67c7c;
  cursor: pointer;
  background-color: white; }

.ui-badge.not-mine {
  background-color: #e67c7c; }

.ui-badge.outside-working-hours {
  background-color: orange; }

.ui-badge.more-than-250 {
  background-color: #4f9815; }

.ui-badge.same-street {
  background-color: #1351a9; }

.ui-badge.amount-changed {
  background-color: black; }

.ui-badge.overpay {
  background-color: red; }

.ui-form {
  padding: 0 30px; }

.ui-input-icon {
  width: 38px;
  height: 38px;
  display: inline-block;
  vertical-align: middle;
  color: #193441;
  font-size: 1em;
  text-align: center; }

.ui-checkbox label {
  display: inline-block;
  vertical-align: middle; }

.ui-checkbox span {
  display: block;
  position: relative;
  padding-right: 30px;
  line-height: 20px;
  cursor: pointer; }
  .ui-checkbox span:after {
    content: '';
    width: 18px;
    height: 18px;
    background-color: white;
    position: absolute;
    right: 0; }

.ui-checkbox input[type=checkbox] {
  opacity: 0;
  position: absolute; }
  .ui-checkbox input[type=checkbox]:checked + span:before {
    content: '✓';
    position: absolute;
    color: black;
    z-index: 1;
    width: 20px;
    text-align: center;
    font-size: 1.2em;
    font-weight: bold;
    top: 0px;
    right: -1px; }

.ui-button {
  background-color: #3e606f;
  color: white;
  font-size: 1.2em;
  text-align: center;
  border: none;
  width: 200px;
  padding: 12px 0;
  display: block;
  margin: 0 auto; }

.ui-form-button.save {
  margin-right: 35px; }
  .ui-form-button.save button {
    background-color: #13A89E; }
  .ui-form-button.save button.save-button {
    background-color: #19a919; }
  .ui-form-button.save button[type=reset] {
    background-color: #860000; }

.ui-form-button.export button {
  background-color: #13A89E;
  position: relative; }

.ui-form-button.inline {
  display: inline-block;
  vertical-align: middle;
  margin-top: 15px;
  margin-bottom: 5px; }

.ui-form-button.submittion {
  margin-top: 20px; }

.ui-form-button.block {
  display: block; }

.ui-form-button button {
  background-color: #3e606f;
  color: white;
  font-size: .9em;
  text-align: center;
  border: none;
  padding: 10px 15px;
  min-width: 55px;
  display: inline-block;
  vertical-align: middle;
  margin: 0 2px 0 0;
  transition: transform .1s ease-in-out; }
  .ui-form-button button:hover {
    box-shadow: 0px 0px 2px #193441; }
  .ui-form-button button:active {
    transform: scale(0.95); }

.ui-form-control.inline {
  display: inline-block;
  vertical-align: middle; }

.ui-form-control.block {
  display: block; }

.ui-form-control input {
  border: none;
  background-color: #e3e3e3;
  padding: 6px 10px 6px 35px;
  width: 135px; }
  .ui-form-control input::-webkit-input-placeholder {
    direction: rtl; }
  .ui-form-control input::-moz-placeholder {
    direction: rtl; }
  .ui-form-control input:-ms-input-placeholder {
    direction: rtl; }
  .ui-form-control input:-moz-placeholder {
    direction: rtl; }

.ui-form-control select {
  border: none;
  background-color: #e3e3e3;
  padding: 6px 10px 6px 35px;
  width: 135px;
  -webkit-appearance: none;
  -moz-appearance: none;
  -ms-appearance: none;
  -o-appearance: none;
  appearance: none; }
  .ui-form-control select::-webkit-input-placeholder {
    direction: rtl; }
  .ui-form-control select::-moz-placeholder {
    direction: rtl; }
  .ui-form-control select:-ms-input-placeholder {
    direction: rtl; }
  .ui-form-control select:-moz-placeholder {
    direction: rtl; }

.ui-form-control label {
  position: relative;
  z-index: 1; }
  .ui-form-control label span {
    margin: 0 10px; }
  .ui-form-control label i {
    position: absolute;
    z-index: 2;
    left: 10px;
    top: 1px;
    pointer-events: none;
    color: #193441; }
    .ui-form-control label i:hover {
      color: white; }

section {
  position: relative; }
  section div.loading {
    position: absolute;
    top: 40px;
    left: 50%;
    padding: 15px 40px;
    background-color: #13A89E;
    color: white;
    box-sizing: border-box; }

.scrollableContainer table thead tr th {
  position: static !important; }

table.table {
  color: white;
  width: 100%;
  font-size: .95em;
  text-align: center;
  filter: blur(0px);
  transition: filter .1s ease-in-out;
  position: relative;
  background-color: #c8e3ff;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  font-family: sans-serif; }
  table.table thead tr {
    background: #3e606f; }
    table.table thead tr th {
      border: 1px solid #b5b3b3;
      border-top: none;
      font-weight: normal;
      padding: 5px;
      position: sticky;
      top: 0px;
      background-color: #3e606f;
      z-index: 2; }
    table.table thead tr th.sortable:hover {
      text-decoration: underline;
      cursor: pointer; }
    table.table thead tr th.sortable.active {
      background-image: linear-gradient(#193441, #3e606f); }
    table.table thead tr th.sortable.active.desc:after {
      content: '▼';
      color: white;
      position: absolute;
      font-size: 0.8em;
      left: 5px;
      top: 9px; }
    table.table thead tr th.sortable.active.asc:after {
      content: '▲';
      color: white;
      position: absolute;
      font-size: 0.8em;
      left: 5px;
      top: 9px; }
  table.table tbody.active {
    box-shadow: 0px 0px 30px #737373;
    outline: 1px solid #b1b1b1; }
  table.table tbody tr.paid {
    background-color: #92e0bf; }
    table.table tbody tr.paid td input {
      display: none; }
  table.table tbody tr:not(.paid):hover {
    background-color: rgba(227, 227, 227, 0.46); }
    table.table tbody tr:not(.paid):hover .actions {
      opacity: 1; }
  table.table tbody tr td {
    border: 1px solid #b5b3b3;
    color: black;
    padding: 3px 5px 3px 3px;
    height: 32px;
    max-width: 500px;
    min-width: 32px; }
    table.table tbody tr td .pay-report {
      background-color: #3e606f;
      border-radius: 3px;
      padding: 5px;
      font-size: 13px;
      cursor: pointer;
      color: white;
      text-decoration: none; }
    table.table tbody tr td a {
      text-decoration: underline;
      color: inherit; }
  table.table tbody tr td.actions.active {
    background-color: white; }
  table.table tbody tr td.actions .fa-search-plus {
    cursor: pointer; }
  table.table tbody tr td.actions button {
    background-color: #193441;
    color: white;
    border: none;
    padding: 5px 15px;
    font-size: .9em;
    transition: transform .1s ease-in-out;
    text-decoration: none; }
    table.table tbody tr td.actions button:hover {
      box-shadow: 0px 0px 2px #193441; }
    table.table tbody tr td.actions button:active {
      transform: scale(0.95); }
  table.table tbody tr td.actions a {
    background-color: #193441;
    color: white;
    border: none;
    padding: 5px 15px;
    font-size: .9em;
    transition: transform .1s ease-in-out;
    text-decoration: none; }
    table.table tbody tr td.actions a:hover {
      box-shadow: 0px 0px 2px #193441; }
    table.table tbody tr td.actions a:active {
      transform: scale(0.95); }
  table.table tbody tr td.actions button.delete {
    background: #3e606f;
    color: white;
    padding: 2px 10px; }
  table.table tbody tr td.actions a.delete {
    background: #3e606f;
    color: white;
    padding: 2px 10px; }
  table.table tbody tr td.actions button.warrent {
    background: transparent;
    color: black; }
  table.table tbody tr td.actions a.warrent {
    background: #f93838;
    color: white; }
  table.table tfoot {
    border: 1px solid white; }
    table.table tfoot tr {
      background: white;
      color: black; }
      table.table tfoot tr th {
        padding: 10px 0; }
        table.table tfoot tr th:empty {
          border: none; }
        table.table tfoot tr th:not(:empty) {
          background: rgba(52, 152, 219, 0.33); }
      table.table tfoot tr td {
        padding: 10px 0; }
        table.table tfoot tr td:empty {
          border: none; }
        table.table tfoot tr td:not(:empty) {
          background: rgba(52, 152, 219, 0.33); }

table.table.minimal.tiny {
  width: 300px;
  margin: 0 auto; }

table.table.minimal.medium {
  width: 500px;
  margin: 0 auto; }

table.table.minimal tr {
  color: black;
  background-color: white; }

table.table.minimal th {
  font-weight: bold;
  background-color: #eaeaea; }

table.table.minimal .filler-100 {
  width: 100px; }

table.table.minimal .filler-200 {
  width: 200px; }

table.table.minimal .filler-300 {
  width: 300px; }

table.table.loading {
  pointer-events: none;
  background-image: none;
  filter: grayscale(100%); }
  table.table.loading:before {
    content: "\f1ce";
    font-family: 'FontAwesome';
    position: absolute;
    left: 0;
    top: -20px;
    color: #193441;
    -webkit-animation: spin 1s linear infinite;
    -moz-animation: spin 1s linear infinite;
    animation: spin 1s linear infinite; }
  table.table.loading td {
    color: silver !important; }
    table.table.loading td button {
      opacity: .1; }

.table.wizard-table thead th {
  position: static; }

table.table.inner-details {
  border: none;
  background-image: none;
  background-color: white; }
  table.table.inner-details tbody {
    max-height: 500px;
    overflow-y: auto; }
  table.table.inner-details td {
    border: none;
    border-bottom: 1px solid silver; }
  table.table.inner-details thead th {
    background-color: #65bb9e;
    border-color: white; }
  table.table.inner-details thead tr:hover {
    background-color: #3e606f !important; }
  table.table.inner-details tr:hover {
    background-color: inherit !important; }
  table.table.inner-details .error {
    background: red; }

div.paging {
  display: inline-block;
  vertical-align: middle; }
  div.paging .results-message {
    display: block;
    margin: 5px 0; }
  div.paging ul {
    direction: ltr;
    margin-top: 10px;
    padding: 0;
    margin: 0;
    display: inline-block; }
    div.paging ul li {
      display: inline-block;
      vertical-align: middle;
      background-color: #13A89E;
      color: white;
      min-width: 32px;
      text-align: center;
      cursor: pointer;
      margin: 0 1px;
      font-size: .95em; }
      div.paging ul li a {
        color: white;
        text-decoration: none;
        display: block;
        height: 100%;
        width: 100%;
        padding: 5px 0; }
      div.paging ul li:hover {
        box-shadow: 0px 0px 2px #193441; }
    div.paging ul li.current {
      position: relative;
      pointer-events: none; }
      div.paging ul li.current:after {
        content: "\f0d8";
        font-family: FontAwesome;
        position: absolute;
        bottom: -14px;
        left: 12px;
        color: #193441;
        font-size: 1em; }
    div.paging ul li.next {
      background-color: #193441;
      width: 35px; }
    div.paging ul li.previous {
      background-color: #193441;
      width: 35px; }
    div.paging ul li.disabled {
      opacity: .1;
      cursor: default;
      pointer-events: none; }
    div.paging ul li.page-number.disabled {
      opacity: 1;
      background: transparent;
      color: black; }
      div.paging ul li.page-number.disabled a {
        color: black; }

.color-sample {
  width: 10px;
  height: 10px;
  display: inline-block;
  position: absolute;
  right: 10px;
  top: 10px; }

.color-sample.white {
  background-color: white; }

.color-sample.black {
  background-color: black; }

.color-sample.blue {
  background-color: blue; }

.color-sample.red {
  background-color: red; }

.color-sample.green {
  background-color: green; }

.color-sample.yellow {
  background-color: yellow; }

.color-sample.pink {
  background-color: #E81E74; }

angucomplete-alt {
  width: 100%;
  position: relative; }
  angucomplete-alt .angucomplete-holder {
    width: 100%;
    position: relative; }
  angucomplete-alt .angucomplete-dropdown {
    position: absolute;
    z-index: 10;
    width: 100%;
    background: white;
    box-shadow: 2px 2px 2px silver;
    max-height: 200px;
    overflow-y: auto;
    text-align: right; }
    angucomplete-alt .angucomplete-dropdown .angucomplete-row {
      padding: 15px 10px;
      transition: background .2s linear; }
      angucomplete-alt .angucomplete-dropdown .angucomplete-row:hover {
        background-color: #e0e0e0; }
    angucomplete-alt .angucomplete-dropdown .angucomplete-row.angucomplete-selected-row {
      background-color: #e0e0e0; }

.input-group {
  margin: 15px auto;
  width: 100%;
  box-sizing: border-box;
  position: relative;
  padding: 12px 8px 0px 8px;
  z-index: 1; }
  .input-group autocomplete {
    position: absolute;
    z-index: 2;
    top: 100%;
    background: white;
    width: 100%;
    box-shadow: 2px 2px 2px silver;
    max-height: 200px;
    overflow-y: auto;
    text-align: right; }
    .input-group autocomplete ul {
      margin: 0;
      padding: 0;
      list-style-type: none; }
      .input-group autocomplete ul li {
        padding: 15px 10px; }
      .input-group autocomplete ul li.hover {
        background-color: #e0e0e0; }
  .input-group .ui-control {
    filter: blur(0px);
    position: relative;
    direction: rtl; }
    .input-group .ui-control input {
      vertical-align: bottom;
      border: none;
      color: #193441;
      box-sizing: border-box;
      outline: none;
      font-size: .9em;
      padding: 0;
      margin-bottom: 2px;
      width: 100%;
      background-color: transparent;
      line-height: 22px;
      text-align: right; }
      .input-group .ui-control input::-webkit-input-placeholder {
        opacity: 0; }
    .input-group .ui-control label {
      position: relative;
      display: block; }
      .input-group .ui-control label .ui-control-wrapper {
        width: calc(100% - 48px);
        display: inline-block;
        vertical-align: bottom; }
      .input-group .ui-control label .placeholder {
        right: 0;
        position: absolute;
        top: calc(100% - 23px);
        color: #3e606f;
        font-size: .9em;
        pointer-events: none;
        transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
        -webkit-font-smoothing: antialiased;
        width: 100%;
        max-width: 100%;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
        transform-origin: top right; }
    .input-group .ui-control label.has-icon .placeholder {
      right: 48px; }
    .input-group .ui-control label.line {
      border-bottom: 1px solid #b5b3b3;
      transition: all .1s ease-in-out; }
    .input-group .ui-control .error-spacer {
      min-height: 24px;
      min-width: 1px;
      color: red;
      font-size: .8em;
      padding-top: 1px; }
    .input-group .ui-control .ui-input-icon {
      color: #026b7b;
      line-height: 50px;
      margin-left: 10px; }
    .input-group .ui-control select {
      vertical-align: bottom;
      border: none;
      color: #193441;
      box-sizing: border-box;
      outline: none;
      font-size: .9em;
      padding: 0;
      margin-bottom: 2px;
      width: 100%;
      background-color: transparent;
      line-height: 22px;
      text-align: right;
      cursor: pointer;
      position: relative;
      -webkit-appearance: none;
      -moz-appearance: none;
      -ms-appearance: none;
      -o-appearance: none;
      appearance: none; }
      .input-group .ui-control select:after {
        content: '\f0d7';
        font-family: 'FontAwesome';
        font-size: .9em;
        color: black;
        position: absolute; }
    .input-group .ui-control .dropdown-multiselect {
      vertical-align: bottom;
      border: none;
      color: #193441;
      box-sizing: border-box;
      outline: none;
      font-size: .9em;
      padding: 0;
      margin-bottom: 2px;
      width: 100%;
      background-color: transparent;
      line-height: 22px;
      text-align: right; }
  .input-group .ui-control.ui-success .ui-input-icon i:before {
    content: "\f058";
    color: #5bc18e; }
  .input-group .ui-control.ng-invalid.ng-not-empty .ui-input-icon i:before {
    content: "\f057";
    color: #e67c7c; }
  .input-group .ui-control.is-loading i:before {
    content: "\f021" !important;
    color: #026b7b !important; }
  .input-group .ui-control.error {
    background-color: #f7f7f7; }
  .input-group .ui-control.disabled {
    pointer-events: none; }
    .input-group .ui-control.disabled:before {
      content: '\f023';
      font-family: 'FontAwesome';
      position: absolute;
      left: -20px;
      bottom: 0px; }
  .input-group .ui-control.form-block {
    filter: blur(1px); }
  .input-group .ui-control.focus input::-webkit-input-placeholder {
    opacity: 1; }
  .input-group .ui-control.focus .placeholder {
    color: #3e606f;
    transform: scale(0.85) translate3d(30px, -25px, 0) perspective(1px); }

.input-group.top {
  z-index: 2; }

.input-group.no-margin {
  margin: 0 auto !important; }

.input-group.ltr {
  direction: ltr; }
  .input-group.ltr .placeholder {
    left: 48px;
    right: auto !important;
    transform-origin: top left !important; }
  .input-group.ltr .ui-input-icon {
    margin-left: 0 !important;
    margin-right: 10px; }
  .input-group.ltr .ui-control.focus .placeholder {
    transform: scale(0.8) translate3d(-15px, -25px, 0); }

.input-group.rtl {
  direction: rtl; }

button:disabled {
  opacity: .4;
  cursor: not-allowed; }

.pika-button {
  padding: 5px 0 5px 13px;
  text-align: left; }

.angular-tooltip.angular-tooltip-top-center:before {
  margin-left: -7px; }

.angular-tooltip.angular-tooltip-top-center:after {
  border-top-color: white; }

.angular-tooltip.angular-tooltip-top-middle:before {
  margin-left: -7px; }

.angular-tooltip.angular-tooltip-top-middle:after {
  border-top-color: white; }

.angular-tooltip.angular-tooltip-top:before {
  margin-left: -7px; }

.angular-tooltip.angular-tooltip-top:after {
  border-top-color: white; }

.angular-tooltip.angular-tooltip-right-center:after {
  margin-top: -5px;
  border-right-color: #fff; }

.angular-tooltip.angular-tooltip-right-center:before {
  margin-top: -7px;
  border-right-color: #000; }

.angular-tooltip.angular-tooltip-right-middle:after {
  margin-top: -5px;
  border-right-color: #fff; }

.angular-tooltip.angular-tooltip-right-middle:before {
  margin-top: -7px;
  border-right-color: #000; }

.angular-tooltip.angular-tooltip-right:after {
  margin-top: -5px;
  border-right-color: #fff; }

.angular-tooltip.angular-tooltip-right:before {
  margin-top: -7px;
  border-right-color: #000; }

.error-spacer {
  min-height: 24px;
  min-width: 1px;
  color: red;
  font-size: .7em;
  padding-top: 1px;
  position: absolute; }

.error-spacer.auto-height {
  min-height: auto !important; }

.custom-file-input {
  display: inline-block;
  position: relative;
  color: #533e00; }
  .custom-file-input input {
    visibility: hidden;
    font-weight: normal; }
  .custom-file-input:before {
    content: attr(title2);
    display: block;
    background-color: #3e606f;
    color: white;
    padding: 5px 0px;
    outline: none;
    white-space: nowrap;
    cursor: pointer;
    font-weight: bold;
    text-align: center;
    font-size: .6em;
    position: absolute;
    left: 0;
    right: 0; }
  .custom-file-input:hover:before {
    border-color: #569822;
    content: attr(title2); }
  .custom-file-input:active:before {
    background: #569822;
    content: attr(title2); }

.custom-file-input.custom-file-input-2x:before {
  padding: 10px 0;
  font-size: 0.8em;
  content: attr(title2); }

.rzslider {
  direction: ltr; }

.dropdown-menu.dropdown-classic button {
  background-color: #13A89E;
  color: white; }

.dropdown-menu {
  margin: 0;
  padding: 0;
  position: absolute;
  background-color: white;
  font-size: 15px;
  min-width: 310px;
  max-height: 320px;
  overflow-y: auto;
  outline: 1px solid silver; }
  .dropdown-menu .icon {
    width: 15px;
    display: inline-block; }
    .dropdown-menu .icon.fa {
      font-size: 13px; }
  .dropdown-menu .check-all {
    display: flex;
    justify-content: space-around; }
    .dropdown-menu .check-all > div {
      flex: 1; }
    .dropdown-menu .check-all:hover {
      background-color: transparent; }
  .dropdown-menu .checkbox label {
    display: flex;
    align-items: center; }
  .dropdown-menu .checkboxInput {
    width: auto !important;
    margin: 0 !important;
    margin-left: 5px !important; }
  .dropdown-menu .dropdown-header {
    padding: 5px; }
    .dropdown-menu .dropdown-header:hover {
      background-color: white; }
    .dropdown-menu .dropdown-header input {
      width: 100%;
      padding: 4px 3px;
      border: 1px solid silver;
      box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
      border-radius: 5px; }
      .dropdown-menu .dropdown-header input:focus, .dropdown-menu .dropdown-header input:hover {
        box-shadow: 0px 0px 4px #007effb8;
        border: 1px solid #0461abbf; }
  .dropdown-menu > li {
    border-bottom: 1px solid #efefef;
    font-size: 14px; }
    .dropdown-menu > li.divider {
      display: none; }
    .dropdown-menu > li:hover {
      background-color: #ececec; }
    .dropdown-menu > li label {
      cursor: pointer; }
    .dropdown-menu > li a {
      display: block;
      padding: 5px;
      outline: none;
      padding: 5px 10px;
      cursor: pointer; }
      .dropdown-menu > li a:hover {
        background-color: rgba(192, 192, 192, 0.22); }
    .dropdown-menu > li a[disabled] {
      opacity: .5;
      pointer-events: none;
      cursor: not-allowed; }
    .dropdown-menu > li:last-of-type button {
      border: none;
      background-color: #2D6690;
      color: white;
      padding: 5px 0;
      width: 100%; }
      .dropdown-menu > li:last-of-type button:hover {
        background-color: #427da9; }

.dropdown-multiselect button {
  border: none;
  background-color: transparent;
  white-space: nowrap;
  width: 100%;
  text-align: right; }

.modal-wrapper .modal.yes-no-modal {
  top: 40%; }

.ui-input {
  border: 1px solid silver;
  padding: 8px 15px; }

.user-authorize {
  display: block;
  float: left;
  margin-top: 12px;
  margin-left: 10px; }

.input-group.disabled {
  opacity: .1; }

.dropdown-menu.filters .ui-checkbox2 {
  padding: 8px 5px;
  display: flex;
  justify-content: flex-start;
  align-items: center; }
  .dropdown-menu.filters .ui-checkbox2 span {
    margin-right: 5px;
    display: block; }

.selected-totals td:not(:empty) {
  background-color: #b3ffcd !important; }

.fa-file-excel-o {
  cursor: pointer; }

.no-border {
  border: none !important; }

.back-graph {
  position: relative; }
  .back-graph i {
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    font-size: 2em;
    left: 10vw;
    cursor: pointer; }

.choose-municipality > div {
  margin: 0 auto;
  display: block; }

.full-screen-modal {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  background-color: white;
  z-index: 99;
  display: none; }
  .full-screen-modal button.close {
    background-color: transparent;
    border: none;
    color: black;
    font-size: 3em;
    position: absolute;
    left: 0;
    top: 0;
    font-family: sans-serif;
    font-weight: bold;
    padding: 5px 20px; }
  .full-screen-modal iframe {
    width: 100%;
    height: 100vh;
    border: none; }

.full-screen-modal.active {
  display: block; }

.pointer {
  cursor: pointer; }

.refresh-button {
  border: none;
  padding: 5px 10px;
  margin-bottom: 5px;
  cursor: pointer;
  background-color: #3E606F;
  color: white; }
  .refresh-button:hover {
    box-shadow: 0px 0px 5px silver; }

.tabs {
  display: flex;
  padding-bottom: 20px; }
  .tabs > div {
    margin: 0 0px;
    border: 1px solid #3e606f47;
    padding: 10px;
    width: 205px;
    text-align: center;
    cursor: pointer;
    font-size: 14px; }
  .tabs > div.active {
    background-color: #13A89E; }

.tab-2.contracts .save button {
  padding: 7px 10px;
  border-radius: 3px;
  min-width: unset;
  margin: 13px 5px 0 0;
  width: 120px; }

.btn-switch {
  box-sizing: content-box;
  position: relative;
  display: block;
  width: 50px;
  height: 25px;
  cursor: pointer;
  background-color: white;
  border: 2px solid #dedede;
  border-radius: 40px; }
  .btn-switch .btn-switch-circle {
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    height: 25px;
    width: 25px;
    background-color: silver;
    border-radius: 40px; }

.btn-switch--on {
  background-color: white;
  border: 2px solid #80CDBE; }
  .btn-switch--on .btn-switch-circle--on {
    left: auto;
    right: 0;
    background-color: #80CDBE;
    border: 2px solid #80CDBE; }

.no-results {
  color: #908282;
  font-weight: normal; }

.bulk-actions {
  display: flex;
  align-items: center; }
  .bulk-actions > * {
    margin: 0px 3px; }
  .bulk-actions button {
    background-color: #193441;
    color: white;
    border: none;
    font-size: 13px;
    padding: 5px 10px; }
  .bulk-actions select {
    padding: 2px; }

@media screen and (max-width: 700px) {
  section {
    overflow-x: auto; } }

@media all and (max-width: 1375px) {
  .tab-field {
    margin-top: 10px; } }

.selected-indicators {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between; }

tooltip {
  position: relative; }
  tooltip tip {
    background: white;
    color: black;
    border: 1px solid #676767;
    box-shadow: 0px 0px 10px #c7c7c7; }

tooltip._top tip tip-arrow {
  border-top: 6px solid rgba(152, 152, 152, 0.85); }

.table-actions {
  display: flex;
  flex-direction: row-reverse;
  justify-content: space-between;
  align-items: center;
  margin-top: 30px; }

.export button {
  background-color: transparent;
  outline: 1px solid transparent;
  border: none; }
  .export button:hover {
    outline: 1px solid black;
    transition: all .2s ease-in-out; }

.export button[aria-expanded=true] {
  outline: 1px solid black;
  transition: all .2s ease-in-out; }

.actions-buttons {
  position: relative;
  display: flex; }
  .actions-buttons button {
    border: none;
    background-color: transparent;
    color: black;
    margin: 0 1px;
    padding: 5px 8px;
    font-size: 15px;
    outline: 1px solid transparent;
    position: relative; }
    .actions-buttons button:hover {
      outline: 1px solid black;
      transition: all .2s ease-in-out; }

.selected-reports {
  margin-bottom: 5px;
  display: block;
  font-size: .95em; }

.batch {
  opacity: 0; }
  .batch select {
    width: 100%;
    padding: 10px; }

.batch.active {
  opacity: 1; }

tr.is-approved {
  background-color: #a9e0a9; }
  tr.is-approved:hover {
    background-color: #9bce9b !important; }

.mandatory {
  color: red; }

.signpad-modal {
  padding: 60px !important; }
  .signpad-modal .error {
    color: red;
    display: block;
    margin: 10px 0; }
  .signpad-modal .signature {
    border: 1px solid silver; }
  .signpad-modal .buttons {
    margin-top: 45px;
    display: flex;
    justify-content: space-between; }
  .signpad-modal button {
    border: none;
    color: white;
    padding: 7px 10px;
    margin-right: 10px;
    background-color: silver; }
    .signpad-modal button.ok {
      background-color: #13A89E; }

.dropdown-menu.default {
  z-index: 10; }

.dropdown-menu.default li {
  padding: 10px;
  cursor: pointer; }

.dropdown.default button {
  display: flex;
  align-items: center;
  background-color: #13A89E;
  padding: 5px 10px;
  border-radius: 3px;
  min-width: unset;
  margin: 13px 5px 0 0;
  width: 120px;
  justify-content: center; }
  .dropdown.default button > div {
    display: flex;
    align-items: center; }

.dropdown.default button i {
  margin-left: 5px; }

body.index-indorsement-list td:not(.actions) .flex {
  display: flex; }
  body.index-indorsement-list td:not(.actions) .flex > div {
    flex: 1; }
    body.index-indorsement-list td:not(.actions) .flex > div:nth-child(1) {
      text-align: left; }
    body.index-indorsement-list td:not(.actions) .flex > div:nth-child(2) {
      text-align: right; }

body.index-indorsement-list td:not(.actions) button {
  background-color: transparent;
  border: none; }
  body.index-indorsement-list td:not(.actions) button:hover {
    background-color: silver; }
  body.index-indorsement-list td:not(.actions) button i {
    font-size: 18px; }

.vehicle-documents-dropdown label {
  display: flex;
  justify-content: space-between;
  align-items: center; }
  .vehicle-documents-dropdown label button {
    border: none;
    background-color: transparent !important;
    width: 32px !important;
    height: 23px;
    border: none;
    color: black !important;
    padding: 0 !important; }
    .vehicle-documents-dropdown label button:hover {
      background-color: silver !important; }

.page-description {
  font-size: 15px;
  margin: 0;
  margin-bottom: 20px;
  background-color: #40404024;
  padding: 10px;
  padding-right: 30px;
  display: inline-block;
  margin-right: -40px;
  border: 1px solid #d8d8d8;
  border-radius: 10px; }
  .page-description.error {
    background-color: red; }

.view-mode li {
  padding: 10px;
  cursor: pointer; }

.mb-10 {
  margin-bottom: 10px; }

.excel-like td {
  border: 1px solid black;
  font-size: 13px;
  padding: 3px 5px; }
