﻿/*:root {
    --background-color: #ffffff;
    --text-color: #000000;
}

[data-theme="dark"] {
    --background-color: #181818;
    --text-color: #f0f0f0;
}


@media (prefers-color-scheme: dark) {
    :root {
        --background-color: #181818;
        --text-color: #f0f0f0;
    }
}

@media (prefers-color-scheme: light) {
    :root {
        --background-color: #ffffff;
        --text-color: #000000;
    }
}*/

body {
    /*background-color: var(--background-color);
    color: var(--text-color);
    transition: background-color 0.3s, color 0.3s;*/ /* Smooth transitions */
    font-family: 'Karla', sans-serif;
}

.pricing-table-subtitle {
    margin-top: 68px;
    font-weight: normal;
}

.pricing-table-title {
    font-weight: bold;
}

.pricing-card {
    border: none;
    border-radius: 10px;
    margin-bottom: 40px;
    text-align: center;
    -webkit-transition: all 0.6s;
    transition: all 0.6s;
}

    .pricing-card:hover {
        box-shadow: 0 2px 40px 0 rgba(205, 205, 205, 0.55);
    }

    .pricing-card.pricing-card-highlighted {
        box-shadow: 0 2px 40px 0 rgba(205, 205, 205, 0.55);
    }

    .pricing-card:hover {
        box-shadow: 0 2px 40px 0 rgba(205, 205, 205, 0.55);
        -webkit-transform: translateY(-10px);
        transform: translateY(-10px);
    }

    .pricing-card .card-body {
        padding-top: 55px;
        padding-bottom: 62px;
    }

.pricing-plan-title {
    font-size: 20px;
    color: #000;
    margin-bottom: 11px;
    font-weight: normal;
}

.pricing-plan-cost {
    font-size: 30px;
    color: #000;
    font-weight: bold;
    margin-bottom: 29px;
}

.pricing-plan-icon {
    display: inline-block;
    width: 40px;
    height: 40px;
    font-size: 40px;
    line-height: 1;
    margin-bottom: 24px;
}

.pricing-plan-basic .pricing-plan-icon {
    color: #fe397a;
}

.pricing-plan-pro .pricing-plan-icon {
    color: #10bb87;
}

.pricing-plan-enterprise .pricing-plan-icon {
    color: #5d78ff;
}

.pricing-plan-features {
    list-style: none;
    padding-left: 0;
    font-size: 14px;
    line-height: 2.14;
    margin-bottom: 35px;
    color: #303132;
}

.pricing-plan-purchase-btn {
    background-color: #10bb87;
    color: #fff !important;
    font-size: 16px;
    font-weight: bold;
    width: 145px;
    height: 45px;
    border-radius: 22.5px;
    -webkit-transition: all 0.4s;
    transition: all 0.4s;
    position: relative;
    display: -webkit-box;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    margin-left: auto;
    margin-right: auto;
    -webkit-box-pack: center;
    justify-content: center;
}

.pricing-plan-basic .pricing-plan-purchase-btn {
    background-color: #fe397a;
    color: #fff;
}

    .pricing-plan-basic .pricing-plan-purchase-btn:hover {
        box-shadow: 0 3px 0 0 #b7013d;
    }

    .pricing-plan-basic .pricing-plan-purchase-btn:active {
        -webkit-transform: translateY(3px);
        transform: translateY(3px);
        box-shadow: none;
    }

.pricing-plan-pro .pricing-plan-purchase-btn {
    background-color: #10bb87;
    color: #fff;
}

    .pricing-plan-pro .pricing-plan-purchase-btn:hover {
        box-shadow: 0 3px 0 0 #0a7554;
    }

    .pricing-plan-pro .pricing-plan-purchase-btn:active {
        -webkit-transform: translateY(3px);
        transform: translateY(3px);
        box-shadow: none;
    }

.pricing-plan-enterprise .pricing-plan-purchase-btn {
    background-color: #5d78ff;
    color: #fff;
}

    .pricing-plan-enterprise .pricing-plan-purchase-btn:hover {
        box-shadow: 0 3px 0 0 #1138ff;
    }

    .pricing-plan-enterprise .pricing-plan-purchase-btn:active {
        -webkit-transform: translateY(3px);
        transform: translateY(3px);
        box-shadow: none;
    }

/*# sourceMappingURL=pricing-plan.css.map */
