.kleecks_grid {
  display: grid;
  grid-template-columns: repeat(1, minmax(0, 1fr));
  margin: 0 auto;
  padding-top: 48px;
  padding-bottom: 32px;
  row-gap: 1rem;
}

@media (min-width: 48rem) {
  .kleecks_grid {
    column-gap: 1rem;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1240px) {
  .kleecks_grid {
    column-gap: 1.5rem;
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

.kleecks_col {
  grid-column: span 1 / span 1;
}

.kleecks_card {
  border: 1px solid var(--wp--preset--color--border-secondary);
  height: 100%;
  border-radius: 20px;
  padding: 24px 24px 32px;
  min-height: 700px;
  position: relative;
  cursor: pointer;
}

.kleecks_card.kleecks_card--active {
  border: 2px solid var(--wp--preset--color--custom-kl-pink) !important;
}

.kleecks_card--header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.kleecks_popular {
  background-color: var(--wp--preset--color--custom-kl-violet-300) !important;
  font-size: var(--wp--preset--font-size--text-xs) !important;
  color: var(--wp--preset--color--background-primary) !important;
  padding: .25rem .5rem;
  border-radius: 6px;
}

.kleecks_card--attributes {
  margin-top: 32px;
}

.kleecks_card--attribute {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 12px;
  gap: 10px;"
}

.kleecks_card--attribute_info {
  display: flex;
  align-items: center;
  justify-content: start;
  width: 100%;
  column-gap: 0.5rem;
}

.kleecks_hidden {
  display: none !important;
}

.kleecks_summary {
  display: none;
}

.kleecks_change-bundle {
  border-radius: 50%;
  border: 2px solid #e5538f;
  cursor: pointer;
  flex: 0 0 auto;
  padding: 2px;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.1s ease-in;
  color: #e5538f;
}

.kleecks_change-bundle svg{
  width: 16px;
  height: 16px;
}

.kleecks_change-bundle.kleecks_bundle-disabled {
  cursor: not-allowed;
  border: 2px solid #e5538fA6;
  color: #e5538fA6;
}

select.kleecks_select,
.kleecks_select::picker(select) {
  appearance: base-select;
}

.kleecks_select {
  border: 2px solid #dddddd;
  background: #eeeeee;
  padding: 5px;
  margin: 2px auto;
  transition: 0.4s;
  width: 100%;
}

.kleecks_select:hover,
.kleecks_select:focus {
  background: #dddddd;
}

.kleecks_select::picker-icon {
  color: #999999;
  transition: 0.4s rotate;
}

.kleecks_select:open::picker-icon {
  rotate: 180deg;
}

.kleecks_select option {
  display: flex;
  justify-content: flex-start;
  padding: 5px;
  transition: 0.4s;
}

.kleecks_select option:first-of-type {
  border-radius: 8px 8px 0 0;
}

.kleecks_select option:last-of-type {
  border-radius: 0 0 8px 8px;
}

.kleecks_select::picker(select) {
  border-radius: 8px;
}

.kleecks_select option:not(option:last-of-type) {
  border-bottom: none;
}

.kleecks_select option:hover,
.kleecks_select option:focus {
  background: #eee;
}