.custom-priceblocks {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  width:100%;
}

@media (min-width: 992px) {
  .custom-priceblocks {
    gap:35px;
  }
}

.custom-priceblocks > div:focus-visible {
    box-shadow: 0 0 24px rgba(0,0,0,0.2);
    transform: translate(5px);
}

.custom-priceblocks > div:hover {
    box-shadow: 0 0 24px rgba(0,0,0,0.2);
    transform: translate(5px);
}

.custom-priceblocks > div {
    background-color: white;
    flex: 0 0 100%;
    border-radius: 15px;
    width: 100%;
    height: auto;
    box-shadow: 0 0 12px rgba(0,0,0,0.1);
    transition: box-shadow .2s ease, transform .5s ease;
    padding:2rem;
    text-align:center;
}

@media (min-width: 992px) {
    .custom-priceblocks > div {
        flex-basis: calc(33.333333% - (35px * 0.75));
    }
}

.custom-priceblocks > div > i.fa {
    color: var(--primary);
    font-size: 3rem;
}

.custom-priceblocks > div > h3 {
    color: rgb(108, 117, 125);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 16px;
    font-weight: bold;
    display: block;
    margin-bottom:1rem;
    margin-top: 1rem;
}

.custom-priceblocks > div > p {
    color: rgb(108, 117, 125);
    margin-bottom: 1rem;
}

.custom-priceblocks > div > table {
    margin-bottom: 1rem;
    width: 100%;
}

.custom-priceblocks > div > table tr td {
    border-bottom: 1px solid #F6F6FA;
    border-top: 1px solid #F6F6FA;
    padding:0.5rem;
}

.custom-priceblocks > div > table tr td > i.fa.fa-times {
    color:red;
}

.custom-priceblocks > div > table tr td > i.fa.fa-check {
    color:green ;
}

.custom-priceblocks > div > table tr td:first-child {
    text-align: left;
}

.custom-priceblocks > div > table tr td:last-child {
    text-align: right;
}

.custom-priceblocks > div > *:last-child {
    margin-bottom:0px;
}