
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    color: #4E6073;
}

.parentDiv {
    min-height: 100vh;
    display: grid;
    place-items: center;
}

.wrapper {
    width: 80%;
    margin: 0px auto;
    max-width: 1480px;
    padding: 50px;
}

/* Common Code */

.mostPopular:before {
    content: "Most Popular";
    display: block;
    padding: 5px;
    background-color: #0074c2;
    color: white;
    font-size: 13px;
    text-transform: capitalize;
    position: absolute;
    top: -30px;
    left: 50%;
    width: 100%;
    transform: translateX(-50%);
}

.standOut {
    background-color: #f8f8f8;
}

.supplicatingBox > .flexWrapper {
    border-bottom: 1px solid lightgrey;
}

.supplicatingBox > .transparent {
    border-bottom: 0px solid transparent;
}

/* Header Wrapper */

.flexWrapper {
    display: flex;
    align-items: stretch;
    justify-content: space-between;
}

.headerWrapper:hover {
    cursor: pointer !important;
}

.formDiv {
    width: 35%;
    padding: 25px;
}

    .formDiv > .flexWrapper {
        justify-content: space-around;
    }

.packageName {
    width: 65%;
    display: flex;
    align-items: stretch;
    justify-content: space-between;
}

.equal {
    flex: 1;
    padding: 10px 25px;
    text-align: center;
    position: relative;
}

.packNameHeader {
    font-size: 16px;
}

.packPrice {
    font-size: 32px;
}

    .packPrice span {
        font-size: 20px;
    }

.bottomLine {
    font-size: 12px;
}

.bottomLine {
    color: #0074c2;
}

/* Core Sec */

.characteristics {
    width: 35%;
}

.checkMarks {
    width: 65%;
    display: flex;
    align-items: stretch;
    justify-content: space-between;
}

    .checkMarks > .equal {
        padding: 15px;
    }

.transparent > .checkMarks > .equal {
    padding: 35px 15px 15px 15px;
}

.characTitle {
    padding: 15px;
    font-size: 14px;
    text-transform: capitalize;

    margin-bottom:0px;/*add*/
}

.boxTitle {
    padding: 35px 15px 0px 15px;
    font-size: 14px;
    font-weight: 600;
}

/* Media Query */

/* Media Query */

@media (min-width: 1024px) {
    .mobilePricingTable {
        display: none;
    }
}

@media (min-width: 320px) and (max-width: 768px) {
    .pcPricingTable {
        display: none;
    }

    .mobilePricingTable {
        display: block;
    }

    .packageBox {
        padding: 30px;
        border: 1px solid #e1e1e1;
        margin-bottom: 30px;
        position: relative;
    }

    .wrapper {
        width: 100%;
        padding: 30px;
    }

    .formDiv {
        width: 100%;
        padding: 10px 30px;
    }

        .formDiv > .flexWrapper {
            flex-direction: column;
        }

            .formDiv > .flexWrapper > div {
                padding: 10px 0px;
            }

    .packNameHeader {
        padding-bottom: 15px;
    }

    .bottomLine {
        padding-top: 10px;
    }

    .packPrice:after {
        content: "per month";
        font-size: 14px;
        padding-left: 5px;
        position: absolute;
    }

    .flexWrapper {
        flex-direction: column;
        align-items: flex-start;
    }


    .equal {
        padding: 15px 0px;
    }

    .boxTitle {
        padding: 0px;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }

    .characTitle {
        padding: 0px;
        line-height: 35px;
    }

        .characTitle span {
            padding-right: 10px;
        }

    .mostPopular:before {
        content: "Most Popular";
        display: block;
        padding: 5px 0px;
        background-color: #0074c2;
        color: white;
        font-size: 14px;
        text-transform: capitalize;
        position: absolute;
        top: -15px;
        left: 0%;
        right: 0%;
        text-align: center;
        width: 100%;
        transform: translateX(0%);
    }
}
