﻿.card-price {
    border: 0;
    border-radius: 0px;
    -webkit-box-shadow: 0 3px 0px 0 rgba(0, 0, 0, .08);
    box-shadow: 0 3px 0px 0 rgba(0, 0, 0, .08);
    transition: all .3s ease-in-out;
    padding: 2.25rem 0;
    position: relative;
    will-change: transform;
}

    .card-price:after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 0%;
        height: 5px;
        background-color: #57e2b2;
        transition: 0.5s;
    }

.card-price:hover {
    transform: scale(1.05);
    -webkit-box-shadow: 0 20px 35px 0 rgba(0, 0, 0, .08);
    box-shadow: 0 20px 35px 0 rgba(0, 0, 0, .08);
}

    .card-price:hover:after {
        width: 100%;
    }

.card-price .card-price-header {
    background-color: white;
    padding-left: 2rem;
    border-bottom: 0px;
}

    .card-price .card-price-title {
        margin-bottom: 1rem;
    }

    .card-price .card-price-block {
        padding-top: 0;
    }

    .card-price .list-group-item {
        border: 0px;
        padding: .25rem;
        color: #808080;
        font-weight: 300;
    }

.display-price-2 {
    font-size: 4rem;
    letter-spacing: 0rem;
    font-family: satidti-bold;
}

    .display-price-2 .currency
    {
        font-size: 1.5rem;
        position: relative;
        font-weight: 400;
        top: -45px;
        letter-spacing: 0px;
    }

    .display-price-2 .period {
        font-size: 1rem;
        color: #808080;
        letter-spacing: 0px;
    }

.btn-price {
    text-transform: uppercase;
    font-size: .75rem;
    font-weight: 500;
    color: #808080;
    border-radius: 0;
    padding: .75rem 1.25rem;
    letter-spacing: 1px;
}

    .btn-price .btn-gradient {
        background-color: #f2f2f2;
        transition: background .3s ease-in-out;
    }

    .btn-price:hover {
        color: white;
        background-color: #57e2b2;
    }

