
.shadow2 {
    -moz-box-shadow:    2px 0 .4em #bbb, -2px 0 .4em #bbb;
    -webkit-box-shadow: 2px 0 .4em #bbb, -2px 0 .4em #bbb;
    box-shadow:         2px 0 .4em #bbb, -2px 0 .4em #bbb;
}

#main_body {
    padding: 1rem;
    border-radius: 5px;
}

.page_header_option.pricing {
    color: #dde2f0;
}

.billing_frequency_area {
    margin-bottom: 10px;
}

.billing_frequency_area .monthly, 
.billing_frequency_area .annual {
    border: 3px solid #555;
    border-radius: 20px;
    padding: 0.3rem;
    color: #222;
    margin: 0 5px 0 5px;
    cursor: pointer;
    font-weight: bold;
}

.billing_frequency_area .monthly:active, 
.billing_frequency_area .annual:active {
    -moz-box-shadow:    inset 0 0 5px #aaa;
    -webkit-box-shadow: inset 0 0 5px #aaa;
    box-shadow:         inset 0 0 5px #aaa;
}

.billing_frequency_area .monthly.active, 
.billing_frequency_area .annual.active {
    border-color: green;
    background: green;
    color: white;
}

#subscription_plan_labels .name {
    text-align: center;
    border-radius: 4px;
    margin-bottom: 8px;
    font-size: 1.3rem;
    font-weight: bold;
    background: #ddd;
    padding-left: 4px;
    padding-right: 4px;
    height: 64px;
    color: #333;
    justify-content: center;
}

#subscription_plan_labels .body {
    text-align: center;
    border-radius: 4px;
    background: #ddd;
    padding-left: 8px;
    padding-right: 8px;
    white-space: nowrap;
    color: #333;
}

#subscription_plan_labels .price {
    font-size: 1.2rem;
}

.subscription_plan_selector {
    padding-left: 5px;
    padding-right: 5px;
    min-width: 160px;
}

.subscription_plan_selector .name {
    text-align: center;
    border-radius: 4px;
    margin-bottom: 8px;
    font-size: 1.3rem;
    font-weight: bold;
    background: #434d5c;
    color: white;
    height: 64px;
    justify-content: center;
}

.subscription_plan_selector .body {
    text-align: center;
    border-radius: 4px;
    background: #d0cee4;
}

.subscription_plan_selector .price {
    font-size: 1.2rem;
    color: #2b2573;
    text-shadow: 1px 1px 2px #aaa;
}

.subscription_plan_selector .arrow {
    color: transparent;
}

.subscription_plan_selector.active .name {
    background: #df7426;
}

.subscription_plan_selector.active .body {
    background: #f9dbc0;
}

.subscription_plan_selector.active .arrow {
    color: #df7426;
}

#limits_table .row {
    border-top: 1px solid #aaa;
    padding: 0.85rem;
    flex-wrap: wrap;
}

#limits_table .row div:nth-child(1) {
    font-weight: bold;
    width: 24%;
}

#limits_table .row div:nth-child(2) {
    width: 76%;
}

.note_regular, note_regular {
    border-left: 4px solid #0000aa;
    padding-left: 1rem;
}

.note_regular p > b:first-child, note_regular::before {
    color: #0000aa;
}

note_regular, note_important, note_tip {
    display: block;
    margin-bottom: 1em;
    border-left: 4px solid #0000aa;
    padding-left: 1rem;
}

note_regular::before, note_important::before, note_tip::before {
    font-weight: bold;
}

note_regular {border-color: #0000aa}
note_tip {border-color: #008000}
note_important {border-color: #ff0000}

note_regular::before {content: "NOTE:"; color: #0000aa}
note_tip::before {content: "TIP:"; color: #008000}
note_important::before {content: "IMPORTANT:"; color: #ff0000}

/* Tablet View */
@media(max-width: 1024px) {
    #limits_table .row div:nth-child(1) {
        width: 100%;
    }

    #limits_table .row div:nth-child(2) {
        width: 100%;
    }
}














