.block-pricing-table {
    padding: 4em 0px;
}
.pricing-options {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-gap: 0em;
    width: 100%;
    margin: auto;
}
.pricing-option {
  box-sizing: border-box;
  padding: 1em 3em 2em;
  display: flex;
  flex-flow: column;
  position: relative;
  z-index: 0;
}
.pricing-option * {
  z-index: 1;
}
.pricing-option:before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  border: 1px solid rgba(151,151,151,0.2);
  background: white;
  z-index: 0;
}
.pricing-option--title {
    color: black;
    text-transform: uppercase;
    font-size: 1.75em;
}
.pricing-option--features {
    padding: 0; margin: 0;
    font-size: 1.25em;
    margin-bottom: 4rem;
    line-height: 2em;
}
.pricing-option--features li {
  display: flex; justify-content: space-between;
}
.pricing-option--features img {
  width: 0.8em; height: 0.8em;
}
.pricing-option--button {
    margin: auto auto 0;
    color: black;
    display: inline-block;
    position: relative;
    text-decoration: none;
    z-index: 0;
    font-size: 1em;
    padding: 1em 4em;
    font-weight: bold;
    transition: transform 0.4s;
}
.pricing-option--button:before {
  content: "";
  z-index: -1;
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: #FFD100;
  box-shadow: 0px 0px 10px 5px rgba(0,0,0,0);
  transition: box-shadow 0.4s;
  transform: skew(-10deg,0);
}
.pricing-option.featured {
    z-index: 1;
    padding: 0em 3em 2em;
}
.pricing-option.featured:before {
  transform: scale(1.1);
  box-shadow: 0px 2px 10px 0px rgba(0,0,0,0.25);
  border: none;
}

.pricing-option--button:hover {
  transform: translateY(-0.25em);
}
.pricing-option--button:hover:before {
  box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.15);
}

@media screen and (max-width: 1200px) {
  .block-pricing-table {
    font-size: 0.8em;
  }
}

@media screen and (max-width: 1000px) {
  .block-pricing-table {
    font-size: 0.6em;
  }
}

@media screen and (max-width: 768px) {
  .block-pricing-table {
    font-size: 1em;
  }
  .pricing-options {
    display: block;
  }
  .pricing-option.featured:before {
    transform: scale(1.05);
    box-shadow: 0px 2px 10px 0px rgba(0,0,0,0.25);
    border: none;
  }
}

@media screen and (max-width: 600px) {
  .block-pricing-table {
    font-size: 0.8em;
  }
  .pricing-options {
    max-width: calc(100% - 4em);
  }
}
