.price {
    position: relative;
    background-color: var(--vanilla);
    padding: 0px 20px 30px 20px;
    transition: all 0.5s ease 0s;
    border: 2px solid transparent;
    text-align: center;
    height: 100%;
    display: block;
}
.prior::before {
    position: absolute;
    top: -25px;
    right: -7px;
    content: "";
    display: block;
    width: 0px;
    height: 0px;
    border-top: 35px solid transparent;
    /* skyblue */
    border-right: 35x solid transparent;
    /* limegreen;  */
    border-bottom: 35px solid transparent;
    /* orange; */
    border-left: 35px solid var(--red);
    transform: rotate(-45deg);
}
.price:hover {
    border: 2px solid var(--orange);
}
.bg-green .price:hover {
    border: 2px solid transparent!important;
}
.price i {
    font-size: 90px;
    transition: all 0.5s ease 0s;
    display: block;
    color: var(--red);
}
.price:hover i {
    transform: rotate(-5deg)
}
.price .title {
    transition: all 0.5s ease 0s;
    font-size: 33px !important;
    font-family: 'Nunito', sans-serif;
    color: var(--black-lgt);
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.1;
}
.price .price-subtitle {
    font-family: 'Nunito', sans-serif;
    font-size: 25px;
    color: var(--black-lgt);
    margin-bottom: 20px;
    font-weight: 700;
}
.price .price-value {
    font-family: 'Nunito', sans-serif;
    font-size: 25px;
    color: var(--black-lgt);
    margin-bottom: 20px;
    font-weight: 700;
    border-bottom: 1px dashed;
    border-bottom-color: var(--orange);
    padding-bottom: 30px;
}
.price-body {
    height: 100%;
}
.price span {
    display: inline-block;
    font-size: 12px;
    text-transform: uppercase;
    vertical-align: middle;
    border-radius: 0px;
}
.price-text p {
    margin-bottom: 0.5rem;
    color: var(--black-lgt);
}
.price-text ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    color: var(--black-lgt);
}
.price-text ul li::before {
    content: "-";
    margin-right: 8px;
}