body {
  background-color: #f7f8fa;
  color: #343434;
}

.bg-gray-cologne-hosting {
  background-color: #343434;
}

.bg-active-menu-item {
  background-color: #575757;
}

.shopButton {
  background-color: #009fe3;
  color: #fff;
  padding: 0.5rem 1rem;
  text-align: center;
  border-radius: 8px;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  letter-spacing: 0.025em;
  transition-property: background-color, border-color, color, fill, stroke, opacity, box-shadow, transform;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}

.shopButton:hover {
  filter: brightness(105%) opacity(80%);
}

.shopButton:active {
  filter: brightness(105%) opacity(80%);
}

.shopButton:focus {
  outline: none;
  border: 1px solid #00587d;
  box-shadow: 0 0 0 3px rgba(159, 166, 178, 0.45);
}

.shopButton[disabled] {
  opacity: 25%;
}

.secondaryButton {
  background-color: #f7f8fa;
  color: #30f;
}

.dangerButton {
  background-color: #e02424;
}

.dangerButton:focus {
  border: 1px solid #8a1414;
}

.biggerButton {
  padding: 0.75rem 1.5rem;
  font-size: 1.1rem;
}

.smallerButton {
  padding: 0.35rem 0.75rem;
  font-size: 0.9rem;
}

.hostingPlanPricingSection {
  margin: 8rem auto 12rem;
  display: grid;
  /*
  grid-auto-columns: minmax(300px, 1fr);
  grid-auto-flow: column;
  */
  grid-template-columns: minmax(300px, 510px);
  justify-content: center;
  grid-row-gap: 2rem;
  /*background-color: #fff;*/
  max-width: 1280px;
  padding: 0 1rem;
  color: #333;
  z-index: 5;
  position: relative;
}

.priceCard {
  /*border: 1px solid #ddd;*/
  border-radius: 8px;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  display: grid;
  grid-template-rows: auto 1fr;
}

.priceCard_header {
  text-align: center;
  padding: 2.25rem 3rem 1.75rem;
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
  position: relative;
  color: #fff;
}

.priceCard1 .priceCard_header {
  background-color: #80cef2;
}

.priceCard2 .priceCard_header {
  background-color: #009fe3;
}

.priceCard3 .priceCard_header {
  background-color: #343434;
}

.priceCard_highlightedTag {
  /*
  position: absolute;
  top: -10px;
  height: 10px;
  */
  display: inline-block;
  padding: 5px 1rem 3px;
  background-color: #343434;
  color: #fff;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: 50px;
  /*z-index: 5;*/
  margin: 0 auto;
  /*
  -padding-top (of the header)
  - ((font-size * line-height) / 2)
  - ((padding-top + padding-bottom) / 2)
  */
  --translate-y-value: calc(-2.25rem - ((0.875rem * 1.5) / 2) - 4px);
  transform: translateY(var(--translate-y-value));
}

.priceCard_planName {
  font-size: 1.5rem;
  font-weight: 600;
}

.priceCard_currency {
  font-size: 2.25rem;
  vertical-align: baseline;
}

.priceCard_price {
  font-size: 4rem;
  font-weight: bold;
  vertical-align: middle;
}

.priceCard_lifetime {
  font-size: 1.25rem;
  vertical-align: middle;
  display: inline-block;
  margin-left: -5px;
}

.priceCard_body {
  padding: 2.25rem 2.5rem;
  background-color: #f9f9f9;
  border-top: 1px solid #eee;
  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 8px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.priceCard_body ul + p {
  line-height: 2.5;
  /*color: #393;*/
  color: #0e9f6e;
}

.priceCard_body li {
  /*line-height: 2.5;*/
  margin-bottom: 1rem;
  padding-left: 2.25rem;
  background-image: url("/images/green-checkmark.svg");
  background-size: 1.5rem 1.5rem;
  background-position: left top;
  background-repeat: no-repeat;
  /*
  &:before {
      content: url('data:image/svg+xml; utf8, <svg xmlns="http://www.w3.org/2000/svg" stroke="currentColor" fill="none" viewBox="0 0 24 24"><path stroke="%230e9f6e" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M5 13l4 4L19 7" /></svg>');
      display: inline-block;
      width: 1.5rem;
      height: 1.5rem;
      color: #0e9f6e;
      margin-right: 0.75rem;
      vertical-align: text-bottom;
  }
  */
}

.priceCard_button {
  display: block;
  width: 100%;
  margin-top: 1.75rem;
  background-color: #009fe3;
  color: #fff;
  padding: 0.75rem 1.5rem;
  text-align: center;
  border-radius: 8px;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.priceCardHighlighted {
  border: 2px solid #009fe3;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.priceCardHighlighted .priceCard_planName {
  font-size: 1.875rem;
  /* Because of the .priceCard_highlightedTag: */
  margin-top: -1.25rem;
}

.priceCardHighlighted .priceCard_lifetime {
  font-size: 1.5rem;
}

.priceCardHighlighted .priceCard_button {
  background-color: #009fe3;
  color: #fff;
  font-size: 1.25rem;
}

footer li:before {
  content: "> ";
}

@media all and (min-width: 768px) {
  /**/
}

@media all and (min-width: 1024px) {
  .hostingPlanPricingSection {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    padding: 0 2rem;
  }

  .hostingPlanPricingSection > div:first-child {
    border-top-right-radius: 0;
  }

  .hostingPlanPricingSection > div:first-child .priceCard_header {
    border-top-right-radius: 0;
  }

  .hostingPlanPricingSection > div:first-child .priceCard_body {
    border-bottom-right-radius: 0;
  }

  .hostingPlanPricingSection > div:last-child {
    border-top-left-radius: 0;
  }

  .hostingPlanPricingSection > div:last-child .priceCard_header {
    border-top-left-radius: 0;
  }

  .hostingPlanPricingSection > div:last-child .priceCard_body {
    border-bottom-left-radius: 0;
  }

  .priceCardHighlighted {
    margin: -50px 0;
  }
}

