﻿/* DIRTY Responsive pricing table CSS */

/* 
- make mobile switch sticky
*/
/** {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
    outline: 0;
}

body {
    font-family: Helvetica Neue,Helvetica,Arial,sans-serif;
    font-size: 14px;
    padding: 14px;
}

article {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    height: 1000px;
    position: relative;
}*/

.special-landing ul {
    display: flex;
    top: 0px;
    z-index: 10;
    padding-bottom: 14px;
}

.special-landing li {
    list-style: none;
    flex: 1;
}

    .special-landing li:last-child {
        border-right: 1px solid #DDD;
    }

.special-landing button {
    width: 100%;
    border: 1px solid #DDD;
    border-right: 0;
    border-top: 0;
    padding: 10px;
    background: #FFF;
    font-size: 14px;
    font-weight: bold;
    height: 60px;
    color: #999
}

.special-landing li.active button {
    background: #F5F5F5;
    color: #000;
}

.special-landing table {
    border-collapse: collapse;
    table-layout: fixed;
    width: 100%;
    margin: 0;
}

.special-landing th {
    background: #F5F5F5;
    display: none;
}
    
.special-landing td, .special-landing th {
    height: 53px
}

.special-landing td, .special-landing th {
    border: 1px solid #DDD;
    padding: 10px;
    empty-cells: show;
    vertical-align: middle;
}

.special-landing td, .special-landing th {
    text-align: left;
}

    .special-landing td + td, .special-landing th + th {
        text-align: center;
        /*display: none;*/
    }



.special-landing td.default {
    display: table-cell;
}

.special-landing .bg-purple {
    border-top: 3px solid #A32362;
}

.special-landing .bg-blue {
    border-top: 3px solid #0097CF;
}

.special-landing .sep {
    background: #F5F5F5;
    font-weight: bold;
}

.special-landing .txt-l {
    font-size: 28px;
    font-weight: bold;
}

.special-landing .txt-top {
    position: relative;
    top: -9px;
    left: -2px;
}

.special-landing .tick {
    font-size: 24px;
    color: #2CA01C;
}

.special-landing .x {
    font-size: 30px;
    color: red;
}

.special-landing .hide {
    border: 0;
    background: none;
}

@media (min-width: 640px) {
    .special-landing ul {
        display: none;
    }

    .special-landing td, .special-landing th {
        display: table-cell !important;
    }

    .special-landing td, .special-landing th {
        width: 330px;
    }

        .special-landing td + td, .special-landing th + th {
            width: auto;
            vertical-align: middle;
        }
}

@media (max-width: 640px) {
    .special-landing tbody img {
        max-width: 100px;
        max-height: 120px;
    }

    .custom-tbl th {
        display: block;
        font-size: 14px;
        display:table-cell;
        word-break: break-word;
    }
}

@media (max-width: 480px) {
    .special-landing td, .special-landing th {
        padding: 0;
        word-break: break-word;
        font-size: 14px
    }
}
