/* Plan card */

.apicProduct .apicPlans .planCard {
  display: flex;
  flex-direction: column;
  padding: 0;
  background-color: #f7f7f7;
  border: 1px solid #E1DFDD;
  border-radius: 4px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.25);
}

.apicProduct .apicPlans .planCard .planTitle {
  order: 1;
  padding: 1rem;
  margin: 0;
  height: unset;
  max-height: unset;
  border-bottom: 1px solid #E1DfDD;
}

.apicProduct .apicPlans .planCard .planDescription {
  display: none;
}

.apicProduct .apicPlans .planCard .planRatesAndBilling {
  order: 2;
  padding: 1rem;
  margin: 0;
}

.apicProduct .apicPlans .planCard .planApis {
  order: 3;
  padding-inline: 1rem;
  margin: 0;
}

.apicProduct .apicPlans .planCard .planViewDetails {
  order: 4;
  align-self: center;
  padding: 1rem;
}

.apicProduct .apicPlans .planCard .btn {
  order: 5;
  margin-bottom: 1rem;
  align-self: center;
}

.apicProduct .apicPlans .planCard .planApis .planApiList li {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 0.5rem;
  align-items: center;
  height: unset;
  margin: unset;
  padding: 1rem 0;
}

.apicProduct .apicPlans .planCard .planApis .planApiList {
  border-top: 1px solid #E1DFDD;
  border-bottom: 1px solid #E1DFDD;
}

.apicProduct .apicPlans .planCard .planApiCheckMark {
  width: 1rem;
  height: 1rem;
  background-color: #141414;
  background-image: url("../../images/checkmark.svg");
  border-radius: 50%;
  display: inline-block;
  position: relative;
}

.apicProduct .apicPlans .planCard .planApiCheckMark::before {
  content: url("../../images/checkmark.svg");
  filter: invert(100%) sepia(4%) saturate(2%) hue-rotate(48deg) brightness(113%) contrast(101%);
  position: absolute;
  top: 0.05rem;
  left: 0.2rem;
  right: 0.2rem;
}

.apicProduct .apicPlans .planCard .planApiCheckMark svg {
  display: none;
}

.apicProduct .apicPlans .planCard .planApiTitle,
.apicProduct .apicPlans .planCard .planApiVersion {
  margin: 0;
}

.apicProduct .apicPlans .planCard .planApiVersion {
  float: right;
}

.views-element-container {
  padding: 0;
}
