body {
  background-color: #edf1f5;
}

input[type="radio"] {
  display: none;
}

.remove-scroll {
  overflow: hidden !important;
}

.add-scroll {
  overflow: scroll !important;
  /*    max-height: 50vh;*/
}

nav {
  width: 100%;
  height: 60px;
  background-color: #f44336;
  /* overflow: hidden; */
  position: fixed;
  z-index: 999;
  top: 0;
}

nav ul {
  float: right;
  list-style: none;
  padding: 0;
  margin: 0;
  height: 60px;
  margin-right: 35px;
}

nav li,
nav li a {
  display: inline-block;
  height: 60px;
  line-height: 60px;
  /* width: 55px; */
  text-align: center;
  color: #fff;
  margin-top: -1px;
  padding: 0 15px;
  float: left;
}

nav li a:hover {
  color: #fff;
  cursor: pointer;
  background-color: #da3b2f;
}

.brandlogo {
  background-image: url(../images/logo.png);
  background-repeat: no-repeat;
  width: 230px;
  height: 60px;
  float: left;
  background-size: 150px;
  background-position: center;
  background-color: #fff;
  border-bottom: 1px solid #e8e8e8;
}

.sidebar {
  background: #fff;
  box-shadow: 1px 0px 20px rgba(0, 0, 0, 0.08);
  z-index: 10;
  position: fixed;
  width: 230px;
  padding-top: 60px;
  height: 100%;
  padding-left: 0px;
  padding-right: 0px;
  top: 0;
  z-index: 23;
}

.sidebar .panel-heading a {
  display: block;
  text-align: center;
  padding: 0px 10px;
  background-color: #ffffff;
  position: relative;
  transition: all ease 0.2s;
  text-align: left;
  padding-left: 49px;
  height: 60px;
  line-height: 60px;
}

a[aria-expanded="true"] {
  color: #f44336;
}

.panel-title a[aria-expanded="true"]::after {
  content: "";
  background-image: url(arrow.svg);
  position: absolute;
  width: 20px;
  height: 20px;
  right: 9px;
  top: 20px;
  background-size: 15px;
  background-repeat: no-repeat;
  background-position: center;
  transform: rotate(90deg);
  transition: transform ease 0.5s;
}

.panel-title a[aria-expanded="false"]::after {
  content: "";
  background-image: url(arrow.svg);
  position: absolute;
  width: 20px;
  height: 20px;
  right: 20px;
  background-size: 15px;
  background-repeat: no-repeat;
  background-position: center;
  transition: transform ease 0.5s;
  top: 20px;
}

.sidebar .panel-heading a:hover {
  background-color: rgba(0, 0, 0, 0.03);
}

.panel-title a i {
  float: left;
  font-weight: 600;
  position: absolute;
  left: 17px;
  /* top: 13px; */
}

.main-content {
  padding-left: 230px;
  display: inline-block;
  height: 100%;
  min-height: 230px;
  width: 100%;
  margin-top: 70px;
}

.data_accordion_table {
  width: 100%;
  margin: 0 auto;
  max-width: 1020px;
  margin-top: 30px;
  background-color: #fff;
  padding: 15px 25px;
  position: relative;
}

.data_accordion_table table {
  width: 100%;
  text-align: center;
}

.data_accordion_table th {
  text-align: center;
  padding: 7px 5px;
  background-color: #fdf3ff;
  color: red;
  border: 1px solid #f1f1f1;
  font-weight: 600;
}

.data_accordion_table td {
  padding: 10px 5px;
  border: 1px solid #f1f1f1;
  position: relative;
}

.hiddenRow {
  padding: 0 !important;
  background-color: #f7f5f5;
}

.vehicles_table {
  margin: 5%;
  width: 95%;
  max-width: 90%;
}

.vehicles_table th {
  padding: 3px;
  background-color: #e4e4e4;
  color: black;
  border: 1px solid #e4e4e4;
  font-size: 13px;
}

.active_vehicle {
  position: relative;
  padding-left: 20px;
  width: 120px;
  display: inline-block;
}

.active_vehicle::before {
  content: "";
  width: 15px;
  height: 15px;
  background-color: #4caf50;
  position: absolute;
  left: -3px;
  top: 3px;
  border-radius: 50%;
}

.inactive_vehicle {
  position: relative;
  padding-left: 20px;
  width: 120px;
  display: inline-block;
}

