/*PRICING CARDS*/

.container-wrapper .card {
    border-radius: var(--bp-border-radius);
    padding: 1.35rem 1.35rem;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    height: 100%;
    background: white;
    flex-grow: 1;
    flex-shrink: 0;
}

.container-wrapper .link {
    font-size: 0.7rem;
    color: #466F67;
    text-decoration: underline;
}


.altcards a {
    text-decoration: none !important;
}

.card .h4 {
    --bp-color: var(--bp-h4-color);
    --bp-font-weight: 500;
    --bp-font-size: 1.25rem;
    --bp-line-height: 1.2;
    --bp-typography-spacing-top: 1.874rem;
    margin-top: 0;
    margin-bottom: var(--bp-typography-spacing-vertical);
    color: var(--bp-color);
    font-weight: var(--bp-font-weight);
    font-size: var(--bp-font-size);
    line-height: var(--bp-line-height);
    font-family: var(--bp-font-family-heading);
    font-style: normal;
    font-weight: bold;
    margin-bottom: 0.2rem;
  }
  
  .card .price {
    font-size: 2rem;
    line-height: 1.2;
    margin-top: -8px;
  }
  .card-checkmarks {
    padding-left: 1rem;
  }
  
  .card-checkmarks li {
    list-style-type: none;
    position: relative;
    color: var(--bp-p-color);
    margin-bottom: .5rem;
    font-size: 0.6rem;
  }
  
  .card-checkmarks li::marker {
    list-style-type: none;
  }
  .card-checkmarks li::before {
    content: "";
    display: block;
    position: absolute;
    left: -1rem;
    top:1px;
    width: 16px;
    height: 16px;
    background-image: url(/img/icons/checkmark-bold.svg);
    background-repeat: no-repeat;
    background-size: cover;
  }
  
  @media (max-width: 768px) {
    .card-checkmarks li::before {
      left: -1.3rem;
      top: -1px;
    }
  }

@media (max-width: 1024px) {
    .switcher-wrapper .mobile-hide {
        display: none!important;
    }
}