/**
** LICENSE ICONS
** List for license icons with descriptions
**/

.c-license-icons__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
}
.c-license-icons__licenselabel {
  margin-left: $spacing--small;
}

.c-license-icons__item {
  display: flex;
  padding-bottom: 5px;
  margin-bottom: 0;
  margin-right: 0.2em;
  line-height: 1.3rem;
}

.c-license-icons__hover {
  z-index: 1;
  opacity: 0;
  display: none;
  max-width: 300px;
  position: absolute;
  background: $brand-color;
  color: $white;
  text-align: left;
  border-radius: 2px;
  padding: $spacing--small;
  font-family: $font;
  transform: translate(0, calc(-100% - 6px));
  @include font-size(14px, 18px);
}
.c-license-icons__item:hover {
  .c-license-icons__icon--hover {
    color: $brand-color;
  }
  .c-license-icons__hover {
    display: block;
    opacity: 1;
    animation-name: fadeIn;
    animation-duration: 200ms;
  }
}

.c-license-icons__icon {
  width: 24px;
  height: 24px;
  min-width: 24px;
}

.c-license-icons__modelpermission {
  svg {
    width: 24px;
    height: 24px;
    margin-right: $spacing--small;
  }
  margin-top: $spacing--small/2;
  padding-top: $spacing--small/1.5;
  border-top: 2px solid $brand-color--light;
}