.inactive_vehicle::before {
  content: "";
  width: 15px;
  height: 15px;
  background-color: red;
  position: absolute;
  left: -3px;
  top: 3px;
  border-radius: 50%;
}

.expiring_vehicle {
  position: relative;
  padding-left: 20px;
  width: 120px;
  display: inline-block;
}

.expiring_vehicle::before {
  content: "";
  width: 15px;
  height: 15px;
  background-color: #ff9800;
  position: absolute;
  left: -3px;
  top: 3px;
  border-radius: 50%;
}

.view_vehicles td:first-child::before {
  content: "\f107";
  font-family: Flaticon;
  position: absolute;
  left: 7px;
  color: #bdbaba;
  font-size: 12px;
  top: 17px;
  transition: all ease 0.3s;
}

.accordion-toggle {
  cursor: pointer;
}

.data_accordion_table input[type="search"] {
  border: 1px solid #e2e1e1;
  border-radius: 2px;
  padding: 4px;
  text-align: center;
  background-color: #f9f9f9;
  outline: none;
  transition: all ease 0.2s;
}

.data_accordion_table input[type="search"]:focus {
  background-color: #f5f4f4;
}

.data_accordion_table h1 {
  text-align: center;
  font-size: 1.7em;
  font-weight: 600;
  margin-bottom: 35px;
  color: #6b6b6b;
}

.details_table table {
  min-width: 100%;
  text-align: center;
  margin: 0 auto;
}

.details_table h1 {
  text-align: center;
  font-size: 18px;
  font-weight: 600;
}

.details_table td {
  padding: 7px 10px;
  border: 1px solid #e8e6e6;
  font-size: 13px;
}

p.protected {
  text-align: center;
  padding: 10px;
  background-color: #ebffd3;
  color: #000;
}

p.unprotected {
  text-align: center;
  padding: 10px;
  background-color: #ffe5dd;
  color: #f44336;
}

p.expiring {
  text-align: center;
  padding: 10px;
  background-color: #fff3e0;
  color: #ff9800;
}

p.expiring i,
p.unprotected i,
p.protected i {
  vertical-align: sub;
  padding-right: 13px;
}

#editvehicle input[type="number"] {
  padding: 5px 10px;
  border-radius: 2px;
  border: 1px solid #d2d1d1;
}

.delete_confirm {
  color: red;
  font-size: 17px;
  text-align: center;
  font-weight: 600;
  margin-bottom: 20px;
  margin-top: 15px;
}

.short_notification_detail {
  text-align: center;
}

#notify h2 {
  text-align: center;
  font-size: 17px;
  font-weight: 600;
  color: red;
}

#notify textarea {
  width: 100%;
  max-width: 412px;
  margin: 0 auto;
  display: block;
  margin-top: 15px;
  padding: 10px;
  border: 1px solid #e6e4e4;
  resize: vertical;
  outline: none;
}

#notify .btn-group,
.btn-group-vertical {
  margin: 0 auto;
}

#notify .details_table {
  text-align: center;
}

#notify textarea:focus {
  background-color: #e5e5e5;
}

#text-carousel {
  margin-top: 10px;
}

.ex_status {
  display: block;
  text-align: center;
  padding-top: 9px;
}

.carousal_arrows::before,
.carousal_arrows_left::before {
  font-family: Flaticon;
  content: "\f105";
  color: #000;
}

.carousal_arrows_left {
  transform: rotate(180deg);
  display: block;
}

.carousel-content h1 {
  text-align: center;
  font-size: 15px;
  font-weight: 700;
}

.editabletextarea {
  display: block;
  width: 100%;
  max-width: 455px;
  margin: 0 auto;
  margin-top: 13px;
  border: 1px solid #e0e0e0;
  resize: vertical;
  outline: none;
  transition: all ease 0.3s;
  padding: 15px;
}

.main_graph {
  text-align: center;
  max-width: 90%;
  margin: 0 auto;
  padding-top: 9px;
  background-color: #fff;
  position: relative;
}

.main_graph h1 {
  margin-bottom: 61px;
  font-size: 1.8em;
  font-weight: 600;
  color: #636262;
}

.main_graph img {
  max-width: 100%;
}

.editabletextarea:focus {
  background-color: #f5f5f5;
}

.add_user {
  width: 98%;
  margin: 25px auto;
  max-width: 520px;
  background-color: #fff;
  padding: 15px 35px;
  text-align: center;
}

