.theme--light.v-icon {
  color: rgba(0, 0, 0, 0.54);
}
.theme--light.v-icon:focus::after {
  opacity: 0.12;
}
.theme--light.v-icon.v-icon.v-icon--disabled {
  color: rgba(0, 0, 0, 0.38) !important;
}

.theme--dark.v-icon {
  color: #FFFFFF;
}
.theme--dark.v-icon:focus::after {
  opacity: 0.24;
}
.theme--dark.v-icon.v-icon.v-icon--disabled {
  color: rgba(255, 255, 255, 0.5) !important;
}

.v-icon.v-icon {
  align-items: center;
  display: inline-flex;
  font-feature-settings: "liga";
  font-size: 24px;
  justify-content: center;
  letter-spacing: normal;
  line-height: 1;
  position: relative;
  text-indent: 0;
  transition: 0.3s cubic-bezier(0.25, 0.8, 0.5, 1), visibility 0s;
  vertical-align: middle;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
.v-icon.v-icon::after {
  background-color: currentColor;
  border-radius: 50%;
  content: "";
  display: inline-block;
  height: 100%;
  left: 0;
  opacity: 0;
  pointer-events: none;
  position: absolute;
  top: 0;
  transform: scale(1.3);
  width: 100%;
  transition: opacity 0.2s cubic-bezier(0.4, 0, 0.6, 1);
}
.v-icon.v-icon--dense {
  font-size: 20px;
}

.v-icon--right {
  margin-left: 8px;
}
.v-icon--left {
  margin-right: 8px;
}
.v-icon.v-icon.v-icon--link {
  cursor: pointer;
  outline: none;
}
.v-icon--disabled {
  pointer-events: none;
}
.v-icon--dense .v-icon__component,
.v-icon--dense .v-icon__svg {
  height: 20px;
}
.v-icon__component {
  height: 24px;
  width: 24px;
}
.v-icon__svg {
  height: 24px;
  width: 24px;
  fill: currentColor;
}
