﻿@import url(https://fonts.googleapis.com/css?family=Open+Sans:400,700);

*, *:before, *:after {
    box-sizing: border-box;
}

body {
    text-rendering: optimizeLegibility;
}

label {
    display: block;
    padding: 12px 6px;
}

    label:hover {
        cursor: pointer;
    }

.button {
    background: #eb278d;
    border-radius: 5px;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    display: block;
    padding: 15px;
    text-decoration: none;
}

.hidden {
    display: none;
    visibility: hidden;
}

table.pricechecker {
    width: 100%;
    text-align: center;
    position: relative;
    margin: 0 0 40px 0;
}

    table #plan tr:nth-child(odd) {
        background: #e3e3e3;
    }

    table .cash {
        background: rgba(0, 0, 0, 0.2);
    }

    table .bronze {
        background: rgba(167,112,68,0.2);
    }

    table .silver {
        background: rgba(192,192,192,0.2);
    }

    table .gold {
        background: rgba(255,215,0,0.2);
    }

    table tr {
        position: relative;
        width: 100%;
    }

        table tr.feat:nth-child(4n+3) {
            background: #f6f5f5;
        }

        table tr.sub, table tr.total {
            font-weight: 700;
            background: #dce2e3 !important;
        }

    table .feat:hover {
        cursor: pointer;
    }

    table .desc {
        display: none;
        background: #e1e1e1;
    }

        table .desc td:first-child {
            padding: 15px;
            text-align: left;
        }

    table th {
        color: #fff;
        border-left: 1px solid rgba(255, 255, 255, 0.2);
    }

        table th div {
            height: 46px;
            padding: 8px 0 0 0;
        }

        table th:first-child {
            border-left: none;
        }

        table th:hover {
            cursor: pointer;
        }

        table th .icons {
            top: 0px;
            left: 4px;
            position: relative;
            color: rgba(255, 255, 255, 0.6);
        }

        table th ul {
            width: 100%;
            background: #ce1576;
            display: none;
        }

            table th ul li {
                padding: 10px 0;
            }

                table th ul li:hover {
                    background: #eb278d;
                }

    table.pricechecker td {
        padding: 12px 6px;
        font-size: 0.9em;
        vertical-align: middle;
    }

        table.pricechecker td:first-child {
            text-align: right;
        }

        table.pricechecker td.color {
            background: rgba(150, 150, 150, 0.1);
        }

.icons {
    font-size: 1em;
    line-height: 1em;
}