.add_user input {
  padding: 9px 6px;
  border: 1px solid #e4e4e4;
  width: 100%;
  margin-bottom: 10px;
  padding-left: 10px;
  outline: none;
}

.add_user textarea {
  padding: 9px 6px;
  border: 1px solid #e4e4e4;
  width: 100%;
  margin-bottom: 10px;
  padding-left: 10px;
  outline: none;
  resize: vertical;
}

.submitbuttons {
  display: block;
  width: 100%;
  background-color: #ed1c24;
  border: 0px;
  border-radius: 2px;
  height: 45px;
  line-height: 45px;
  color: #fff;
  margin: 25px 0px 10px;
  outline: none;
  transition: all ease 0.2s;
}

.submitbuttons:hover {
  background-color: #d41920;
}

.add_user .btn-group {
  margin-top: 15px;
  margin-bottom: 62px;
  position: relative;
}

.add_user h1 {
  font-size: 1.7em;
  font-weight: 600;
  margin-bottom: 35px;
  color: red;
}

.stats_table {
  width: 100%;
  max-width: 750px;
  margin: 0 auto;
  margin-bottom: 15px;
  /* margin-top:  20px; */
}

.stats_table label {
  display: block;
}

.stats_table a {
  font-size: 24px;
  color: rgb(255, 111, 111);
}

.stats_table td {
  border: 1px solid #e0e0e0;
  padding: 7px 7px;
  background-color: #f3f3f3;
}

.invoice_unbilled {
  max-width: 453px;
  margin: 0 auto;
}

.invoice_unbilled h4 {
  font-weight: 600;
  font-size: 15px;
  margin: 0;
}

.invoice_unbilled label {
  font-size: 21px;
  font-weight: 600;
  color: #f44336;
}

.invoice_unbilled span {
  display: block;
  padding-bottom: 5px;
  font-size: 13px;
}

.add_invoices {
  margin-bottom: 0px;
  padding-bottom: 2px;
}

.select_box {
  position: relative;
  text-align: center;
  width: 100%;
  height: 50px;
}

.select_box .select_mate {
  top: 0;
  width: calc(100% - 29px);
  margin: 0;
  left: 14px;
}

.select_box .selecionado_opcion {
  max-width: 100%;
  width: 100%;
}

.message_text {
  margin-bottom: 10px;
  padding: 10px;
  background-color: rgba(255, 0, 0, 0.07058823529411765);
  color: #484747;
}

.message_text label {
  display: block;
  font-size: 18px;
  padding-top: 10px;
  color: red;
}

.dosage_table {
  width: 100%;
  max-width: 492px;
  margin: 0 auto;
}

.dosage_table th {
  text-align: center;
  background-color: rgb(194, 194, 194);
  padding: 4px;
  color: #fff;
  font-weight: 400;
}

.dosage_table td {
  border: 1px solid #f5e6e6;
  padding: 5px;
  text-align: center;
}

.dosage_head {
  text-align: center;
  font-weight: 700;
  font-size: 16px;
  margin-top: 25px;
}

.checkbox_container {
  text-align: center;
  display: inline-block;
  width: 100%;
  padding-top: 15px;
}

.view_vehicles td[aria-expanded="true"]:first-child::before {
  content: "\f107";
  font-family: Flaticon;
  position: absolute;
  left: 7px;
  color: #bdbaba;
  font-size: 12px;
  top: 17px;
  transform: rotate(90deg);
}

.form_error {
  color: #7d7d7d;
  background-color: #ffe9e9;
  padding: 9px;
}

.form_error a {
  font-weight: 400;
  color: red;
}

.add_user label {
  display: block;
  text-align: left;
  /* padding-left: 2px; */
  font-weight: 600;
  margin-top: 15px;
}

.message_text label {
  text-align: center;
  margin-top: 0px;
}

.invoice_unbilled td label {
  text-align: center;
  margin-top: 0px;
}

.resolved {
  color: green;
}

input[type="file"] {
  display: none;
}

.upload_logo {
  text-align: center !important;
  margin-top: 0px !important;
  margin-bottom: 20px;
  border: 1px dashed #d0d0d0;
  padding: 15px 10px;
  cursor: pointer;
  color: #a5a1a1;
}

.login_page {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #f44336;
}

.login {
  min-width: 300px;
  width: 100%;
  max-width: 400px;
  padding: 5px 25px 25px;
  background-color: #fff;
  position: relative;
  border-radius: 2px;
}
.center {
  text-align: center;
}

