.pricing-cards-container {
  margin: 0 auto 36px;
  padding: 0;
}
.pricing-cards-container .icon-container {
  height: auto;
  margin: 0 auto 24px;
  max-height: 120px;
  padding: 0;
  text-align: center;
  width: 100%;
}
.pricing-cards-container .icon-container img.icon {
  height: auto;
  margin: 0 auto;
  max-height: 120px;
  padding: 0;
  text-align: center;
  width: 100%;
}
.pricing-cards-container .eyebrow-text {
  color: #008484;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  letter-spacing: 4px;
  margin: 12px auto 4px;
  padding: 0;
  text-align: center;
  text-transform: uppercase;
}
.pricing-cards-container .main-header {
  color: #002040;
  font-size: 36px;
  font-style: normal;
  font-weight: 500;
  margin: 0 auto 12px;
  padding: 0;
  text-align: center;
}
.pricing-cards-container p {
  font-size 20px;
  font-style: normal;
  font-weight: 300;
  margin: 0 auto;
  padding: 0;
  text-align: center;
}
.pricing-cards-wrapper {
  display: grid;
  grid-gap: 36px;
  margin: 36px auto 0;
  padding: 0;
}
.single-column {
  grid-template-columns: 1fr;
}
.two-column {
  grid-template-columns: 1fr 1fr;
  max-width: 876px;
}
.three-column {
  grid-template-columns: 1fr 1fr 1fr;
}
.pricing-card {
  border-radius: 12px;
  box-shadow: 0 0 15px 0 rgba(0,0,0,0.3);
  display: flex;
  flex-flow: column nowrap;
  margin: 0 auto;
  max-width: 420px;
}
.pricing-card:hover {
  transition: all 0.25s;
}
.dark-teal .pricing-card-overview,
.dark-teal .gradient-stripes,
.dark-teal .gradient-stripes:before,
.dark-teal .gradient-stripes:after {
  background-color: #00545d;
  background-image: none;
} 
.medium-teal .pricing-card-overview,
.medium-teal .gradient-stripes,
.medium-teal .gradient-stripes:before,
.medium-teal .gradient-stripes:after {
  background-color: #008484;
  background-image: none;
} 
.navy .pricing-card-overview,
.navy .gradient-stripes,
.navy .gradient-stripes:before,
.navy .gradient-stripes:after {
  background-color: #002040;
  background-image: none;
}
.pricing-card-overview {
  border-radius: 12px 12px 0 0;
  height: 70%;
  padding: 36px;
}
.dark-teal .tier-title {
  color: #5ACFCF;
  transition: all 0.25s;
}
.medium-teal .tier-title {
  color: #002040;
  transition: all 0.25s;
}
.navy .tier-title {
  color: #008484;
  transition: all 0.25s;
}
.tier-title {
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  letter-spacing: 4px;
  margin: 0 0 18px;
  padding: 0;
  text-transform: uppercase;
  transition: all 0.25s;
}
.tier-and-price-container {
  display: flex;
  flex-flow: column nowrap;
  justify-content: space-between;
  padding: 0 0 18px;
}
.price-container {
  align-items: center;
  display: flex;
  flex-flow: row nowrap;
}
.tier-and-price-container .price {
  color: #fff;
  font-size: 54px;
  font-weight: 500;
  line-height: 54px;
  margin: 0;
  padding: 0;
}
.tier-and-price-container .price sup {
  font-size: 36px;
  margin-right: 3px;
  top: -12px;
}
.tier-and-price-container .price .slash-divider {
  padding: 0 8px 0 4px;
}
.tier-and-price-container .price-details p {
  color: #fff !important;
  font-size: 16px;
  text-align: left !important;
}
  
.tier-overview {
  color: #fff;
  font-size: 21px;
  font-style: normal;
  font-weight: 400;
  margin: 0;
  padding: 0;
}
.pricing-card .gradient-stripes {
  bottom: -8px;
  height: 4px;
  left: 0;
  position: relative;
  width: 100%;
  z-index: 20;
}
.pricing-card .gradient-stripes:before {
  bottom: 8px;
  content: "";
  display: block;
  height: 4px;
  left: 0;
  position: relative;
  width: 100%;
  z-index: 20;
}
.pricing-card .gradient-stripes:after {
  bottom: -4px;
  content: "";
  display: block;
  height: 4px;
  left: 0;
  position: relative;
  width: 100%;
  z-index: 20;
}
.pricing-card-details {
  align-items: flex-start;
  background-color: #fff !important;
  background-image: none !important;
  border-radius: 0 0 12px 12px;
  display: flex;
  flex-flow: column nowrap;
  height: 100%;
  justify-content: space-between;
  padding: 54px 36px 36px;
}
.pricing-card-details p {
  margin: 0 0 12px;
  padding; 0;
  text-align: left;
}
/*.dark-teal .button {
  background-color: #00545d;
  color: #fff;
}
.medium-teal .button {
  background-color: #008484;
  color: #fff;
}
.navy .button {
  background-color: #002040;
  color: #fff;
}*/
.disabled-button {
  cursor: default;
  opacity: 0.24;
  pointer-events: none;
}
@media (max-width: 1024px) {
  .three-column {
    grid-template-columns: 1fr 1fr !important;
  }
}
@media (max-width: 768px) {
  .four-column,
  .three-column,
  .two-column {
    grid-template-columns: 1fr !important;
  }
}
@media (max-width: 767px) {  
  .pricing-card-overview {
    padding: 36px 24px;
  }
  .pricing-card-details {
    padding: 54px 24px 36px;
  }
}