.demo {
    padding: 100px 0;
}

.heading-title {
    margin-bottom: 100px;
}

.pricingTable {
    height: 740px; /*added by Kalpesh old value is 990 for Added New Content Advance plan */
    border: 2px solid #e3e3e3;
    text-align: center;
    position: relative;
    padding-bottom: 40px;
    /*transform: translateZ(0px);*/
    /*overflow: hidden;*/
}
    /*added by gaurav vishwakarma content 23 sep 2020- hover effect*/
    /*.pricingTable:hover {
    border: 2px solid #1fb141;
    text-align: center;
    position: relative;
    padding-bottom: 40px;
    transform: translateZ(0px);
    overflow: hidden;
}*/
    /*end by gaurav vishwakarma content 23 sep 2020*/

    .pricingTable .best-offer {
        margin-top: 25px; /*added by gaurav vishwakarm on 25 sep 2020 to set best offer div*/
        margin-left: 15px; /*added by gaurav vishwakarm on 25 sep 2020 to set best offer div*/
        background-color: crimson;
        padding: 6px 50px;
        font-size: 10px;
        line-height: 12px;
        text-transform: uppercase;
        position: absolute;
        top: 16px;
        left: -55px;
        transform: 55px;
        transform: rotate(-45deg);
    }

    .pricingTable:before,
    .pricingTable:after {
        content: "";
        position: absolute;
        top: -2px;
        left: -2px;
        bottom: -2px;
        right: -2px;
        z-index: -1;
        transition: all 0.5s ease 0s;
    }

    .pricingTable:before {
        border-right: 5px solid #e3e3e3; /*color and width change by gaurav vishwakarm on 25 sep 2020*/
        border-left: 5px solid #e3e3e3;
        transform: scaleY(0);
        transform-origin: 100% 0 0;
    }

    .pricingTable:after {
        /*border-bottom: 2px solid #1fb141;*/
        border-top: 2px solid #1fb141;
        transform: scaleX(0);
        transform-origin: 0 100% 0;
    }

    .pricingTable:hover:before {
        transform: scaleY(1);
    }

    .pricingTable:hover:after {
        transform: scaleX(1);
    }

    .pricingTable .pricingTable-header {
        background: #1fb141;
        color: #333;
        margin: -2px -2px 35px;
        padding: 40px 0;
    }

    .pricingTable .heading {
        font-size: 28px;
        font-weight: 600;
        margin: 0 0 5px 0;
    }

    .pricingTable .subtitle {
        font-size: 14px;
        display: block;
    }

    .pricingTable .price-value {
        font-size: 50px;
        font-weight: 600;
        margin-top: 10px;
        position: relative;
        display: inline-block;
    }

    .pricingTable .currency {
        font-size: 40px;
        font-weight: normal;
        position: absolute;
        top: 2px;
        left: -30px;
    }

    .pricingTable .month {
        font-size: 20px;
        position: absolute;
        bottom: 17px;
        right: -40px;
    }

    .pricingTable .pricing-content {
        height: 370px;
        list-style: none;
        padding: 0;
        margin-bottom: 30px;
        text-align: left;
        padding: 0px 30px;
    }

        .pricingTable .pricing-content li {
            font-size: 16px;
            color: #7a7e82;
            line-height: 40px;
        }

    .pricingTable .read {
        display: inline-block;
        border: 2px solid #7a7e82;
        border-right: none;
        font-size: 14px;
        font-weight: 700;
        color: #7a7e82;
        padding: 9px 30px;
        position: relative;
        text-transform: uppercase;
        transition: all 0.3s ease 0s;
    }

        .pricingTable .read:hover {
            border-color: #1fb141;
            color: #1fb141;
        }

        .pricingTable .read i {
            font-size: 19px;
            margin-top: -10px;
            position: absolute;
            top: 50%;
            right: 15px;
            transition: all 0.3s ease 0s;
        }

        .pricingTable .read:hover i {
            right: 5px;
        }

        .pricingTable .read:before,
        .pricingTable .read:after {
            content: "";
            display: block;
            height: 30px;
            border-left: 2px solid #7a7e82;
            position: absolute;
            right: -11px;
            transition: all 0.3s ease 0s;
        }

        .pricingTable .read:before {
            bottom: -6px;
            transform: rotate(45deg);
        }

        .pricingTable .read:after {
            top: -6px;
            transform: rotate(-45deg);
        }

        .pricingTable .read:hover:before,
        .pricingTable .read:hover:after {
            border-left-color: #1fb141;
        }

@media screen and (max-width: 990px) {
    .pricingTable {
        margin-bottom: 25px;
    }
}

.checkbox {
    padding-left: 20px;
}

    .checkbox label {
        display: inline-block;
        position: relative;
        padding-left: 5px;
    }

        .checkbox label::before {
            content: "";
            display: inline-block;
            position: absolute;
            width: 17px;
            height: 17px;
            left: 0;
            top: 1px;
            margin-left: -20px;
            border: 1px solid #cccccc;
            border-radius: 3px;
            background-color: #fff;
            -webkit-transition: border 0.15s ease-in-out, color 0.15s ease-in-out;
            -o-transition: border 0.15s ease-in-out, color 0.15s ease-in-out;
            transition: border 0.15s ease-in-out, color 0.15s ease-in-out;
        }

        .checkbox label::after {
            display: inline-block;
            position: absolute;
            width: 16px;
            height: 16px;
            left: 0;
            top: 1px;
            margin-left: -21px;
            padding-left: 3px;
            padding-top: 1px;
            font-size: 11px;
            color: #555555;
        }

    .checkbox input[type="checkbox"] {
        opacity: 0;
    }

        .checkbox input[type="checkbox"]:focus + label::before {
            outline: thin dotted;
            outline: 5px auto -webkit-focus-ring-color;
            outline-offset: -2px;
        }

        .checkbox input[type="checkbox"]:checked + label::after {
            font-family: 'FontAwesome';
            content: "\f00c";
        }

        .checkbox input[type="checkbox"]:disabled + label {
            opacity: 0.65;
        }

            .checkbox input[type="checkbox"]:disabled + label::before {
                background-color: #eeeeee;
                cursor: not-allowed;
            }

    .checkbox.checkbox-circle label::before {
        border-radius: 50%;
    }

    .checkbox.checkbox-inline {
        margin-top: 0;
    }

.checkbox-primary input[type="checkbox"]:checked + label::before {
    background-color: #1fb141;
    border-color: #1fb141;
}

.checkbox-primary input[type="checkbox"]:checked + label::after {
    color: #fff;
}

.checkbox-danger input[type="checkbox"]:checked + label::before {
    background-color: #d9534f;
    border-color: #d9534f;
}

.checkbox-danger input[type="checkbox"]:checked + label::after {
    color: #fff;
}

.checkbox-info input[type="checkbox"]:checked + label::before {
    background-color: #5bc0de;
    border-color: #5bc0de;
}

.checkbox-info input[type="checkbox"]:checked + label::after {
    color: #fff;
}

.checkbox-warning input[type="checkbox"]:checked + label::before {
    background-color: #f0ad4e;
    border-color: #f0ad4e;
}

.checkbox-warning input[type="checkbox"]:checked + label::after {
    color: #fff;
}

.checkbox-success input[type="checkbox"]:checked + label::before {
    background-color: #5cb85c;
    border-color: #5cb85c;
}

.checkbox-success input[type="checkbox"]:checked + label::after {
    color: #fff;
}