.login_page h1 {
  text-align: center;
  /* margin: 15px 0px 20px; */
  font-size: 20px;
}

.login_page .logo {
  display: block;
  margin: 0 auto;
  margin-bottom: 19px;
  height: 64px;
  margin-top: 20px;
}

.login_margins {
  margin-bottom: 6px;
}

.logos {
  background-color: #f44336;
  background-image: url(tireject.png);
  background-size: 95px;
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0.07;
}

.unresolved {
  padding: 10px;
  color: red;
}

#deleteuser,
#deletevehicle {
  z-index: 9999;
}

#dealer_search {
  width: 100%;
  padding: 10px;
}

#logo_preview {
  margin-bottom: 20px;
}

.table_loader {
  animation: blink 0.8s infinite;
}
.store_icons{
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
.store_icons a{
  display:inline-block;
}
.store_icons img{
  height: 40px;
  width: auto;
  display: block;
  margin: 10px;
}
}
.table_loader span {
  display: block;
  width: 80%;
  margin: 0 auto;
  background-color: #f5f5f5;
  height: 30px;
}

@keyframes blink {
  0% {
    opacity: 1;
  }

  25% {
    opacity: 0.7;
  }

  75% {
    opacity: 0.8;
  }

  100% {
    opacity: 0.9;
  }
}

#api_error {
  color: red;
  font-size: 15px;
  border: 1px solid #aaa;
  border-radius: 2px;
  margin-bottom: 12px;
  background: #f5f5f5;
  line-height: 60px;
  text-align: center;
}

#api_error p {
  margin: 0px !important;
}

/**
 * React Select
 * ============
 * Created by Jed Watson and Joss Mackison for KeystoneJS, http://www.keystonejs.com/
 * https://twitter.com/jedwatson https://twitter.com/jossmackison https://twitter.com/keystonejs
 * MIT License: https://github.com/JedWatson/react-select
*/

.Select {
  position: relative;
}

.Select input::-webkit-contacts-auto-fill-button,
.Select input::-webkit-credentials-auto-fill-button {
  display: none !important;
}

.Select input::-ms-clear {
  display: none !important;
}

.Select input::-ms-reveal {
  display: none !important;
}

.Select,
.Select div,
.Select input,
.Select span {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

.Select.is-disabled .Select-arrow-zone {
  cursor: default;
  pointer-events: none;
  opacity: 0.35;
}

.Select.is-disabled > .Select-control {
  background-color: #f9f9f9;
}

.Select.is-disabled > .Select-control:hover {
  box-shadow: none;
}

.Select.is-open > .Select-control {
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
  background: #fff;
  border-color: #b3b3b3 #ccc #d9d9d9;
}

.Select.is-open > .Select-control .Select-arrow {
  top: -2px;
  border-color: transparent transparent #999;
  border-width: 0 5px 5px;
}

.Select.is-searchable.is-open > .Select-control {
  cursor: text;
}

.Select.is-searchable.is-focused:not(.is-open) > .Select-control {
  cursor: text;
}

.Select.is-focused > .Select-control {
  background: #fff;
}

.Select.is-focused:not(.is-open) > .Select-control {
}

.Select.has-value.is-clearable.Select--single > .Select-control .Select-value {
  padding-right: 42px;
}

.Select.has-value.Select--single
  > .Select-control
  .Select-value
  .Select-value-label,
.Select.has-value.is-pseudo-focused.Select--single
  > .Select-control
  .Select-value
  .Select-value-label {
  color: #333;
}

.Select.has-value.Select--single
  > .Select-control
  .Select-value
  a.Select-value-label,
.Select.has-value.is-pseudo-focused.Select--single
  > .Select-control
  .Select-value
  a.Select-value-label {
  cursor: pointer;
  text-decoration: none;
}

.Select.has-value.Select--single
  > .Select-control
  .Select-value
  a.Select-value-label:hover,
.Select.has-value.is-pseudo-focused.Select--single
  > .Select-control
  .Select-value
  a.Select-value-label:hover,
.Select.has-value.Select--single
  > .Select-control
  .Select-value
  a.Select-value-label:focus,
.Select.has-value.is-pseudo-focused.Select--single
  > .Select-control
  .Select-value
  a.Select-value-label:focus {
  color: #007eff;
  outline: none;
  text-decoration: underline;
}

.Select.has-value.Select--single
  > .Select-control
  .Select-value
  a.Select-value-label:focus,
.Select.has-value.is-pseudo-focused.Select--single
  > .Select-control
  .Select-value
  a.Select-value-label:focus {
  background: #fff;
}

.Select.has-value.is-pseudo-focused .Select-input {
  opacity: 0;
}

.Select.is-open .Select-arrow,
.Select .Select-arrow-zone:hover > .Select-arrow {
  border-top-color: #666;
}

.Select.Select--rtl {
  direction: rtl;
  text-align: right;
}

.Select-control {
  background-color: #fff;
  border-radius: 2px;
  border: 1px solid #e4e4e4;
  color: #000;
  cursor: default;
  display: table;
  border-spacing: 0;
  border-collapse: separate;
  height: 45px;
  outline: none;
  overflow: hidden;
  position: relative;
  width: 100%;
  margin-bottom: 15px;
}

.Select-control:hover {
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.06);
}

