authform@import url('https://fonts.googleapis.com/css2?family=Play:wght@400;700&display=swap');

* {
  font-family: 'Play', sans-serif;
}
@-webkit-keyframes chartjs-render-animation {
  from {
    opacity: 0.99
  }
  to {
    opacity: 1
  }
}
@keyframes chartjs-render-animation {
  from {
    opacity: 0.99
  }
  to {
    opacity: 1
  }
}
.pointer { cursor: pointer;}
.page{
  width: 100vw;
  height: 100vh;
  display: none;
}
.users-select {
  height: 100% !important;
  overflow: auto;
}
.chartjs-render-monitor {
  -webkit-animation: chartjs-render-animation 0.001s;
  animation: chartjs-render-animation 0.001s;
}

body {
    font-size: .875rem;
  }

  .feather {
    width: 16px;
    height: 16px;
    vertical-align: text-bottom;
  }

  /*
   * Sidebar
   */

  .sidebar {
    box-shadow: inset -1px 0 0 rgba(0, 0, 0, .1);
  }

  .sidebar-sticky {
    position: relative;
    top: 0;
    height: calc(100vh - 48px);
    padding-top: .5rem;
    padding-bottom: .5rem;
    overflow-x: hidden;
    overflow-y: auto; /* Scrollable contents if viewport is shorter than content. */
  }

  @supports ((position: -webkit-sticky) or (position: sticky)) {
    .sidebar-sticky {
      position: -webkit-sticky;
      position: sticky;
    }
  }

  .sidebar .nav-link {
    font-weight: 500;
    color: #333;
  }

  .sidebar .nav-link .feather {
    margin-right: 4px;
    color: #999;
  }

  .sidebar .nav-link.active {
    color: #007bff;
  }

  .sidebar .nav-link:hover .feather,
  .sidebar .nav-link.active .feather {
    color: inherit;
  }

  .sidebar-heading {
    font-size: .75rem;
    text-transform: uppercase;
  }

  /*
   * Navbar
   */

  .navbar-brand {
    padding-top: .75rem;
    padding-bottom: .75rem;
    font-size: 1rem;
    background-color: rgba(0, 0, 0, .25);
    box-shadow: inset -1px 0 0 rgba(0, 0, 0, .25);
  }

  .navbar .form-control {
    padding: .75rem 1rem;
    border-width: 0;
    border-radius: 0;
  }

  .form-control-dark {
    color: #fff;
    background-color: rgba(255, 255, 255, .1);
    border-color: rgba(255, 255, 255, .1);
  }

  .form-control-dark:focus {
    border-color: transparent;
    box-shadow: 0 0 0 3px rgba(255, 255, 255, .25);
  }

  /*
   * Utilities
   */

  .border-top { border-top: 1px solid #e5e5e5; }
  .border-bottom { border-bottom: 1px solid #e5e5e5; }

  th[sort="ASC"]:after {
    content: "";
    border-right: 5px solid transparent;
    border-left: 5px solid transparent;
    border-top: 5px solid transparent;
    border-bottom: 5px solid #495057;
    position: absolute;
    margin-top: 5px;
}

th[sort="DESC"]:after {
    content: "";
    border-right: 5px solid transparent;
    border-left: 5px solid transparent;
    border-top: 5px solid #495057;
    border-bottom: 5px solid transparent;
    position: absolute;
    margin-top: 10px;
}

#table {
  display:none;
  text-align:center
}

#balance_message {
  display: none;
}

.label_report {
  text-align: center;
}

.wrapper-users_select {
  display: flex;
  justify-content: space-around;
  align-items: center;
  border-bottom: 1px solid #dee2e6;
  padding-bottom: 17px;
}

.label-select_service {
  margin-bottom: 0;
  margin-right: 5px;
}

#users_service {
  height: 29px;
}

#balance_message {
  margin-top: 5px;
}

.dropdown-toggle {
  background-color: #2196F3;
  padding: 1px;
  font-size: 13px;
}

.form-signin {
  width: 350px;
}

.wrapper-form_signin {
  display: flex;
  justify-content: center;
}
#daterange_input {
  height: 29px;
  width: 162px;
}

.wrapper-select_service,
.wrapper-daterange {
  display: flex;
  align-items: baseline;
}

.authform {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center
}

@media (min-width: 576px) {
  .modal-dialog {
    max-width: none;
  }
}

#minutes_btn,
#export_btn,
#export_balance_history_btn,
#export_emails_btn,
#export_emails_btn,
#delete_user,
#update_containers,
#balance_message,
#save_statistics,
#download_statistics {
  display: none;
}

#loaderpage {
  width: 100vw;
  height: 100vh;
  position: absolute;
  top: 0;
  z-index: 9999;
  background-color: RGBA(0, 0, 0, 0.2);
}

.loader {
  position: absolute;
  top: 100px;
  left: 50%;
  margin: 100px auto;
  border: 16px solid #f3f3f3;
  /* Light grey */
  border-top: 16px solid #337ab7;
  /* Blue */
  border-radius: 50%;
  width: 120px;
  height: 120px;
  animation: spin 2s linear infinite;
}

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


