.bb-pla-colors {
  width: 100%;
  max-width: 596px;
  margin: 26px auto 10px;
  padding: 0;
  font-family: inherit;
  flex: 0 0 100%;
  order: 99;
  clear: both;
  align-self: stretch;
}

.bb-pla-colors * {
  box-sizing: border-box;
}

.bb-pla-colors__title {
  margin: 0 0 16px !important;
  color: #14245e !important;
  font-size: 16px;
  line-height: 1.3;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .4px;
  text-align: center;
}

.bb-pla-colors__grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 14px;
  width: 100%;
  margin: 0 auto;
}

.bb-pla-colors__item {
  position: relative;
  width: 108px;
  height: 110px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: 1px solid #d9e1f2;
  border-radius: 14px;
  padding: 8px;
  overflow: hidden;
  text-decoration: none !important;
  box-shadow: none;
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.bb-pla-colors__item:hover {
  transform: translateY(-2px);
  border-color: #336fdb;
  box-shadow: 0 8px 20px rgba(20, 36, 94, .10);
}

.bb-pla-colors__item img {
  width: 100%;
  height: 100%;
  max-height: 96px;
  object-fit: contain;
  transform: scale(1.38);
  display: block;
  pointer-events: none;
}

.bb-pla-colors__label {
  position: absolute;
  left: 8px;
  right: 8px;
  bottom: 8px;
  display: block;
  padding: 6px 7px;
  border-radius: 12px;
  font-size: 10px;
  line-height: 1.1;
  font-weight: 800;
  text-align: center;
  opacity: 0;
  transform: translateY(130%);
  pointer-events: none;
  box-shadow: 0 4px 12px rgba(0,0,0,.14);
  transition: opacity .22s ease, transform .22s ease;
}

.bb-pla-colors__item:hover .bb-pla-colors__label,
.bb-pla-colors__item:focus .bb-pla-colors__label {
  opacity: 1;
  transform: translateY(0);
}

.bb-pla-colors__code {
  display: block;
  margin-top: 2px;
  font-size: 14px;
  line-height: 1;
  font-weight: 900;
  letter-spacing: .3px;
}

.bb-pla-colors__label--white {
  background: #ffffff;
  color: #1f2937;
  border: 1px solid #d9e1f2;
}

.bb-pla-colors__label--black {
  background: #111827;
  color: #ffffff;
}

.bb-pla-colors__label--red {
  background: #d62828;
  color: #ffffff;
}

.bb-pla-colors__label--orange {
  background: #f97316;
  color: #1f2937;
  border: 1px solid #d65f0b;
}

.bb-pla-colors__label--yellow {
  background: #ffd84d;
  color: #1f2937;
  border: 1px solid #e6bf25;
}

.bb-pla-colors__label--green {
  background: #16a34a;
  color: #ffffff;
}

.bb-pla-colors__label--blue {
  background: #123f9f;
  color: #ffffff;
}

.bb-pla-colors__img--missing {
  opacity: .25;
}

@media (min-width: 1200px) {
  .bb-pla-colors {
    max-width: 596px;
  }

  .bb-pla-colors__item {
    width: 108px;
    height: 110px;
  }

  .bb-pla-colors__item img {
    max-height: 98px;
    transform: scale(1.42);
  }
}

@media (max-width: 991px) {
  .bb-pla-colors {
    max-width: 596px;
    margin: 22px auto 10px;
  }

  .bb-pla-colors__grid {
    gap: 14px;
    justify-content: flex-start;
  }

  .bb-pla-colors__item {
    width: 108px;
    height: 104px;
  }

  .bb-pla-colors__item img {
    max-height: 90px;
    transform: scale(1.34);
  }
}

@media (max-width: 560px) {
  .bb-pla-colors {
    max-width: 100%;
    margin: 18px 0 22px;
    padding-top: 14px;
    border-top: 1px solid #d9e1f2;
  }

  .bb-pla-colors__title {
    font-size: 14px;
    margin-bottom: 10px !important;
    text-align: left;
  }

  .bb-pla-colors__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    width: 100%;
  }

  .bb-pla-colors__item {
    width: 100%;
    height: 84px;
    border-radius: 12px;
    padding: 8px;
  }

  .bb-pla-colors__item img {
    width: 100%;
    height: 100%;
    max-height: 76px;
    object-fit: contain;
    transform: scale(1.26);
  }

  .bb-pla-colors__label {
    display: none !important;
  }
}

@media (max-width: 370px) {
  .bb-pla-colors__grid {
    gap: 8px;
  }

  .bb-pla-colors__item {
    height: 74px;
    padding: 6px;
  }

  .bb-pla-colors__item img {
    max-height: 68px;
    transform: scale(1.18);
  }
}