@import "../libs/font-awesome/css/all.min.css";
@import "../libs/weather-icons/css/weather-icons.min.css";
@import "../libs/weather-icons/css/weather-icons-wind.min.css";
@import "iziToast.min.css";
* {
  box-sizing: border-box;
}
.btn {
  display: inline-block;
  font-weight: 400;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  font-size: 1.125rem;
  line-height: 1.5;
  border-radius: 0.25rem;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  letter-spacing: 0.5px;
  padding: 8px 15px;
  border: none;
  font-family: source-sans-pro;
  cursor: pointer;
  color: #43425d;
  background: #dcdcdc;
}
.btn:focus {
  outline: 0;
}
.btn:disabled {
  opacity: 0.65;
  pointer-events: none;
}
@media screen and (prefers-reduced-motion: reduce) {
  .btn {
    transition: none;
  }
}
.btn-danger {
  color: #ffffff;
  background-color: #dc3545;
  border-color: #dc3545;
}
.btn-danger:hover {
  color: #ffffff;
  background-color: #c82333;
  border-color: #bd2130;
}
.btn-danger:focus {
  box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.5);
}
.btn-danger:disabled {
  color: #ffffff;
  background-color: #dc3545;
  border-color: #dc3545;
}
.btn-primary {
  color: #ffffff;
  background-color: #43425d;
  border-color: #43425d;
}
.btn-primary:hover {
  background-color: #4c7cde;
  border-color: #4c7cde;
}
.btn-primary:focus {
  background-color: #4c7cde;
  border-color: #4c7cde;
}
.btn-outline {
  color: #007bff;
  background-color: transparent;
  background-image: none;
  border-color: #007bff;
}
.btn-outline:hover {
  color: #fff;
  background-color: #007bff;
  border-color: #007bff;
}
.btn-outline:focus {
  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.5);
}
.btn-lg,
.btn-group-lg > .btn {
  padding: 0.5rem 1rem;
  font-size: 1.25rem;
  line-height: 1.5;
  border-radius: 0.3rem;
}
.btn-sm,
.btn-group-sm > .btn {
  padding: 0.25rem 0.5rem;
  font-size: 0.875rem;
  line-height: 1.5;
  border-radius: 0.2rem;
}
.btn-block {
  display: block;
  width: 100%;
}
.btn-block + .btn-block {
  margin-top: 0.5rem;
}
.left-icon {
  padding-right: 10px;
}
.right-icon {
  padding-left: 10px;
}
body,
html {
  font-size: 14px;
}
.app {
  height: 100vh;
  overflow: hidden;
  position: relative;
  font-family: source-sans-pro;
}
.app-body {
  height: 100vh;
  position: relative;
  width: 100%;
  display: flex;
  flex-flow: row nowrap;
}
.main {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  height: 100%;
  background-size: cover;
  background-color: #fafafa;
  background-position: center, center;
  position: relative;
  box-shadow: -2px 2px 3px 1px rgba(60, 60, 60, 0.4) inset;
  max-width: 100%;
  overflow: auto;
}
.sidebar {
  flex: 0 0 260px;
  order: -1;
  z-index: 3;
  position: relative;
  overflow-x: hidden !important;
  height: 100%;
  overflow-y: auto;
  display: flex;
  flex-flow: column;
  box-shadow: -2px 2px 3px 1px rgba(60, 60, 60, 0.4) inset;
  scrollbar-width: thin;
  background: #43425d 0% 0%;
  color: #ffffff;
}
.sidebar header {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 260px;
  height: 70px;
  /* UI Properties */
  background: rgba(0, 0, 0, 0.1) 0% 0%;
  box-shadow: 0px 2px 3px rgba(0, 0, 0, 0.05);
  opacity: 1;
}
.sidebar header .title {
  text-align: center;
  font-weight: bold;
  letter-spacing: 5px;
  color: #ffffff;
  opacity: 1;
  font-size: 1.7em;
}
.sidebar section {
  margin-top: 40px;
}
.sidebar section .header {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-flow: column;
  min-height: 100px;
  font-size: 1.4rem;
}
.sidebar section .header label:first-child {
  margin-bottom: 10px;
  font-weight: bold;
}
.sidebar section .nav {
  padding: 0;
  margin: 0;
}
.sidebar section .nav .nav-item {
  overflow: hidden;
  white-space: nowrap;
  height: 60px;
  position: relative;
  font-size: 1.2rem;
}
.sidebar section .nav .nav-item .nav-link {
  text-decoration: none;
  height: 100%;
  display: flex;
  align-items: center;
  padding-left: 25px;
  color: #ffffff;
}
.sidebar section .nav .nav-item .nav-link:hover {
  color: #a3a0fb !important;
}
.sidebar section .nav .nav-item .nav-link:hover i {
  color: #a3a0fb;
}
.sidebar section .nav .nav-item .nav-link i {
  color: #a5a4bf;
  width: 40px;
  font-size: 1.2rem;
}
.sidebar section .nav .nav-item .nav-link.router-link-active {
  background: rgba(0, 0, 0, 0.1) 0% 0%;
  border-left: 3px solid #a3a0fb;
  color: #a3a0fb;
}
.sidebar section .nav .nav-item .nav-link.router-link-active i {
  color: #a3a0fb;
}
.sidebar section .user-info {
  display: grid;
  grid-template-columns: auto;
  grid-template-rows: auto;
  gap: 10px 10px;
  grid-template-areas: "logo     logo" "email    email" "username logout";
  justify-items: center;
  align-items: center;
}
.sidebar section .user-info .user-initals {
  width: 70px;
  height: 70px;
  background: white;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #a3a0fb;
  font-weight: 700;
  font-size: 1.6rem;
  grid-area: logo;
}
.sidebar section .user-info .user-initals.rounded {
  border-radius: 50px;
  border: 1px solid #43425d;
}
.sidebar section .user-info .username {
  font-weight: bold;
  grid-area: username;
  justify-self: end;
}
.sidebar section .user-info .email {
  font-style: italic;
  grid-area: email;
}
.sidebar section .user-info .logout {
  grid-area: logout;
  cursor: pointer;
}
.sidebar footer {
  width: 100%;
  position: absolute;
  bottom: 0px;
  height: 40px;
  color: #ffffff;
  text-align: center;
}
.sidebar footer img {
  width: 60%;
}
.table {
  width: 100%;
  margin-bottom: 1rem;
  background-color: transparent;
  background-color: #ffffff;
  cursor: pointer;
}
.table thead {
  background: #f5f6fa 0% 0%;
}
.table thead th {
  color: #a3a6b4;
  text-transform: uppercase;
  font-size: 1rem;
  font-weight: bold;
  padding: 1rem;
  letter-spacing: 1px;
}
.table tbody tr {
  height: 48px;
}
.table tbody tr:hover {
  background: rgba(0, 74, 225, 0.16) 0% 0%;
}
.table tbody td {
  padding: 0.85rem;
  vertical-align: middle;
  text-align: center;
  font-weight: normal;
  font-size: 1rem;
  color: #43425d;
}
.table-hover .table-active:hover > td,
.table-hover .table-active:hover > th {
  background-color: rgba(0, 0, 0, 0.075);
}
@media (max-width: 575.98px) {
  .table-responsive-sm {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    -ms-overflow-style: -ms-autohiding-scrollbar;
  }
  .table-responsive-sm > .table-bordered {
    border: 0;
  }
}
@media (max-width: 767.98px) {
  .table-responsive-md {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    -ms-overflow-style: -ms-autohiding-scrollbar;
  }
  .table-responsive-md > .table-bordered {
    border: 0;
  }
}
@media (max-width: 991.98px) {
  .table-responsive-lg {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    -ms-overflow-style: -ms-autohiding-scrollbar;
  }
  .table-responsive-lg > .table-bordered {
    border: 0;
  }
}
@media (max-width: 1199.98px) {
  .table-responsive-xl {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    -ms-overflow-style: -ms-autohiding-scrollbar;
  }
  .table-responsive-xl > .table-bordered {
    border: 0;
  }
}
.table-responsive {
  display: block;
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  -ms-overflow-style: -ms-autohiding-scrollbar;
}
.table-responsive > .table-bordered {
  border: 0;
}
.stations {
  font-family: source-sans-pro;
  padding: 2.1rem 7rem;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
.stations header {
  display: flex;
  align-items: center;
  justify-content: center;
}
.stations header .search-box {
  display: flex;
  align-items: center;
  position: relative;
  border-radius: 5px;
  box-shadow: 0px 2px 6px rgba(0, 0, 0, 0.05);
  background: #ffffff 0% 0%;
  font-size: 1.3rem;
  padding: 5px 10px 5px 20px;
}
.stations header input[type="text"] {
  padding: 5px 27.5px;
  position: relative;
  border: none;
  background-color: unset;
  font-size: 1.3rem;
  font-family: source-sans-pro;
  color: #a9a9a9;
  width: 400px;
}
.stations header input[type="text"]:focus {
  outline: none !important;
}
.stations header input[type="text"]::placeholder {
  color: #a9a9a9;
  text-align: center;
}
.stations header i {
  z-index: 9999;
  color: #b1abab;
}
.stations section {
  display: flex;
  align-items: center;
  justify-content: center;
}
.stations section.button-section {
  padding-top: 40px;
  padding-bottom: 40px;
  flex: 0;
}
.stations section.table-section {
  padding: 10px;
  background: #ffffff;
  border-radius: 5px;
}
.green-status {
  color: #60f219;
}
.red-status {
  color: #F21920;
}
.stationDetails {
  font-family: source-sans-pro;
  padding: 2.1rem 5.7rem;
  padding: 35px 80px;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
  overflow: auto;
}
.stationDetails header {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-bottom: 10px;
}
.stationDetails header select {
  flex: 1;
  margin-right: 25px;
  margin-bottom: 25px;
}
.stationDetails header .header-buttons button {
  margin-right: 10px;
}
.stationDetails header .header-buttons :last-child {
  margin-right: 0px;
}
.stationDetails section.daily-measure-section {
  margin-right: -30px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-evenly;
}
.stationDetails section.map-container {
  min-height: 45vh;
  border-radius: 5px;
}
.stationDetails section.daily-summary-section .station-select {
  width: 100%;
  margin: 10px 0px;
}
.stationDetails section.daily-summary-section label {
  font-size: 1.3rem;
  color: #43425d;
  font-weight: bold;
}
.stationDetails section.daily-summary-section .daily-summary-cards {
  flex-wrap: wrap;
  display: flex;
  margin-right: -30px;
  padding-top: 10px;
}
.stationDetails section.daily-summary-section .daily-summary-cards .card {
  flex: 10%;
}
.stationDetails section.charts {
  margin-right: -30px;
  display: flex;
  flex-wrap: wrap;
}
.stationDetails section.charts .echarts {
  width: 100%;
  height: 100%;
}
.stationDetails section.charts .temperature {
  height: 350px;
  flex: 1 1 40%;
  max-width: calc(50% - 30px);
}
.stationDetails section.charts .precipitation {
  height: 350px;
  flex: 1 1 40%;
  max-width: calc(50% - 30px);
}
.stationDetails section.charts .pressure {
  height: 350px;
  flex: 1 1 40%;
  max-width: calc(50% - 30px);
}
.stationDetails section.charts .humidity {
  height: 350px;
  flex: 1 1 40%;
  max-width: calc(50% - 30px);
}
.stationDetails section.charts .solarradiation {
  height: 350px;
  flex: 1 1 40%;
  max-width: calc(50% - 30px);
}
.stationDetails section.charts .winddirection {
  height: 350px;
  flex: 1 1 40%;
  max-width: calc(50% - 30px);
}
.stationForm {
  font-family: source-sans-pro;
  padding: 35px 100px;
  height: 100%;
  overflow: auto;
  display: flex;
  flex-flow: column nowrap;
  align-items: center;
  min-width: 800px;
}
.stationForm header .title {
  font-size: 2rem;
  color: #a5a4bf;
  font-weight: bold;
  letter-spacing: 3px;
}
.stationForm div.form {
  min-width: 800px;
}
.home {
  font-family: source-sans-pro;
  padding: 2.1rem 7rem;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
  overflow: auto;
}
.home header {
  display: flex;
  align-items: center;
  justify-content: center;
}
.home header .title {
  font-size: 2rem;
  color: #a5a4bf;
  font-weight: bold;
  letter-spacing: 3px;
}
.home section {
  display: flex;
}
.home section.map-section {
  padding: 10px;
  margin-top: 20px;
  min-height: 40vh;
  background: #ffffff;
  border-radius: 5px;
}
.home section.table-section {
  background: #ffffff;
  padding: 10px;
  border-radius: 5px;
  display: flex;
  flex-flow: column;
  align-items: center;
}
.home section.table-section label {
  font-size: 1.4rem;
  text-align: left;
  width: 100%;
  margin-bottom: 10px;
  color: #43425d;
  font-weight: bold;
}
.map {
  height: 100%;
  width: 100%;
  border: 1px solid rgba(0, 0, 0, 0.05);
}
.map .leaflet-popup-content-wrapper {
  background: #004ae1;
  color: #fff;
  font-size: 1rem;
  line-height: 24px;
  font-family: source-sans-pro;
  border-radius: 5px;
  letter-spacing: 1px;
  font-weight: normal;
}
.map .leaflet-popup-content-wrapper .leaflet-popup-content {
  margin: 0;
  padding: 8px 20px 8px 15px;
  text-align: center;
}
.map .leaflet-popup-content-wrapper .leaflet-popup-content strong {
  display: block;
}
.map.leaflet-container a.leaflet-popup-close-button {
  color: #ffffff;
}
.map .leaflet-popup-tip-container {
  width: 0;
  height: 0;
}
.card {
  background: #ffffff 0% 0%;
  box-shadow: 0px 2px 6px rgba(0, 0, 0, 0.1);
  opacity: 1;
  display: flex;
  flex-flow: column;
  margin: 0px 30px 25px 0px;
  padding: 10px 15px;
  flex: 1 1 calc(20% - 30px);
  border-radius: 5px;
}
.card .header {
  font-size: 15px;
  color: #43425d;
  opacity: 0.5;
  text-align: left;
}
.card .body {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-flow: column;
  padding: 20px 0px;
  flex: 1;
}
.card .body .main-info {
  font-weight: bold;
  color: #4d4f5c;
  text-align: center;
}
.card .body .main-info i {
  font-size: 2.5rem;
}
.card .body .main-info label {
  font-size: 2rem;
}
.card .body .main-info small {
  margin-left: 2px;
  font-size: 1.5rem;
}
.card .body .main-info small.below {
  display: block;
  color: #43425d;
  opacity: 0.5;
  text-align: center;
  font-size: 1rem;
}
.card .body .info {
  color: #43425D;
  opacity: 0.5;
  padding-top: 10px;
}
.card .body .info label {
  font-size: 1rem;
}
.login {
  background: #f6f5f7;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  font-family: source-sans-pro;
  height: 100vh;
  margin: -20px 0 50px;
}
.login * {
  box-sizing: border-box;
}
.login h1 {
  font-weight: bold;
  margin: 0;
}
.login h2 {
  text-align: center;
}
.login span {
  font-size: 12px;
}
.login a {
  color: #333;
  font-size: 14px;
  text-decoration: none;
  margin: 15px 0;
}
.login button {
  border-radius: 20px;
  border: 1px solid #43425d;
  background-color: #43425d;
  color: #FFFFFF;
  font-size: 12px;
  font-weight: bold;
  padding: 12px 45px;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: transform 80ms ease-in;
  cursor: pointer;
}
.login button:active {
  transform: scale(0.95);
}
.login button:focus,
.login input:focus {
  outline: none;
}
.login button.ghost {
  background-color: transparent;
  border-color: #FFFFFF;
}
.login button.action {
  margin-top: 10px;
}
.login button.register {
  background-color: #FFFFFF;
  color: #43425d;
}
.login input {
  background-color: #eee;
  border: none;
  padding: 12px 15px;
  margin: 8px 0;
  width: 100%;
}
.login .title {
  font-size: 14px;
  font-weight: 100;
  line-height: 20px;
  letter-spacing: 0.5px;
  margin: 20px 0 30px;
}
.login .form {
  background-color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 0 50px;
  height: 100%;
  text-align: center;
}
.login .form .error {
  color: #dc3545;
  font-size: 14px;
}
.login .error-input {
  border: 1px solid #dc3545;
}
.login .container {
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.25), 0 10px 10px rgba(0, 0, 0, 0.22);
  position: relative;
  overflow: hidden;
  width: 768px;
  max-width: 100%;
  min-height: 480px;
}
.login .form-container {
  position: absolute;
  top: 0;
  height: 100%;
  transition: all 0.6s ease-in-out;
}
.login .sign-in-container {
  left: 0;
  width: 50%;
  z-index: 2;
}
.login .container.right-panel-active .sign-in-container {
  transform: translateX(100%);
}
.login .overlay-container {
  position: absolute;
  top: 0;
  left: 50%;
  width: 50%;
  height: 100%;
  overflow: hidden;
  transition: transform 0.6s ease-in-out;
  z-index: 100;
}
.login .container.right-panel-active .overlay-container {
  transform: translateX(-100%);
}
.login .overlay {
  background: #43425d;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 0 0;
  color: #FFFFFF;
  position: relative;
  left: -100%;
  height: 100%;
  width: 200%;
  transform: translateX(0);
  transition: transform 0.6s ease-in-out;
}
.login .container.right-panel-active .overlay {
  transform: translateX(50%);
}
.login .overlay-panel {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 0 40px;
  text-align: center;
  top: 0;
  height: 100%;
  width: 50%;
  transform: translateX(0);
  transition: transform 0.6s ease-in-out;
}
.login .overlay-left {
  transform: translateX(-20%);
}
.login .container.right-panel-active .overlay-left {
  transform: translateX(0);
}
.login .overlay-right {
  right: 0;
  transform: translateX(0);
}
.login .container.right-panel-active .overlay-right {
  transform: translateX(20%);
}
.form {
  box-shadow: 0px 2px 6px rgba(0, 0, 0, 0.05);
  background: #ffffff 0% 0%;
  border-radius: 5px;
  max-width: 800px;
  padding: 15px;
}
.form .form-row {
  display: flex;
}
.form .form-control {
  display: flex;
  flex-flow: column;
  width: 100%;
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  line-height: 1.5;
}
.form .form-control .error {
  color: #a3a0fb;
}
.form .form-control label {
  font-size: 1.1rem;
  color: #43425d;
}
.form .form-control input[type="text"] {
  font-family: source-sans-pro;
  background-color: #fafafa;
  color: #43425d;
  border-radius: 5px;
  font-size: 1.1rem;
  padding: 5px 10px;
  border: 1px solid #dcdcdc;
}
.form .form-control input[type="text"]:focus {
  outline: none !important;
}
.form .form-control input[type="text"]:read-only {
  background: #dcdcdc !important;
}
.form .form-control input[type="text"]:disabled {
  background: #dcdcdc !important;
  color: #43425d;
}
.form .form-control input[type="text"]::placeholder {
  color: #a9a9a9;
}
.form .form-control textarea {
  background-color: transparent;
  font-family: source-sans-pro;
  background-color: #fafafa;
  color: #a3a6b4;
  border-radius: 5px;
  font-size: 1.1rem;
  padding: 5px 10px;
  border: 1px solid #dcdcdc;
}
.form .form-control textarea:focus {
  outline: none !important;
}
.form .form-control textarea::placeholder {
  color: #a9a9a9;
}
.form .form-control .vdp-datepicker .vdp-datepicker__calendar {
  z-index: 9999;
}
.form .form-control .vdp-datepicker div:first-child {
  display: flex;
  flex-flow: row-reverse;
  border: 1px solid #dcdcdc;
  border-radius: 5px;
}
.form .form-control .vdp-datepicker .vdp-datepicker__calendar-button {
  background-color: #fafafa;
  color: #43425d;
  border-radius: 5px;
  font-size: 1.1rem;
  padding: 5px 10px;
  margin-left: -2px;
}
.form .form-control .vdp-datepicker input[type="text"] {
  background-color: transparent;
  font-family: source-sans-pro;
  background-color: #fafafa;
  color: #43425d;
  border-radius: 5px;
  font-size: 1.1rem;
  padding: 5px 10px;
  width: 100%;
  border: none;
}
.form .form-control .vdp-datepicker input[type="text"]:read-only {
  background-color: #fafafa !important;
  color: #43425d;
}
.form .form-control .vdp-datepicker input[type="text"]:focus {
  outline: none !important;
}
.form .form-control .vdp-datepicker input[type="text"]::placeholder {
  color: #a9a9a9;
}
.form .map-form {
  height: 32vh;
}
.form .map-form .map {
  border-radius: 5px;
}
.form .buttons {
  display: flex;
  margin-top: 20px;
}
.form .buttons :last-child {
  margin-right: 0px;
}
.form .buttons button {
  flex: 1;
  margin-right: 10px;
}
.form .option-data {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #43425d;
  cursor: pointer;
}
.form .option-data label {
  font-size: 1.2rem;
  cursor: pointer;
  font-weight: bold;
}
.form .option-data i {
  font-size: 1.5rem;
  cursor: pointer;
}
select {
  min-height: 39px;
  background: #ffffff;
  box-shadow: 0px 2px 6px rgba(0, 0, 0, 0.1);
  opacity: 1;
  border: none;
  color: #b1abab;
  font-family: inherit;
  font-size: 1.3rem;
  padding: 5px 10px;
  border-radius: 5px;
}
select:focus {
  outline: none !important;
}
.custom-tag {
  display: inline-block;
  background-color: rgba(255, 255, 255, 0.9);
  border: 2px solid rgba(139, 139, 139, 0.3);
  color: #43425d;
  border-radius: 5px;
  white-space: nowrap;
  margin: 3px 0px;
  transition: all 0.2s;
  padding: 5px 10px;
  cursor: pointer;
  margin-right: 10px;
  margin-bottom: 10px;
}
.custom-tag i {
  width: 20px;
}
.custom-tag label {
  cursor: pointer;
}
.custom-tag.selected {
  background-color: #a5a4bf;
  color: #ffffff;
}
.custom-tag.selected label {
  color: #ffffff;
}
.tooltip {
  display: block !important;
  z-index: 10000;
  font-family: source-sans-pro;
}
.tooltip .tooltip-inner {
  background: rgba(0, 0, 0, 0.8);
  color: white;
  border-radius: 5px;
  padding: 5px 10px 4px;
}
.tooltip .tooltip-inner a {
  color: white;
  text-decoration: underline;
}
.tooltip .tooltip-arrow {
  width: 0;
  height: 0;
  border-style: solid;
  position: absolute;
  margin: 5px;
  border-color: rgba(0, 0, 0, 0.8);
  z-index: 1;
}
.tooltip[x-placement^="top"] {
  margin-bottom: 5px;
}
.tooltip[x-placement^="top"] .tooltip-arrow {
  border-width: 5px 5px 0 5px;
  border-left-color: transparent !important;
  border-right-color: transparent !important;
  border-bottom-color: transparent !important;
  bottom: -5px;
  left: calc(50% - 5px);
  margin-top: 0;
  margin-bottom: 0;
}
.tooltip[x-placement^="bottom"] {
  margin-top: 5px;
}
.tooltip[x-placement^="bottom"] .tooltip-arrow {
  border-width: 0 5px 5px 5px;
  border-left-color: transparent !important;
  border-right-color: transparent !important;
  border-top-color: transparent !important;
  top: -5px;
  left: calc(50% - 5px);
  margin-top: 0;
  margin-bottom: 0;
}
.tooltip[x-placement^="right"] {
  margin-left: 5px;
}
.tooltip[x-placement^="right"] .tooltip-arrow {
  border-width: 5px 5px 5px 0;
  border-left-color: transparent !important;
  border-top-color: transparent !important;
  border-bottom-color: transparent !important;
  left: -5px;
  top: calc(50% - 5px);
  margin-left: 0;
  margin-right: 0;
}
.tooltip[x-placement^="left"] {
  margin-right: 5px;
}
.tooltip[x-placement^="left"] .tooltip-arrow {
  border-width: 5px 0 5px 5px;
  border-top-color: transparent !important;
  border-right-color: transparent !important;
  border-bottom-color: transparent !important;
  right: -5px;
  top: calc(50% - 5px);
  margin-left: 0;
  margin-right: 0;
}
.tooltip.popover .popover-inner {
  background: #f9f9f9;
  color: black;
  padding: 24px;
  border-radius: 5px;
  box-shadow: 0 5px 30px rgba(0, 0, 0, 0.1);
}
.tooltip.popover .popover-arrow {
  border-color: #f9f9f9;
}
.tooltip[aria-hidden='true'] {
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.15s, visibility 0.15s;
}
.tooltip[aria-hidden='false'] {
  visibility: visible;
  opacity: 1;
  transition: opacity 0.15s;
}
.paginator {
  font-family: inherit;
  font-size: 1rem;
  color: #b1abab;
  display: flex;
  flex-direction: column;
  padding: 2rem 0;
}
.paginator .per-page-selector {
  text-align: center;
  margin-bottom: 0.3rem;
}
.paginator .per-page-selector select {
  min-height: 26px;
  background: #FFFFFF 0% 0%;
  box-shadow: 0px 2px 6px rgba(0, 0, 0, 0.1);
  opacity: 1;
  border: none;
  color: #b1abab;
  font-family: inherit;
  font-size: 1rem;
  padding: 2px 5px;
  border-radius: 5px;
}
.paginator .pages {
  margin: 0 auto;
  margin-top: 5px;
}
.paginator .pages .page {
  display: inline-block;
  margin: 0 4px;
  cursor: pointer;
  border: 1px solid #b1abab;
  border-radius: 2px;
  padding: 5px 10px;
  background: #FFFFFF 0% 0%;
  box-shadow: 0px 2px 6px rgba(0, 0, 0, 0.1);
}
.paginator .pages .page.current-page {
  background-color: #b1abab;
  color: #fff;
}
.paginator .prev-page,
.paginator .next-page {
  cursor: pointer;
}
.paginator .prev-page.disabled,
.paginator .next-page.disabled {
  cursor: default;
  pointer-events: none;
  opacity: 0.4;
}
.paginator .prev-page > i,
.paginator .next-page > i {
  vertical-align: middle;
}
@font-face {
  font-family: "source-sans-pro";
  src: url("font/source-sans-pro.regular.ttf") format("truetype");
}
body {
  margin: 0;
}
hr {
  width: 100%;
  margin: 5px 0px;
  border: 0;
  height: 0;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}
.divider-5 {
  padding: 5px 0px;
}
.divider-10 {
  padding: 10px 0px;
}
.divider-20 {
  padding: 20px 0px;
}
.iziToast-wrapper-topRight {
  right: 10px;
  bottom: 10px;
}
body ::-webkit-scrollbar {
  width: 7px;
  background-color: #F5F5F5;
}
body ::-webkit-scrollbar-thumb {
  border-radius: 10px;
  background: #a5a4bf;
  border: 1px solid #aaa;
}
body ::-webkit-scrollbar-thumb:hover {
  background: #ffffff;
}
