/*ICON STYLES*/
div.vueIcon {
  position: relative;
  display: inline-block;
  border: 1px solid #888888;
  min-height: 1.6rem;
  min-width: 1.6rem;
  border-radius: 50%;
  text-align: center;
  font-size: 1.33333rem;
  line-height: 1.6rem;
  background-position: center;
  background-size: 60%;
  background-repeat: no-repeat;
  outline: none;
  align-self: center;
  color: #888888;
  /*Icon background size fixes*/
  /*Icon background size fixes*/ }
  div.vueIcon > .markerLeft {
    opacity: 0;
    position: absolute;
    top: 50%;
    right: 100%;
    width: 1px;
    height: 1px;
    background-color: transparent; }
  div.vueIcon > .markerRight {
    opacity: 0;
    position: absolute;
    top: 50%;
    left: 100%;
    width: 1px;
    height: 1px;
    background-color: transparent; }
  div.vueIcon > .messageBox {
    position: fixed;
    transform: translate(0);
    display: none;
    top: 0px;
    left: 0px;
    flex-wrap: nowrap;
    align-items: flex-start;
    min-height: 1rem;
    max-width: 15rem;
    z-index: 102; }
    div.vueIcon > .messageBox > .arrow {
      width: 0;
      height: 0;
      border-top: 0.46667rem solid transparent;
      border-bottom: 0.46667rem solid transparent;
      margin-top: 0.8rem; }
    div.vueIcon > .messageBox > .msg {
      background-color: #888888;
      color: #FFFFFF;
      font-size: inherit;
      padding: .5rem;
      text-align: left;
      font-size: 1rem;
      line-height: 1.5rem; }
  div.vueIcon:hover > .messageBox {
    display: flex;
    animation: icon-fade-in 100ms ease-in; }
  div.vueIcon .icon-enter-active {
    animation: icon-fade-in 100ms ease-in; }
  div.vueIcon .icon-leave-active {
    animation: icon-fade-in 100ms ease-in reverse; }
  div.vueIcon.right > .messageBox > .arrow {
    border-right: 0.7rem solid #888888; }
  div.vueIcon.left > .messageBox {
    flex-direction: row-reverse; }
    div.vueIcon.left > .messageBox > .arrow {
      border-left: 0.7rem solid #888888; }
  div.vueIcon.mobile {
    background-size: 0.84211rem; }
  div.vueIcon.small {
    min-height: 1.06667rem;
    min-width: 1.06667rem;
    height: 1.06667rem;
    width: 1.06667rem;
    font-size: 0.71111rem;
    line-height: 1.06667rem; }
    div.vueIcon.small > .messageBox {
      top: -0.8rem; }
  div.vueIcon.larger1Point3 {
    min-height: 2.08rem;
    min-width: 2.08rem;
    height: 2.08rem;
    width: 2.08rem;
    font-size: 2.08rem;
    line-height: 2.08rem; }
    div.vueIcon.larger1Point3 > .messageBox {
      top: -0.8rem; }
  div.vueIcon.slightlyLarger {
    min-height: 2.4rem;
    min-width: 2.4rem;
    height: 2.4rem;
    width: 2.4rem;
    font-size: 2.4rem;
    line-height: 2.4rem; }
    div.vueIcon.slightlyLarger > .messageBox {
      top: -0.8rem; }
  div.vueIcon.large {
    min-height: 3.2rem;
    min-width: 3.2rem;
    height: 3.2rem;
    width: 3.2rem;
    font-size: 3.2rem;
    line-height: 3.2rem; }
    div.vueIcon.large > .messageBox {
      top: -0.8rem; }
  div.vueIcon.veryLarge {
    min-height: 4rem;
    min-width: 4rem;
    height: 4rem;
    width: 4rem;
    font-size: 4rem;
    line-height: 4rem;
    background-size: 2rem; }
    div.vueIcon.veryLarge > .messageBox {
      top: -0.8rem; }
  div.vueIcon.noBorder {
    border: none; }
  div.vueIcon:hover > .messageBox {
    cursor: initial; }
  div.vueIcon.greyWithMouseOver {
    background-color: #888888; }
  div.vueIcon.greyWithMouseOver:hover {
    background-color: #1d82b9; }
  div.vueIcon.icon-normal {
    cursor: default; }
  div.vueIcon.icon-pointer {
    cursor: pointer; }
  div.vueIcon.icon-help {
    cursor: help; }
  div.vueIcon.swatchA1 {
    color: #13638f;
    border-color: #13638f; }

@keyframes icon-fade-in {
  0% {
    opacity: 0; }
  100% {
    opacity: 1; } }