.Select-control .Select-input:focus {
  outline: none;
  background: #fff;
}

.Select-placeholder,
.Select--single > .Select-control .Select-value {
  bottom: 0;
  color: #aaa;
  left: 0;
  line-height: 34px;
  padding-left: 10px;
  padding-right: 10px;
  position: absolute;
  right: 0;
  top: 0;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  padding-top: 5px;
}

.Select-input {
  height: 34px;
  padding-left: 10px;
  padding-right: 10px;
  vertical-align: middle;
}

.Select-input > input {
  width: 100%;
  background: none transparent;
  border: 0 none;
  box-shadow: none;
  cursor: default;
  display: inline-block;
  font-family: inherit;
  font-size: inherit;
  margin: 0;
  outline: none;
  line-height: 25px;
  /* For IE 8 compatibility */
  padding: 8px 0 12px;
  /* For IE 8 compatibility */
  -webkit-appearance: none;
}

.is-focused .Select-input > input {
  cursor: text;
}

.has-value.is-pseudo-focused .Select-input {
  opacity: 0;
}

.Select-control:not(.is-searchable) > .Select-input {
  outline: none;
}

.Select-loading-zone {
  cursor: pointer;
  display: table-cell;
  position: relative;
  text-align: center;
  vertical-align: middle;
  width: 16px;
}

.Select-loading {
  -webkit-animation: Select-animation-spin 400ms infinite linear;
  -o-animation: Select-animation-spin 400ms infinite linear;
  animation: Select-animation-spin 400ms infinite linear;
  width: 16px;
  height: 16px;
  box-sizing: border-box;
  border-radius: 50%;
  border: 2px solid #ccc;
  border-right-color: #333;
  display: inline-block;
  position: relative;
  vertical-align: middle;
}

.Select-clear-zone {
  -webkit-animation: Select-animation-fadeIn 200ms;
  -o-animation: Select-animation-fadeIn 200ms;
  animation: Select-animation-fadeIn 200ms;
  color: #999;
  cursor: pointer;
  display: table-cell;
  position: relative;
  text-align: center;
  vertical-align: middle;
  width: 17px;
}

.Select-clear-zone:hover {
  color: #d0021b;
}

.Select-clear {
  display: inline-block;
  font-size: 18px;
  line-height: 1;
}

.Select--multi .Select-clear-zone {
  width: 17px;
}

.Select-arrow-zone {
  cursor: pointer;
  display: table-cell;
  position: relative;
  text-align: center;
  vertical-align: middle;
  width: 25px;
  padding-right: 5px;
}

.Select--rtl .Select-arrow-zone {
  padding-right: 0;
  padding-left: 5px;
}

.Select-arrow {
  border-color: #999 transparent transparent;
  border-style: solid;
  border-width: 5px 5px 2.5px;
  display: inline-block;
  height: 0;
  width: 0;
  position: relative;
}

.Select-control > *:last-child {
  padding-right: 5px;
}

.Select--multi .Select-multi-value-wrapper {
  display: inline-block;
}

.Select .Select-aria-only {
  position: absolute;
  display: inline-block;
  height: 1px;
  width: 1px;
  margin: -1px;
  clip: rect(0, 0, 0, 0);
  overflow: hidden;
  float: left;
}

@-webkit-keyframes Select-animation-fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes Select-animation-fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.Select-menu-outer {
  border-bottom-right-radius: 4px;
  border-bottom-left-radius: 4px;
  background-color: #fff;
  border: 1px solid #ccc;
  border-top-color: #e6e6e6;
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.06);
  box-sizing: border-box;
  margin-top: -1px;
  max-height: 200px;
  position: absolute;
  left: 0;
  top: 100%;
  width: 100%;
  z-index: 1;
  -webkit-overflow-scrolling: touch;
}

