@charset "utf-8";

.features_store_cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  margin-top: 38px;
}

.features_store_cta>span {
  color: rgba(255, 255, 255, .64);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.5;
  text-align: center;
}

.features_store_badge_list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  width: 100%;
}

.features_store_badge_item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 0 22px;
  border-right: 1px solid rgba(255, 255, 255, .18);
}

.features_store_badge_item:last-child {
  border-right: 0;
}

.features_store_badge_name {
  color: rgba(255, 255, 255, .82);
  font-size: 13px;
  font-weight: 900;
}

.features_store_badge_item ms-store-badge {
  display: block;
  transform: scale(.8);
  transform-origin: center top;
}

@media (max-width: 767px) {

  .features_store_badge_list {
    flex-direction: column;
    align-items: center;
    flex-wrap: nowrap;
  }

  .features_store_badge_item:first-child {
    padding: 0;
  }

}