/*
* Prefixed by https://autoprefixer.github.io
* PostCSS: v8.4.14,
* Autoprefixer: v10.4.7
* Browsers: last 4 version
*/


.snoofa-pricing-table .custom_padding {
    padding-top: 120px;
    padding-bottom: 120px;
}

.snoofa-pricing-table .desktop_pricing_table {
    display: block;
}
.snoofa-pricing-table .mobile_pricing_table {
    display: none;
}

/*** Table Headings ***/
.snoofa-pricing-table .table_headings {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 100%;
}
.snoofa-pricing-table .table_headings .cell {
    width: 25%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.snoofa-pricing-table .table_headings .cell.green {
    background-color: #B7EB55;
    color: var(--black);
}
.snoofa-pricing-table .table_headings .cell.navy {
    background-color: #174463;
    color: var(--white);
}
.snoofa-pricing-table .table_headings .cell.teal {
    background-color: #A4DACE;
    color: var(--black);
}

.snoofa-pricing-table .table_headings .cell.green,
.snoofa-pricing-table .table_headings .cell.navy,
.snoofa-pricing-table .table_headings .cell.teal {
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
    text-align: center;
    font-family: satoshi, sans-serif;
    font-weight: bold;
}

.snoofa-pricing-table .table_headings .cell.plain {
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.snoofa-pricing-table .table_headings .cell:nth-of-type(1) {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
}


/*** Table Rows ***/
.snoofa-pricing-table .table_row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 100%;
}

.snoofa-pricing-table .table_headings .cell,
.snoofa-pricing-table .table_row .cell {
    width: calc(25%);
    height: 70px;
    max-height: 70px;
}

.snoofa-pricing-table .table_row .cell {
    border: 0.4px solid #cccccc;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.snoofa-pricing-table .table_row .cell {
    font-weight: bold;
    font-family: satoshi, sans-serif;
    text-align: center;
}
.snoofa-pricing-table .table_headings .cell,
.snoofa-pricing-table .table_row .cell {
    padding: 25px 50px;
    font-size: 20px;
}

.snoofa-pricing-table .table_row .cell:nth-of-type(1) {
    text-align: left;
    background-color: #F5F6FA;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
}

.snoofa-pricing-table .table_row .cell .tick {
    height: 26px;
    width: 26px;
    display: block;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}
.snoofa-pricing-table .table_row .cell .tick.true {
    background-image: url('ticks/true.svg');
}
.snoofa-pricing-table .table_row .cell .tick.false {
    background-image: url('ticks/false.svg');
}


.snoofa-pricing-table .desktop_pricing_table .table_rows:first-of-type .table_row:first-of-type .cell:first-of-type {
    border-top-left-radius: 12px;
}
.snoofa-pricing-table .desktop_pricing_table .table_rows:last-of-type .table_row:last-of-type .cell:first-of-type {
    border-bottom-left-radius: 12px;
}
.snoofa-pricing-table .desktop_pricing_table .table_rows:last-of-type .table_row:last-of-type .cell:last-of-type {
    border-bottom-right-radius: 12px;
}

@media(max-width: 1499.98px) {
    .snoofa-pricing-table .table_headings .cell,
    .snoofa-pricing-table .table_row .cell {
        padding: 15px 25px;
        font-size: 17px;
    }
}
@media(max-width: 991.98px) {
    .snoofa-pricing-table .table_headings .cell,
    .snoofa-pricing-table .table_row .cell {
        padding: 15px 20px;
        font-size: 16px;
    }

    .snoofa-pricing-table .table_headings .cell,
    .snoofa-pricing-table .table_row .cell {
        width: calc(20%);
    }
    .snoofa-pricing-table .table_headings .cell:nth-of-type(1),
    .snoofa-pricing-table .table_row .cell:nth-of-type(1) {
        width: calc(40%);
    }

}


/*** MOBILE STYLES ***/
@media(max-width: 767.98px) {
    .snoofa-pricing-table .desktop_pricing_table {
        display: none;
    }
    .snoofa-pricing-table .mobile_pricing_table {
        display: block;
    }

    .snoofa-pricing-table .table_headings .cell:nth-of-type(1),
    .snoofa-pricing-table .table_row .cell:nth-of-type(1),
    .snoofa-pricing-table .table_headings .cell,
    .snoofa-pricing-table .table_row .cell {
        width: 50%;
    }

    .snoofa-pricing-table .table_rows .table_row:first-of-type .cell:nth-of-type(1) {
        border-top-left-radius: 12px;
    }
    .snoofa-pricing-table .table_rows .table_row:first-of-type .cell:nth-of-type(2) {
        border-top-right-radius: 12px;
    }
    .snoofa-pricing-table .table_rows .table_row:last-of-type .cell:nth-of-type(1) {
        border-bottom-left-radius: 12px;
    }
    .snoofa-pricing-table .table_rows .table_row:last-of-type .cell:nth-of-type(2) {
        border-bottom-right-radius: 12px;
    }

    .snoofa-pricing-table .table_heading {
        padding: 13px 55px;
        border-radius: 12px;
        text-align: center;
        font-family: satoshi, sans-serif;
        font-weight: bold;
        font-size: 20px;
        margin-top: 30px;
        background-color: black;
        color: white;
    }


    .snoofa-pricing-table .table_heading.green {
        background-color: #B7EB55;
        color: var(--black);
    }
    .snoofa-pricing-table .table_heading.navy {
        background-color: #174463;
        color: var(--white);
    }
    .snoofa-pricing-table .table_heading.teal {
        background-color: #A4DACE;
        color: var(--black);
    }

    .snoofa-pricing-table .table_label {
        text-transform: uppercase;
        letter-spacing: 1.5px;
        width: 100%;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        padding: 16px 55px;
        font-size: 15px;
    }

    .snoofa-pricing-table .table_headings .cell,
    .snoofa-pricing-table .table_row .cell {
        height: 50px;
        max-height: 50px;
    }

    .snoofa-pricing-table .table_headings .cell,
    .snoofa-pricing-table .table_row .cell {
        padding: 15px;
        font-size: 15px;
        line-height: 1.2;
    }
}

@media(max-width: 374px) {
    .snoofa-pricing-table .table_headings .cell,
    .snoofa-pricing-table .table_row .cell {
        padding: 10px;
        font-size: 13px;
    }
}



/*** Main heading Section + Heading Prefields ***/
.snoofa-pricing-table .main_heading_section,
.snoofa-pricing-table .table_prefields {
    padding-bottom: 60px;
}
.snoofa-pricing-table .three_column_boxes {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-bottom: 120px;
}
.snoofa-pricing-table .three_column_boxes .box {
    width: calc(33.3% - 15px);
    padding: 45px 60px;
    text-align: center;
    border-radius: var(--global-border-radius);
    background-color: black;
    color: white;
}
.snoofa-pricing-table .three_column_boxes .box p {
    margin-bottom: 0;
}

.snoofa-pricing-table .three_column_boxes .box:nth-of-type(1) {
    background-color: var(--lime);
}
.snoofa-pricing-table .three_column_boxes .box:nth-of-type(1) * {
    color: var(--black);
}

.snoofa-pricing-table .three_column_boxes .box:nth-of-type(2) {
    background-color: #174463;
}
.snoofa-pricing-table .three_column_boxes .box:nth-of-type(2) * {
    color: var(--white);
}

.snoofa-pricing-table .three_column_boxes .box:nth-of-type(3) {
    background-color: #A4DACE;
}
.snoofa-pricing-table .three_column_boxes .box:nth-of-type(3) * {
    color: var(--black);
}

@media(max-width: 1299.98px) {
    .snoofa-pricing-table .three_column_boxes .box {
        padding: 30px;
    }
    .snoofa-pricing-table .main_heading_section {
        padding-bottom: 30px;
    }
    .snoofa-pricing-table .three_column_boxes {
        margin-bottom: 90px;
    }
    .snoofa-pricing-table .main_heading_section,
    .snoofa-pricing-table .table_prefields {
        padding-bottom: 40px;
    }
}

@media(max-width: 991.98px) {
    .snoofa-pricing-table .three_column_boxes .box {
        width: 100%;
        margin-bottom: 20px;
    }
    .snoofa-pricing-table .main_heading_section {
        padding-bottom: 30px;
    }

    .snoofa-pricing-table .main_heading_section h1 {
        margin-bottom: 0;
    }
    .snoofa-pricing-table .table_prefields {
        padding-bottom: 30px;
    }
}

@media(max-width: 767.98px) {
    .snoofa-pricing-table .three_column_boxes {
        margin-bottom: 60px;
    }

    .snoofa-pricing-table .custom_padding {
        padding-top: 100px;
        padding-bottom: 50px;
    }
    .snoofa-pricing-table .table_prefields {
        padding-bottom: 0;
    }
}

@media(max-width: 575.98px) {
    .snoofa-pricing-table .three_column_boxes .box {
        width: 100%;
        margin-bottom: 15px;
        padding: 30px 24px;
    }

}