.Select-menu {
  max-height: 198px;
  overflow-y: auto;
}

.Select-option {
  box-sizing: border-box;
  background-color: #fff;
  color: #666666;
  cursor: pointer;
  display: block;
  padding: 8px 10px;
}

.Select-option:last-child {
  border-bottom-right-radius: 4px;
  border-bottom-left-radius: 4px;
}

.Select-option.is-selected {
  background-color: #f5faff;
  /* Fallback color for IE 8 */
  background-color: rgba(0, 126, 255, 0.04);
  color: #333;
}

.Select-option.is-focused {
  background-color: #ebf5ff;
  /* Fallback color for IE 8 */
  background-color: rgba(0, 126, 255, 0.08);
  color: #333;
}

.Select-option.is-disabled {
  color: #cccccc;
  cursor: default;
}

.Select-noresults {
  box-sizing: border-box;
  color: #999999;
  cursor: default;
  display: block;
  padding: 8px 10px;
}

.Select--multi .Select-input {
  vertical-align: middle;
  margin-left: 10px;
  padding: 0;
}

.Select--multi.Select--rtl .Select-input {
  margin-left: 0;
  margin-right: 10px;
}

.Select--multi.has-value .Select-input {
  margin-left: 5px;
}

.Select--multi .Select-value {
  background-color: #ebf5ff;
  /* Fallback color for IE 8 */
  background-color: rgba(0, 126, 255, 0.08);
  border-radius: 2px;
  border: 1px solid #c2e0ff;
  /* Fallback color for IE 8 */
  border: 1px solid rgba(0, 126, 255, 0.24);
  color: #000;
  display: inline-block;
  font-size: 0.9em;
  line-height: 1.4;
  margin-left: 5px;
  margin-top: 5px;
  vertical-align: top;
}

.Select--multi .Select-value-icon,
.Select--multi .Select-value-label {
  display: inline-block;
  vertical-align: middle;
}

.Select--multi .Select-value-label {
  border-bottom-right-radius: 2px;
  border-top-right-radius: 2px;
  cursor: default;
  padding: 2px 5px;
}

.Select--multi a.Select-value-label {
  color: #007eff;
  cursor: pointer;
  text-decoration: none;
}

.Select--multi a.Select-value-label:hover {
  text-decoration: underline;
}

.Select--multi .Select-value-icon {
  cursor: pointer;
  border-bottom-left-radius: 2px;
  border-top-left-radius: 2px;
  border-right: 1px solid #c2e0ff;
  /* Fallback color for IE 8 */
  border-right: 1px solid rgba(0, 126, 255, 0.24);
  padding: 1px 5px 3px;
}

.Select--multi .Select-value-icon:hover,
.Select--multi .Select-value-icon:focus {
  background-color: #d8eafd;
  /* Fallback color for IE 8 */
  background-color: rgba(0, 113, 230, 0.08);
  color: #0071e6;
}

.Select--multi .Select-value-icon:active {
  background-color: #c2e0ff;
  /* Fallback color for IE 8 */
  background-color: rgba(0, 126, 255, 0.24);
}

.Select--multi.Select--rtl .Select-value {
  margin-left: 0;
  margin-right: 5px;
}

.Select--multi.Select--rtl .Select-value-icon {
  border-right: none;
  border-left: 1px solid #c2e0ff;
  /* Fallback color for IE 8 */
  border-left: 1px solid rgba(0, 126, 255, 0.24);
}

.Select--multi.is-disabled .Select-value {
  background-color: #fcfcfc;
  border: 1px solid #e3e3e3;
  color: #333;
}

.Select--multi.is-disabled .Select-value-icon {
  cursor: not-allowed;
  border-right: 1px solid #e3e3e3;
}

.Select--multi.is-disabled .Select-value-icon:hover,
.Select--multi.is-disabled .Select-value-icon:focus,
.Select--multi.is-disabled .Select-value-icon:active {
  background-color: #fcfcfc;
}

@keyframes Select-animation-spin {
  to {
    transform: rotate(1turn);
  }
}

@-webkit-keyframes Select-animation-spin {
  to {
    -webkit-transform: rotate(1turn);
  }
}

.month_select_home {
  width: 224px;
  margin-left: auto;
  margin-right: -4px;
  position: absolute;
  top: 6px;
  right: 10px;
  /* margin-bottom:  10px; */
}

