@-webkit-keyframes autofill {
  0%, 100% {
    color: inherit;
    background: transparent;
  }
}

input:-webkit-autofill {
  -webkit-animation-delay: 1s; /* Safari support - any positive time runs instantly */
  -webkit-animation-name: autofill;
  -webkit-animation-fill-mode: both;
}

/*
 * Remove auto-fill styles on webkit browsers.
 *
 * There's a weird behavior when hovering the auto-fill options,
 * it changes the background and the font-size of the input,
 * but couldn't find a solution for that. =P
 */
:-webkit-autofill,
:-webkit-autofill:hover,
:-webkit-autofill:focus,
:-webkit-autofill:active {
  border: inherit;
  font-size: inherit;
  -webkit-text-fill-color: inherit;
  -webkit-box-shadow: 0 0 0 1000px #f0f0f0 inset;
  transition: background-color 5000s ease-in-out 0s;
}

/*
 * Normalize the font styles for the text inside an auto-filled input.
 * The "rem" size means that it'll receive the font-size of the root element.
 */
:-webkit-autofill::first-line {
  font-family: "Roboto", sans-serif;
  font-size: 1rem;
  font-weight: 400;
  color: inherit;
}

.v-application.theme--dark .v-sheet {
  background-color: black;
  border-color: black;
}

#inspire.v-application.theme--dark {
  background-color: black;
}


.v-application .faded {
  opacity: 0.4;
}

.v-application .theme--light.v-text-field > .v-input__control > .v-input__slot:before {
  border-color: transparent;
}

.v-application .v-subheader {
  font-weight: 300;
  font-size: 0.9em;
}

.v-application .cursor-pointer {
  cursor: pointer;
}

.v-application .v-btn {
  letter-spacing: 0.02em;
}

.theme--dark .drag--container {
  background: #000;
}

.drag--container {
  background: white;
  padding: 5px;
  border-radius: 10px;
}

.v-application .app-menu .v-treeview-node__level {
  width: 1px;
}

.v-application .app-menu .v-treeview-node {
  margin-left: 5px;
}

.v-application .v-content {
  transition: none
}


.v-application.theme--dark .color-pill {
  background-color: #333;
}

.v-application .color-pill {
  border-radius: 4px;
  font-size: 10px;
  color: white;
  display: inline-block;
  background-color: #ccc;
  text-transform: uppercase;
  font-weight: 600;
  padding: 1px 10px;
  line-height: 1.5em;
  opacity: 0.8;
  letter-spacing: 0.3px;
}

.v-application.theme--dark a {
  color: #ccc
}

.theme--dark * {
  scrollbar-width: thin;
  scrollbar-color: #333 transparent;
}

/* Scrollbar */
.theme--dark *::-webkit-scrollbar {
  width: 10px;
}

.theme--dark *::-webkit-scrollbar-track {
  background: transparent;
}

.theme--dark *::-webkit-scrollbar-thumb {
  background-color: #333;
  border-radius: 4px;
  border: 1px solid #333;
}

.theme--dark .v-overlay.v-overlay--active > .v-overlay__scrim {
  opacity: 0.2 !important;
  background-color: rgb(255, 255, 255) !important;
  border-color: rgb(255, 255, 255) !important;
}

.theme--light *::-webkit-scrollbar {
  width: 10px;
}

.theme--light *::-webkit-scrollbar-track {
  background: transparent;
}

.theme--light *::-webkit-scrollbar-thumb {
  background-color: #ddd;
  border-radius: 4px;
  border: 1px solid #ddd;
}


/* Tree view */
.app-menu .v-treeview-node {
  cursor: pointer;
  margin-left: 20px;
}

.app-menu .v-treeview-node__label {
  margin-left: 0;
}

.cursorPointer {
  cursor: pointer;
}

.v-application.theme--dark .primary--text {
  color: #fff !important;
  caret-color: #fff !important;
}

.v-application .app-menu .v-treeview--dense .v-treeview-node__root {
  min-height: 30px;
}

/* First one keeps its height */
.v-application .app-menu .v-treeview.v-treeview--dense > .v-treeview-node > .v-treeview-node__root {
  min-height: 40px;
}

.theme--dark.v-skeleton-loader .v-skeleton-loader__actions,
.theme--dark.v-skeleton-loader .v-skeleton-loader__article,
.theme--dark.v-skeleton-loader .v-skeleton-loader__card-heading,
.theme--dark.v-skeleton-loader .v-skeleton-loader__card-text,
.theme--dark.v-skeleton-loader .v-skeleton-loader__date-picker,
.theme--dark.v-skeleton-loader .v-skeleton-loader__list-item,
.theme--dark.v-skeleton-loader .v-skeleton-loader__list-item-avatar,
.theme--dark.v-skeleton-loader .v-skeleton-loader__list-item-avatar-three-line,
.theme--dark.v-skeleton-loader .v-skeleton-loader__list-item-avatar-two-line,
.theme--dark.v-skeleton-loader .v-skeleton-loader__list-item-text,
.theme--dark.v-skeleton-loader .v-skeleton-loader__list-item-three-line,
.theme--dark.v-skeleton-loader .v-skeleton-loader__list-item-two-line,
.theme--dark.v-skeleton-loader .v-skeleton-loader__table-heading,
.theme--dark.v-skeleton-loader .v-skeleton-loader__table-tbody,
.theme--dark.v-skeleton-loader .v-skeleton-loader__table-tfoot,
.theme--dark.v-skeleton-loader .v-skeleton-loader__table-thead {
  background: transparent !important;
}

.opacity-blended {
  opacity: 0.8;
}

.opacity-faded {
  opacity: 0.5;
}


.small-tabs {
  border-top-left-radius: 7px;
  border-top-right-radius: 7px;
  opacity: 0.5;
  text-transform: capitalize;
}

.small-tabs .v-tab {
  font-size: 0.8em;
  text-transform: capitalize
}

.drag-cursor {
  cursor: move !important;
}

.v-chip .v-chip__close.v-icon {
  color: inherit;
  margin-left: 10px;
}

/**
 Helpers for common scenarios
*/
.w-50 {
  width: 50%;
}

.w-100 {
  width: 100% !important;
  min-width: 0 !important;
}

.h-100 {
  height: 100% !important;
  min-height: 0 !important;
}

.flex--column {
  display: flex !important;
  flex-direction: column !important;
  height: 100% !important;
  min-height: 0 !important;
}

.flex--row {
  display: flex;
  width: 100%;
}

.text--overflow {
  display: block !important;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}
