﻿*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: "Poppins", sans-serif !important;
}

.adjustuldiv {
    min-height: 198px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

/* .pricing { */
    /* margin-top: 0; */
    /* width: 100%; */
    /* display: flex; */
    /* justify-content: center; */
    /* align-items: baseline; */
/* } */

/* .pricing-card { */
    /* display: flex; */
    /* flex-direction: column; */
    /* justify-content: center; */
    /* padding: 10px; */
    /* width: 100%; */
    /* border-radius: 5px; */
    /* box-shadow: 0 8px 16px 0px rgb(0 0 0 / 10%); */
    /* margin-left: 30px; */
/* } */

.pricing {
    margin-top: 0;
    width: 100%;
    display: flex;
    justify-content: left;
    align-items: baseline;
    flex-wrap: wrap;
    gap:30px;
}

.pricing-card {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 10px;
    width: 100%;
    border-radius: 5px;
    box-shadow: 0 8px 16px 0px rgb(0 0 0 / 10%);
    /*margin-left: 30px;*/
    margin-bottom: 25px;
}

.pricing-card-heading {
    padding: 10px;
    font-size: 20px;
    line-height: 24px;
    font-weight: 400;
    text-align: center;
    margin-bottom: 20px;
    margin-top: 0px !important;
}

.pricing-card-heading-free {
    background-color: #f8fafe;
    color: #000;
}

.pricing-card-heading-lite {
    background: linear-gradient( 90deg, rgba(194, 209, 255, 1) 0%, rgba(179, 114, 254, 1) 100% );
    color: #fff;
}

.pricing-card-heading-pro {
    background: grey;
    color: #fff;
}

.pricing-card-list {
    list-style-type: none;
    display: flex;
    flex-direction: column;
    margin: 0px 0 10px 30px;
    min-height: 180px;
}

.pricing-card-list-item {
    position: relative;
    font-size: 12px;
}

.icon-yes::before {
    position: absolute;
    left: -30px;
    top: -9px;
    display: inline-block;
    content: "";
    width: 20px;
    height: 25px;
    background: url("https://cdnjs.cloudflare.com/ajax/libs/open-iconic/1.1.1/png/check-4x.png") no-repeat;
    background-size: 15px;
    background-position: bottom center;
    filter: invert(75%) sepia(27%) saturate(459%) hue-rotate(76deg) brightness(90%) contrast(88%);
}

.icon-no::before {
    position: absolute;
    left: -27px;
    top: -5px;
    display: inline-block;
    content: "";
    width: 20px;
    height: 25px;
    background: url("https://cdnjs.cloudflare.com/ajax/libs/open-iconic/1.1.1/png/plus-4x.png") no-repeat;
    background-size: 15px;
    background-position: bottom center;
    filter: invert(45%) sepia(88%) saturate(908%) hue-rotate(312deg) brightness(90%) contrast(86%);
    transform: rotate(45deg);
}

.icon-no {
    color: #999;
    text-decoration: line-through;
}

.hovermedisable:hover {
    opacity: 0.5;
    cursor: not-allowed;
}

.pricing-card-btn {
    width: 90%;
    font-size: 14px;
    padding: 15px 5px;
    margin-left: 7.5%;
    border: 1px solid #27264b;
    border-radius: 5px;
    background-color: #fff;
    color: #27264b;
    cursor: pointer;
    text-transform: capitalize;
    transition: background-color 250ms ease-in-out;
    margin: 0;
}

    .pricing-card-btn:hover {
        background-color: rgb(228, 228, 240);
    }

.pricing-card-highlight .pricing-card-btn {
    border: none;
    color: #fff;
    background-color: #27264b;
}

    .pricing-card-highlight .pricing-card-btn:hover {
        background-color: #9390db;
    }

.pricing-card-price {
    text-align: center;
    font-size: 28px;
    line-height: 28px;
    font-weight: 500;
    margin-bottom: 15px;
}

.pricing-card-price-text {
    font-weight: 400;
    font-size: 20px;
}

.sk-folding-cube {
    margin: 20px auto;
    width: 40px;
    height: 40px;
    position: relative;
    -webkit-transform: rotateZ(45deg);
    transform: rotateZ(45deg);
}

    .sk-folding-cube .sk-cube {
        float: left;
        width: 50%;
        height: 50%;
        position: relative;
        -webkit-transform: scale(1.1);
        -ms-transform: scale(1.1);
        transform: scale(1.1);
    }

        .sk-folding-cube .sk-cube:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: #333;
            -webkit-animation: sk-foldCubeAngle 2.4s infinite linear both;
            animation: sk-foldCubeAngle 2.4s infinite linear both;
            -webkit-transform-origin: 100% 100%;
            -ms-transform-origin: 100% 100%;
            transform-origin: 100% 100%;
        }

    .sk-folding-cube .sk-cube2 {
        -webkit-transform: scale(1.1) rotateZ(90deg);
        transform: scale(1.1) rotateZ(90deg);
    }

    .sk-folding-cube .sk-cube3 {
        -webkit-transform: scale(1.1) rotateZ(180deg);
        transform: scale(1.1) rotateZ(180deg);
    }

    .sk-folding-cube .sk-cube4 {
        -webkit-transform: scale(1.1) rotateZ(270deg);
        transform: scale(1.1) rotateZ(270deg);
    }

    .sk-folding-cube .sk-cube2:before {
        -webkit-animation-delay: 0.3s;
        animation-delay: 0.3s;
    }

    .sk-folding-cube .sk-cube3:before {
        -webkit-animation-delay: 0.6s;
        animation-delay: 0.6s;
    }

    .sk-folding-cube .sk-cube4:before {
        -webkit-animation-delay: 0.9s;
        animation-delay: 0.9s;
    }

@-webkit-keyframes sk-foldCubeAngle {
    0%, 10% {
        -webkit-transform: perspective(140px) rotateX(-180deg);
        transform: perspective(140px) rotateX(-180deg);
        opacity: 0;
    }

    25%, 75% {
        -webkit-transform: perspective(140px) rotateX(0deg);
        transform: perspective(140px) rotateX(0deg);
        opacity: 1;
    }

    90%, 100% {
        -webkit-transform: perspective(140px) rotateY(180deg);
        transform: perspective(140px) rotateY(180deg);
        opacity: 0;
    }
}

@keyframes sk-foldCubeAngle {
    0%, 10% {
        -webkit-transform: perspective(140px) rotateX(-180deg);
        transform: perspective(140px) rotateX(-180deg);
        opacity: 0;
    }

    25%, 75% {
        -webkit-transform: perspective(140px) rotateX(0deg);
        transform: perspective(140px) rotateX(0deg);
        opacity: 1;
    }

    90%, 100% {
        -webkit-transform: perspective(140px) rotateY(180deg);
        transform: perspective(140px) rotateY(180deg);
        opacity: 0;
    }
}

/* Tablets and above */
@media (min-width: 768px) {
    .pricing-card {
        width: 48%;
    }
}

/* Desktops and large screens */
@media (min-width: 1200px) {
    .pricing-card {
        width: 30%;
    }
}