.avoid-clicks {
  cursor: none;
  opacity: 0.4;
}

.react-tagsinput {
  background-color: #fff;
  /*  border: 1px solid #ccc;
  overflow: hidden;
  padding-left: 5px;
  padding-top: 5px;*/
}

.react-tagsinput--focused {
  border-color: #a5d24a;
}

.react-tagsinput-tag {
  background-color: #cde69c;
  border-radius: 2px;
  border: 1px solid #a5d24a;
  color: #638421;
  display: inline-block;
  font-family: sans-serif;
  font-size: 13px;
  font-weight: 400;
  margin-bottom: 5px;
  margin-right: 5px;
  padding: 5px;
}

.react-tagsinput-remove {
  cursor: pointer;
  font-weight: bold;
}

.react-tagsinput-tag a::before {
  content: " ×";
}

.react-tagsinput-input {
  background: transparent;
  border: 0;
  color: #777;
  font-family: sans-serif;
  font-size: 13px;
  font-weight: 400;
  margin-bottom: 6px;
  margin-top: 1px;
  outline: none;
  padding: 5px;
  width: 80px;
}

.btn-group > .btn + .dropdown-toggle {
  padding-right: 8px;
  padding-left: 8px;
  min-height: 30px;
}

.monthid {
  width: 125px;
  float: left;
}

.yearid {
  width: 94px;
  float: left;
  margin-left: 5px;
}

.dynamic_dots {
  width: 15px;
  height: 15px;
  display: inline-block;
  border-radius: 50%;
  margin-right: 8px;
  vertical-align: middle;
}

/* .plantype_description {
    position: absolute;
    bottom: -92px;
    border: 1px solid red;
    padding: 15px;
} */
.plantype_description {
  position: absolute;
  bottom: -92px;
  border: 1px solid red;
  padding: 15px;
  width: 260px;
  left: calc(50% - 130px);
}

.avoid-clicks {
  cursor: not-allowed;
  opacity: 0.4;
  background-color: #aaa;
}

.btn[disabled],
fieldset[disabled] .btn {
  cursor: not-allowed;
  filter: alpha(opacity=65);
  -webkit-box-shadow: none;
  box-shadow: none;
  opacity: 0.65;
  background: #000;
}

.vehicleControlModal .modal-dialog {
  width: 98%;
}

.enclosedHeader {
  margin-bottom: 0px;
  /* border-top-left-radius:  20px; */
  /* border-top-right-radius:  20px; */
  padding: 12px 0px;
  text-align: center;
  background-color: #e6e6e6;
  font-weight: bold;
}

.enclosedHeader + table {
  width: 100%;
  font-size: 13px;
}

.vehicleControlModal a.btn {
  display: block;
  max-width: 186px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 5px;
  border-radius: 25px;
}

.noNotesAvailable {
  text-align: center;
  font-size: 20px;
  /* height:  140px; */
  /* line-height: 140px; */
  color: #949292;
}

.vehiclesNotesHead {
  text-align: center;
  font-weight: 600;
  margin-top: 10px;
  font-size: 20px;
  background-color: #e6e6e6;
  padding: 5px;
}

.edit_vehicle_modal {
  position: absolute;
  right: 19px;
  top: 13px;
  /* background:  #000; */
  padding: 3px;
  padding-right: 5px;
  border-radius: 5px;
  color: black;
  padding-left: 5px;
}

.edit_vehicle_info_modal {
  position: absolute;
  right: 19px;
  top: 13px;
  /* background: #000; */
  padding: 3px;
  padding-right: 5px;
  border-radius: 5px;
  color: #000;
  padding-left: 5px;
}

#dLabel {
  color: #fff;
}

#dLabel + ul li {
  height: auto;
  width: 100%;
  display: block;
  padding: 4px;
  line-height: normal;
  cursor: pointer;
}

#dLabel + ul li a {
  height: auto;
  width: 100%;
  cursor: pointer !important;
}

#dLabel + ul {
  height: auto;
  min-width: 0;
  width: calc(100% - 30px);
  left: 15;
  border-radius: 0;
  top: 57px;
}

.Select-menu-outer {
  z-index: 99;
}

.recharts-wrapper {
  margin: auto;
}

.recharts-legend-item-text {
  text-transform: capitalize;
}

.recharts-tooltip-item-list {
  text-transform: capitalize;
}

/*
 * Container style
 */

.ps {
  overflow: hidden !important;
  overflow-anchor: none;
  -ms-overflow-style: none;
  touch-action: auto;
  -ms-touch-action: auto;
}

/*
   * Scrollbar rail styles
   */

.ps__rail-x {
  display: none;
  opacity: 0;
  transition: background-color 0.2s linear, opacity 0.2s linear;
  -webkit-transition: background-color 0.2s linear, opacity 0.2s linear;
  height: 15px;
  /* there must be 'bottom' or 'top' for ps__rail-x */
  bottom: 0px;
  /* please don't change 'position' */
  position: absolute;
}

.ps__rail-y {
  display: none;
  opacity: 0;
  transition: background-color 0.2s linear, opacity 0.2s linear;
  -webkit-transition: background-color 0.2s linear, opacity 0.2s linear;
  width: 15px;
  /* there must be 'right' or 'left' for ps__rail-y */
  right: 0;
  /* please don't change 'position' */
  position: absolute;
}

.ps--active-x > .ps__rail-x,
.ps--active-y > .ps__rail-y {
  display: block;
  background-color: transparent;
}

.ps:hover > .ps__rail-x,
.ps:hover > .ps__rail-y,
.ps--focus > .ps__rail-x,
.ps--focus > .ps__rail-y,
.ps--scrolling-x > .ps__rail-x,
.ps--scrolling-y > .ps__rail-y {
  opacity: 0.6;
}

.ps__rail-x:hover,
.ps__rail-y:hover,
.ps__rail-x:focus,
.ps__rail-y:focus {
  background-color: #eee;
  opacity: 0.9;
}

/*
   * Scrollbar thumb styles
   */

.ps__thumb-x {
  background-color: #aaa;
  border-radius: 6px;
  transition: background-color 0.2s linear, height 0.2s ease-in-out;
  -webkit-transition: background-color 0.2s linear, height 0.2s ease-in-out;
  height: 6px;
  /* there must be 'bottom' for ps__thumb-x */
  bottom: 2px;
  /* please don't change 'position' */
  position: absolute;
}

.ps__thumb-y {
  background-color: #aaa;
  border-radius: 6px;
  transition: background-color 0.2s linear, width 0.2s ease-in-out;
  -webkit-transition: background-color 0.2s linear, width 0.2s ease-in-out;
  width: 6px;
  /* there must be 'right' for ps__thumb-y */
  right: 2px;
  /* please don't change 'position' */
  position: absolute;
}

.ps__rail-x:hover > .ps__thumb-x,
.ps__rail-x:focus > .ps__thumb-x {
  background-color: #999;
  height: 11px;
}

.ps__rail-y:hover > .ps__thumb-y,
.ps__rail-y:focus > .ps__thumb-y {
  background-color: #999;
  width: 11px;
}

/* MS supports */

@supports (-ms-overflow-style: none) {
  .ps {
    overflow: auto !important;
  }
}

@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .ps {
    overflow: auto !important;
  }
}

td,
td span {
  word-break: break-all;
  white-space: pre-wrap;
}

.refresh_button {
  position: absolute;
  top: 25px;
  right: 33px;
  width: 45px;
  height: 45px;
  background-color: rgba(237, 66, 55, 0.11);
  cursor: pointer;
  transition: all ease 0.2s;
  padding: 5px;
  border-radius: 50%;
}

input:read-only {
  cursor: not-allowed;
  background-color: rgba(220, 219, 219, 0.6509803921568628);
  border: 1px solid #dcd9d9;
}

.refresh_button:hover {
  background-color: rgba(237, 66, 55, 0.18);
}

.refresh_button i {
  right: 33px;
  width: 35px;
  height: 35px;
  background-image: url(refresh.png);
  background-size: 23px;
  background-repeat: no-repeat;
  background-position: center;
  border-radius: 50px;
  cursor: pointer;
  /* transition: transform ease 0.3s; */
  display: inline-block;
}

.refresh_button.refresh_rotate i {
  animation-name: rotate;
  animation-duration: 0.7s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

.uneditable {
  position: absolute;
  background-color: #e8e8e8;
  z-index: 9999;
  width: 280px;
  height: 130px;
  opacity: 0.4;
  cursor: not-allowed;
  margin-top: 8px;
  left: calc(50% - 140px);
}

.csv_export_button {
  display: flex;
  position: absolute;
  top: 35px;
  right: 120px;
}

.checkboxAligned {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: flex-start;
  text-align: left;
}
