﻿/*! HTML5 Boilerplate v4.3.0 | MIT License | http://h5bp.com/ */

/*
 * What follows is the result of much research on cross-browser styling.
 * Credit left inline and big thanks to Nicolas Gallagher, Jonathan Neal,
 * Kroc Camen, and the H5BP dev community and team.
 */

/* ==========================================================================
   Base styles: opinionated defaults
   ========================================================================== */

html,
button,
input,
select,
textarea {
    color: #222;
}

html {
    font-size: 1em;
    line-height: 1.4;
    overflow-y: scroll;
}

/*
 * Remove text-shadow in selection highlight: h5bp.com/i
 * These selection rule sets have to be separate.
 * Customize the background color to match your design.
 */

::-moz-selection {
    background: #b3d4fc;
    text-shadow: none;
}

::selection {
    background: #b3d4fc;
    text-shadow: none;
}

/*
 * A better looking default horizontal rule
 */

hr {
    display: block;
    height: 1px;
    border: 0;
    border-top: 1px solid #ccc;
    margin: 0;
    padding: 0;
}

/*
 * Remove the gap between images, videos, audio and canvas and the bottom of
 * their containers: h5bp.com/i/440
 */

audio,
canvas,
img,
video {
    vertical-align: middle;
}

/*
 * Remove default fieldset styles.
 */

fieldset {
    border: 0;
    margin: 0;
    padding: 0;
}

/*
 * Allow only vertical resizing of textareas.
 */

textarea {
    resize: vertical;
}

/* ==========================================================================
   Browse Happy prompt
   ========================================================================== */

.browsehappy {
    margin: 0.2em 0;
    background: #ccc;
    color: #000;
    padding: 0.2em 0;
}

/* ==========================================================================
   Sitewide Author styles
   ========================================================================== */
body {
    background: none !important; /* Overwrite JS inserted BG via Marketplace */
    /* Typography - in addition to normalize.css */
    font: 400 100%/1.5 "proxima-nova", Arial, sans-serif;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    color: #555; /* Full black is usually too harsh */
    /* Transitions - For Scaling */
    -webkit-transition-property: font-size;
    -moz-transition-property: font-size;
    transition-property: font-size;
    -webkit-transition-duration: 0.5s, 0.5s;
    -moz-transition-duration: 0.5s, 0.5s;
    transition-duration: 0.5s, 0.5s;
    -webkit-transition-timing function: linear, ease-in;
    -moz-transition-timing function: linear, ease-in;
    transition-timing function: linear, ease-in;
    /* Layout
	overflow: hidden; /* Allows child elements to use overflow: visible without creating a horizontal scrollbar. */
}

/* Styling Classes */
b,
strong { /* Change based on your chosen fonts */
    font-weight: 800; /* Don't use "bold" because it is an artifical computation of bold - most fonts only go up to 800 */
}

i, .italic {
    font-style: italic;
}

.semibold { /* Change based on your chosen fonts */
    font-weight: 600;
}

.light { /* Change based on your chosen fonts */
    font-weight: 100;
}

img.full {
    width: 100%;
}

.black {
    color: #555;
}

.blue {
    color: #66d9fd;
}

.green {
    color: #b7f539;
}

.purple {
    color: #6558a0;
}

h1,
body.home h2,
h2.large {
    color: #6558a0;
    font-size: 2.000em; /* 32px */
    font-weight: 600;
    margin: 0 0 0.83em 0; /* 26px based on 32px */
}

h2 {
    color: #6558a0;
    font-size: 1.500em; /* 24px */
    font-weight: 600;
    margin: 0 0 0.83em 0; /* 19px based on 24px */
}

h3 {
    font-size: 1.250em; /* 20px */
    font-weight: 600;
}

p, li {
    font-size: 1.250em; /* 20px */
    font-weight: 100;
    margin: 0 0 1em 0;
}

li {
    margin: 0 0 0.5em 0;
    line-height: 1em;
}

.button,
.btn,
.submit-button {
    display: inline;
    background-color: #2ca9cd;
    font-family: "proxima-nova", Arial, sans-serif;
    font-size: 1.125em; /* 18px */
    font-weight: 600;
    color: #fff;
    text-align: center;
    border: none;
    padding: 0.556em 1.500em 0.833em 1.111em; /* 10px 27px 15px 20px based on 18px */
    -webkit-border-radius: 0.278em; /* 5px based on 18px */
    -moz-border-radius: 0.278em; /* 5px based on 18px */
    border-radius: 0.278em; /* 5px based on 18px */
    text-decoration: none;
}

    .button:after,
    .btn:after,
    .submit-button:after {
        content: '\00a0 \00a0';
        background: url('../images/right_arrow.png') no-repeat 0 0;
        font-size: 2.333em; /* 42px based on 18px */
        left: 0.238em; /* 10px based on 42px */
        line-height: 0.429em; /* 18px based on 42px */
        position: relative;
        top: 0.595em; /* 25px based on 42px */
    }

    .button:hover,
    .btn:hover,
    .submit-button:hover {
        background-color: #90b83e;
    }

input[type="submit"].button,
input[type="submit"].btn {
    padding: 0.556em 1.111em; /* inputs can not display pseudo content */
}

.align-left {
    float: left;
}

.align-right {
    float: right;
}

img.align-left {
    float: left;
    padding: 0 30px 20px 0;
}

img.align-right {
    float: right;
    padding: 0 0 20px 30px;
}

/* Layout */
.wrapper { /* 1180px content area */
    max-width: 75.000em; /* 1200px */
    padding: 0 0.625em; /* 10px */
    margin: 0 auto;
    position: relative;
}

section {
    padding: 3.125em 0; /* 50px */
}

.block-blue, .block-gray, .block-green {
    padding: 25px 0;
    margin: 20px 0;
}

.block-blue {
    background: #0193de;
}

    .block-blue h2, .block-blue p,
    .block-green h2, .block-green p {
        color: #FFF;
    }

.block-gray {
    background: #ebebeb;
}

.block-green {
    background: #6ab000;
}

.renewable-energy-types .block-row {
    padding: 40px;
    line-height: 1.2;
}

/* site header */
header {
    -webkit-transition: background 0.5s;
    -moz-transition: background 0.5s;
    transition: background 0.5s;
    height: 11.563em; /* 185px */
    position: relative;
}

    header:after {
        content: "";
        background: url('../images/backgrounds/bg_hero_family.jpg') no-repeat center 1.875em; /* 30px */
        height: 11.563em; /* 185px */
        opacity: 0.5;
        top: 0;
        left: 0;
        bottom: 0;
        right: 0;
        position: absolute;
        z-index: -1;
    }

nav {
    text-align: right;
    background-color: #6558a0;
    padding: 0.625em 0; /* 10px */
    line-height: 1;
}

    nav ul {
        position: relative;
        list-style: none;
        display: inline-table;
        margin: 0;
    }

        nav ul:after {
            content: "";
            clear: both;
            display: block;
        }

        nav ul li {
            font-size: 0.875em; /* 14px */
            display: inline-block;
            margin: 0 0 0 2.188em; /* 35px */
            float: left;
        }

            nav ul li a {
                color: #fff;
                text-decoration: none;
                display: block;
            }

    nav a:hover {
        text-decoration: underline;
    }

    nav a.dropdown:hover {
        text-decoration: none;
        cursor: default;
    }

    /* nav dropdown */
    nav ul ul {
        display: none;
        position: absolute;
        top: 100%;
        padding: 0;
        z-index: 200;
    }

    nav ul li:hover > ul {
        display: block;
    }

    nav ul ul li {
        background-color: #6558A0;
        border-bottom: 1px solid #AAA;
        display: block;
        float: none;
        margin: 0;
        position: relative;
        text-align: left;
    }

        nav ul ul li a {
            padding: 1.429em 1.071em; /* 20px 15px based on 14px */
        }

            nav ul ul li a:hover {
                text-decoration: underline;
            }
/* end nav dropdown */

header .logo {
    position: relative;
    top: 2.188em; /* 35px */
    left: 0.938em; /* 15px */
}

.header_cta {
    background: url('../images/backgrounds/bg_grey_pattern.jpg') repeat 0 0;
}

    .header_cta .business:before {
        background: url("../images/backgrounds/bg_gray_trigs.png") no-repeat scroll right top rgba(0, 0, 0, 0);
        content: "";
        display: inline-block;
        float: left;
        height: 8.563em; /* 137px */
        position: relative;
        width: 16.4%; /* 96px/6em for a 80px wide image */
        margin: 0 -3% 0 0; /* 16px/1em to offset moving into the image */
        z-index: 2;
    }

    .header_cta .business-rate-banner {
        border-radius: 0;
    }

    .header_cta .rate_fields input[type="text"] {
        border: 1px solid rgba(85, 85, 85, 0.5);
        height: 2.688em; /* 43px */
        position: relative;
        top: -1px;
        width: 30%; /* 10.688em/171px */
    }

    .header_cta label {
        font-size: 1.125em; /* 18px */
        line-height: 3.889em; /* 70px based on 18px */
    }

div.header_cta form.rate_fields input[type="submit"] {
    margin: 0.188em 0 0 0; /* 3px */
}

/* energy consumption page */

.calculate-steps {
    padding-bottom: 30px;
}

.step {
    color: #fff;
}

.calculate-steps .bg-blue {
    background: #1b94b7;
}

.calculate-steps .bg-orange {
    background: #cf491f;
}

.calculate-steps .bg-purple {
    background: #53468f;
}

.calculate-steps .bg-green {
    background: #789d2c;
}

.step-count {
    float: left;
    width: 130px;
    text-align: center;
}

    .step-count .step-label {
        text-transform: uppercase;
        padding-top: 40px;
    }

    .step-count .number {
        font-size: 72px;
        line-height: 1;
    }

.calculate-steps .bg-blue .breakdown-wrap {
    background: #2ca9cd;
    float: left;
}

.calculate-steps .bg-orange .breakdown-wrap {
    background: #e5592d;
    float: left;
}

.calculate-steps .bg-purple .breakdown-wrap {
    background: #6558a0;
    float: left;
}

.calculate-steps .bg-green .breakdown-wrap {
    background: #90b83e;
    float: left;
}

.breakdown {
    float: left;
    width: 625px;
    padding: 0 30px;
    margin: 20px 0;
    border-right: 2px solid rgba(70,70,70, .1);
}

    .breakdown > h2 {
        color: #fff;
        font-weight: bold;
    }

    .breakdown p {
        line-height: 1.2;
        margin: 0;
    }

.equation {
    float: left;
    width: 385px;
    padding: 20px;
}

    .equation .problem {
        font-weight: bold;
        padding-top: 60px;
        font-size: 18px;
    }

    .equation .answer {
        font-size: 30px;
    }

.bg-orange .equation {
    background: url(/images/arrow-blue.png) no-repeat top center;
}

.bg-purple .equation {
    background: url(/images/arrow-orange.png) no-repeat top center;
}

.bg-green .equation {
    background: url(/images/arrow-purple.png) no-repeat top center;
}

table.common-wattages {
    font-size: 18px;
    width: 530px;
    margin-bottom: 30px;
    font-weight: 200;
}

    table.common-wattages tr:nth-child(odd) {
        background: #dbedb7;
    }

    table.common-wattages td {
        padding: 5px 0;
        text-indent: 10px;
    }

/* Green Energy Guide Page */
.renewable-energy-types {
    margin-bottom: 30px;
}

.bg-blue {
    background: #2ca9cd;
}

.bg-orange {
    background: #e5592d;
}

.bg-purple {
    background: #6558a0;
}

.bg-green {
    background: #90b83e;
}

    .bg-blue h2, .bg-blue p,
    .bg-orange h2, .bg-orange p,
    .bg-purple h2, .bg-purple p,
    .bg-green h2, .bg-green p {
        color: #FFF;
    }

.city-illustration {
    height: auto;
    width: 100%;
    margin-bottom: 20px;
}

.bg-tree {
    background: url(/images/bg-green-tree.png) no-repeat center right;
}

/* Compare Form */
.compare_form {
    background: url('../images/backgrounds/bg_purple_tri.png') repeat -0.313em -1.875em; /* -5px -30px */
    padding: 1.250em; /* 20px */
    -webkit-border-radius: 0.500em; /* 8px */
    -moz-border-radius: 0.500em; /* 8px */
    border-radius: 0.500em; /* 8px */
}

body .compare_form h2 {
    color: #fff;
    font-weight: 100;
    margin: 0;
}

.rate_fields label {
    display: inline-block;
    font-size: 0.875em; /* 14px */
    color: #fff;
    margin: 0 0 0.357em 0; /* 5px based on 14px */
    width: 100%;
}

.rate_fields input[type="text"], .rate_fields select {
    border: none;
    -webkit-border-radius: 0.313em; /* 5px */
    -moz-border-radius: 0.313em; /* 5px */
    border-radius: 0.313em; /* 5px */
    font-size: 1em; /* 16px */
    font-weight: 100;
    padding: 0.656em 1.111em; /* 10px 17px */
    width: 100%;
    height: 2.563em; /* 41px */
}

.rate_fields select {
    background: url('../images/backgrounds/bg_select_arrow.png') no-repeat right center #fff;
    color: #6558a0;
    /* Needed to remove default arrow */
    text-indent: 0.01px;
    text-overflow: "";
    /* END remove default arrow */
    -moz-appearance: none;
    -webkit-appearance: none;
    appearance: none; /* remove default arrow future */
}

.rate_fields input[type="submit"].button {
    margin: 1.688em 0 0 0; /* 27px */
}

/* END Compare Form */

footer {
    text-align: center;
}

    footer .cta {
        padding: 3.125em 0; /* 50px */
        background: url('../images/backgrounds/bg_purple_tri.png') repeat -0.313em -1.875em; /* -5px -30px */
    }

        footer .cta p {
            color: #fff;
            font-size: 2.250em; /* 36px */
            line-height: 1;
            margin: 0;
        }

        footer .cta span {
            font-size: 1.333em; /* 48px based on 36px */
        }

.footer-nav {
    padding: 0.625em 0 3.750em 0; /* 10px 0 60px 0 */
    background: url('../images/backgrounds/bg_grey_pattern.jpg') repeat 0 0;
}

    .footer-nav ul {
        padding: 0;
    }

    .footer-nav li {
        display: inline-block;
        margin: 0 0 0 1.250em; /* 20px */
    }

        .footer-nav li a, footer small {
            color: #555;
            font-size: 0.700em; /* 14px based on 20px */
            font-weight: 100;
            text-decoration: none;
        }

footer small {
    font-size: 0.875em; /* 14px */
}

.footer-nav li a:hover {
    text-decoration: underline;
}

/* ==========================================================================
   Page Level Author styles
   ========================================================================== */
/* Home Hero */
header.home {
    background: url('../images/backgrounds/bg_hero_family.jpg') no-repeat center 1.875em; /* 30px */
    height: 50.438em; /* 807px */
}

    header.home:after {
        display: none;
    }

    header.home .logo {
        top: 4.063em; /* 65px */
    }

    header.home .hero_form {
        display: block;
        position: relative;
        background-color: rgba(101,88,160,0.8);
        max-width: 40%;
        padding: 1.250em; /* 20px */
        -webkit-border-radius: 0.500em; /* 8px */
        -moz-border-radius: 0.500em; /* 8px */
        border-radius: 0.500em; /* 8px */
        top: 13.438em; /* 215px */
    }

header .hero_form h1 {
    font-size: 2.250em; /* 36px */
    font-weight: 100;
    color: #fff;
    margin: 0 0 0.556em 0; /* 20px based on 36px */
    line-height: 1.2;
}

header.home .disclaimer {
    display: block;
    background: url('../images/backgrounds/bg_grey_pattern.jpg') repeat 0 0;
    padding: 1.250em 0; /* 20px */
    position: absolute;
    bottom: 0;
    width: 100%;
}

.disclaimer small {
    font-size: 1.125em; /* 18px */
    line-height: 1;
}

.hero_form hr {
    margin: 1.250em 0 0.625em 0; /* 20px 0 10px 0 */
}

.hero_form .call-us {
    font-size: 1.875em; /* 30px */
    line-height: 1em;
    margin: 0 0 0.333em 0; /* 10px based on 30px */
}

.hero_form .phone {
    color: #FFFFFF;
    font-size: 3.000em; /* 48px */
    font-weight: 600;
    line-height: 1em;
    margin: 0;
}

/* END Home Hero */

.business-rate-banner {
    background: url('../images/backgrounds/bg_business_rate_banner.jpg') no-repeat 0 0;
    max-width: 35.688em; /* 571px */
    height: 8.563em; /* 137px */
    padding: 1.250em 1.875em; /* 20px 30px */
    -webkit-border-radius: 0.500em; /* 8px */
    -moz-border-radius: 0.500em; /* 8px */
    border-radius: 0.500em; /* 8px */
    position: relative;
    left: 3%; /* 18px */
}

    .business-rate-banner p {
        font-family: "open sans", sans-serif;
        font-size: 1.500em; /* 24px */
        line-height: 1em;
        color: #fff;
        margin: 0 0 1.250em 0; /* 30px based on 24px */
    }

.grid-demo {
    background: url('../images/backgrounds/bg_green_triangle.png') repeat center top;
    text-align: center;
}

    .grid-demo .col-1-4 {
        -webkit-box-sizing: content-box;
        -moz-box-sizing: content-box;
        box-sizing: content-box;
        width: 23.5%;
        margin: 0 0 0 2%;
        padding: 0;
    }

        .grid-demo .col-1-4:first-child {
            margin: 0;
        }

    .grid-demo .panel {
        background-color: #fff;
        padding: 3.7%; /* 10px */
        min-height: 24.063em; /* 385px */
        max-width: 17.188em; /* 275px */
        position: relative;
    }

        .grid-demo .panel p {
            margin: 0 0 1em 0;
        }

        .grid-demo .panel img {
            position: absolute;
            bottom: 0.625em; /* 10px */
            left: 0.625em; /* 10px */
            width: 93%;
        }

.internal-links {
    max-width: 60%;
}

    .internal-links a {
        font-size: 1.250em; /* 20px */
        color: #e5592d;
        text-decoration: none;
        min-width: 14.750em; /* 295px based on 20px */
        display: inline-block;
        text-align: left;
    }

        .internal-links a:hover {
            color: #90b83e;
        }

        .internal-links a:nth-child(even) {
            margin: 0 0 0 4.000em; /* 80px based on 20px */
        }

.story .logo {
    position: absolute;
    top: 6.875em; /* 110px */
    right: 2.813em; /* 45px */
}

.how-to-use img {
    margin: 0 0 1.250em 0; /* 20px */
}

.how-to-use p {
    font-size: 1.125em; /* remove if sitewide becomes 18px */
    padding: 0 0 2.778em 0; /* 50px  based on 18px */
}

    .how-to-use p span {
        font-weight: 600;
    }

/* ==========================================================================
   Marketplace styles
   ========================================================================== */

#wrapper-header,
#wrapper-address {
    display: none;
}

#wrapper-content {
    min-width: 300px;
}

#content-market {
    max-width: 75.000em; /* 1200px */
    width: auto;
    padding: 0 0.625em; /* 10px */
    margin: 0 auto;
    position: relative;
}

    #content-market #disclaimer {
        display: none;
    }

.box-price * {
    -webkit-text-stroke: none !important;
    text-stroke: none !important;
}

#chart {
    max-width: 75.000em; /* 1200px */
    width: auto;
    margin: 0 auto;
    padding: 0.625em 0; /* 10px */
    /* remove */
    background: none;
}

#zip-utility-container {
    color: #6558a0;
    font-size: 1.400em; /* 22px */
    font-weight: 600;
    margin: 0 0 0.83em 0; /* 19px based on 24px */
    display: block;
    /* Remove */
    border: none;
    font-family: "proxima-nova", Arial, sans-serif;
    padding: 0;
    text-align: left;
    text-transform: capitalize;
    z-index: 250;
}

#sort-filter-bar {
    display: inline-block;
    background-color: #2ca9cd;
    -webkit-border-radius: 0.278em; /* 5px based on 18px */
    -moz-border-radius: 0.278em; /* 5px based on 18px */
    border-radius: 0.278em; /* 5px based on 18px */
    max-width: 60%; /* was 577px */
    width: auto;
    font-size: 1.125em; /* 18px */
    height: 2.500em; /* 45px based on 18px */
    line-height: 1;
    margin: 0 auto 1%;
    /* Remove */
    padding: 0;
}

    #sort-filter-bar li {
        display: inline-block;
        background-color: #2ca9cd;
        font-family: "proxima-nova", Arial, sans-serif;
        font-size: 1.111em; /* 20px based on 18px */
        font-weight: 600;
        letter-spacing: 1px;
        color: #fff;
        text-align: center;
        border: none;
        height: 2.250em; /* 45px based on 18px */
        /* Remove */
        text-transform: capitalize;
    }

        #sort-filter-bar li:first-child {
            background-color: #069cc7;
            padding: 0.556em 1.111em;
            -webkit-border-radius: 0.278em 0 0 0.278em; /* 5px based on 18px */
            -moz-border-radius: 0.278em 0 0 0.278em; /* 5px based on 18px */
            border-radius: 0.278em 0 0 0.278em; /* 5px based on 18px */
        }

ul#sort-filter-bar li a,
ul#sort-filter-bar li a.button,
ul#sort-filter-bar li a.button-filters,
ul#sort-filter-bar li a.button-legend {
    color: #fff;
    padding: 0;
    position: relative;
    top: -0.222em; /* 4px based on 18px */
    white-space: nowrap; /* prevent weird wrapping in Chrome */
    /* Remove */
    font-family: "proxima-nova", Arial, sans-serif;
    font-size: 0.900em; /* 18px based on 20px */
    font-weight: 100;
    text-decoration: none;
    line-height: 1em;
    text-transform: capitalize;
}

#sort-filter-bar li a:after {
    display: none;
}

#sort-filter-bar .button:hover,
#sort-filter-bar .button-filters:hover,
#sort-filter-bar .button-legend:hover,
#sort-filter-bar .button-active {
    color: #C13600;
    background-color: #2ca9cd;
}

#sort-filter-bar li.divider {
    border: 1px solid #069CC7;
}

ul#sort-filter-bar li a.button-active,
ul#sort-filter-bar li a.button.button-active,
ul#sort-filter-bar li a.button-filters.button-active,
ul#sort-filter-bar li a.button-legend.button-active {
    color: #C13600;
}

#wrapper-tabs {
    border: none;
    background: none;
    margin: 0.375em 0 0 0; /* 6px */
    float: right;
    /* Remove */
    padding: 0;
}

    #wrapper-tabs span {
        font-weight: 100;
        font-size: 1.125em; /* 18px */
        float: left;
        margin: 0.111em 0 0 0; /* 2px based on 18px */
    }

#electric-tab,
#gas-tab {
    background-color: #069cc7;
    -webkit-border-radius: 0.278em; /* 5px based on 18px */
    -moz-border-radius: 0.278em; /* 5px based on 18px */
    border-radius: 0.278em; /* 5px based on 18px */
    color: #FFFFFF;
    cursor: pointer;
    display: inline-block;
    float: left;
    font-size: 1.125em; /* 18px */
    font-weight: 100;
    margin: 0 0 0 0.556em; /* 10px based on 18px */
    padding: 0.556em 1.111em;
    position: relative;
    top: -0.444em; /* 8px based on 18px */
    /* Remove */
    font-family: "proxima-nova", Arial, sans-serif;
    text-decoration: none;
    text-shadow: none;
    text-transform: lowercase;
    border: none;
    background-image: none;
}

    #electric-tab:hover,
    #gas-tab:hover {
        background-color: #90B83E;
        /* Remove */
        background-image: none;
        text-shadow: none;
        border: none;
    }

.title-bar {
    background-color: #6558a0;
    height: 3.000em; /* 48px */
    margin: 0 0 0.188em; /* 3px */
    width: 100%;
    /* remove */
    background-image: none;
    border: none;
    box-shadow: none;
    border-radius: 0;
}

    .title-bar li {
        color: #FFFFFF;
        display: inline-block;
        float: left;
        font-size: 1.125em; /* 18px */
        padding: 0.889em 0.556em 0.722em 0; /* 16px 10px 13p based on 18px */
        text-align: right;
        /* remove */
        font-family: "proxima-nova", Arial, sans-serif;
        text-shadow: none;
        text-transform: capitalize;
    }

        .title-bar li.column-rank {
            border-right: 1px solid #1A1E1D;
            width: 5.1%; /* 60px/3.333em based on 18px */
        }

        .title-bar li.column-rates {
            border-right: 1px solid #1A1E1D;
            text-align: center;
            width: 10.6%; /* 125px/6.944em based on 18px */
        }

        .title-bar li.column-products {
            border-right: 1px solid #1A1E1D;
            text-align: center;
            width: 14%; /* 165px/9.167em based on 18px */
        }

        .title-bar li.column-variable {
            border-right: 1px solid #1A1E1D;
            width: 10.000em; /* 180px based on 18px - NO LONGER USED */
        }

        .title-bar li.column-6-month,
        .title-bar li.column-12-month,
        .title-bar li.column-36-month-plus {
            border-right: 1px solid #1A1E1D;
            width: 8.333em; /* 150px based on 18px - NO LONGER USED */
        }

#products li.product-main {
    background: none;
    border-bottom: 1px solid #aaa;
    border-top: 1px solid #aaa;
    display: block;
    font-size: 1.250em; /* 25px based on 20px */
    height: 3.320em; /* 83px based on 25px */
    margin: 0 0 0.400em; /* 10px based on 25px */
}

.rank {
    float: left;
    height: 3.280em; /* 82px based on 25px */
    padding: 0.400em 0.800em 0.800em 0.800em; /* 10px 20px based on 25px */
    width: 5.1%; /* 60px/2.400em based on 25px */
    text-align: center;
    text-transform: uppercase;
    /* remove */
    color: #555;
    background: none;
}

    .rank .box-1 {
        font-size: 0.400em; /* 10px based on 25px */
        width: 200%; /* 40px/4.000em based on 10px */
        position: relative;
        left: -1em; /* 10px */
        /* remove */
        font-family: "proxima-nova", Arial, sans-serif;
        text-align: center;
        text-transform: uppercase;
    }

    .rank .box-2 {
        background: none #bebebe;
        font-size: 0.960em; /* 24px based on 25px */
        height: 1.500em; /* 36px based on 24px*/
        width: 200%; /* 40px/1.667em based on 24px */
        margin: 0.208em 0 0; /* 5px based on 24px */
        padding: 0.250em 0; /* 6px based on 24px */
        -webkit-border-radius: 0.208em; /* 5px based on 24px */
        -moz-border-radius: 0.208em; /* 5px based on 24px */
        border-radius: 0.208em; /* 5px based on 24px */
        position: relative;
        left: -0.417em; /* 10px based on 24px */
        /* remove */
        font-family: "proxima-nova", Arial, sans-serif;
        text-align: center;
    }

        .rank .box-2 span.hash {
            font-size: 0.583em; /* 14px based on 24px */
            /* remove */
            font-family: "proxima-nova", Arial, sans-serif;
        }

.rate {
    background: none #e5592d;
    float: left;
    height: 3.320em; /* 83px based on 25px */
    width: 10.6%; /* 125px/5.000em based on 25px */
    position: relative;
    top: -1px;
}

    .rate .box-price {
        display: block;
        height: 1.5em; /* 43px based on 31px */
        margin: 0.323em 0 0 0.355em; /* 10px 0 0 11px based on 31px */
        position: relative;
        width: 83%; /* 103px/3.323em based on 31px */
        -webkit-border-radius: 0.161em; /* 5px based on 31px */
        -moz-border-radius: 0.161em; /* 5px based on 31px */
        border-radius: 0.161em; /* 5px based on 31px */
        /* remove */
        border: none;
        text-shadow: none;
        box-shadow: none;
    }

        .rate .box-price .price,
        .product-type-gas .rate .box-price .price {
            color: #e5592d;
            display: block;
            font-size: 1.113em; /* 34.5px based on 31px */
            font-weight: 600;
            line-height: 1.1;
            margin: 0 1.514em 0 0; /* 53px based on 35px */
            text-align: right;
            /* remove */
            font-family: "proxima-nova", Arial, sans-serif;
            padding-top: 5px;
        }

        .rate .box-price sup {
            font-size: 0.514em; /* 18px based on 35px */
            font-weight: 800;
            letter-spacing: 0.111em; /* 2px based on 18px */
            margin: 0 0 0 0.167em; /* 3px based on 18px */
            position: absolute;
            top: 0.73em; /* 6px based on 18px */
            /* remove */
            font-family: "proxima-nova", Arial, sans-serif;
        }

            .rate .box-price sup.decimal span.cent {
                font-weight: 600;
                margin: -0.111em 0 0; /* 2px based on 18px */
                position: absolute;
                /* remove */
                font-family: "proxima-nova", Arial, sans-serif;
            }

        .rate .box-price .measurement {
            font-size: 0.258em; /* 8px based on 31px */
            left: 7.750em; /* 62px based on 8px */
            position: absolute;
            text-align: left;
            text-transform: uppercase;
            top: 1.625em; /* 13px based on 8px */
            width: 40%; /* 45px/5.625em based on 8px */
        }

    .rate li.product-type {
        font-size: 0.560em; /* 14px based on 25px */
        font-weight: 400;
        color: #fff;
        margin: 0.500em 0 0; /* 7px based on 14px */
        text-align: center;
        width: 100%;
        /* remove */
        font-family: "proxima-nova", Arial, sans-serif;
        text-transform: capitalize;
        text-shadow: none;
    }

.product-bar-wrapper {
    position: relative;
}

div.product-bar-wrapper div.product-bar {
    float: left;
    height: 2.440em; /* 61px based on 25px */
    margin: 0.400em 0 0 0 !important; /* 10px based on 25px */
    padding: 0.200em; /* 5px based on 25px */
    width: 68.1% !important; /* 815px/32.600em based on 25px */
    border-radius: 0 0.400em 0.400em 0; /* 10px based on 25px */
    /* none */
    background: none #dddddd;
    border: none;
    box-shadow: none;
}

.product-bar .inside {
    background: none #dddddd;
    position: relative;
    width: 100%;
    /* none */
    height: auto;
}

.flag-term {
    background: none #555;
    color: #FFFFFF;
    font-size: 0.560em; /* 14px based on 25px */
    font-weight: 100;
    height: 1.429em; /* 20px based on 14px */
    letter-spacing: 1px;
    padding: 0 0 1.786em 0.357em; /* 25px 5px based on 14px */
    position: absolute;
    right: 0.357em; /* 5px based on 14px */
    text-align: center;
    top: 0.357em; /* 5px based on 14px */
    width: 13.6%; /* 110px/7.857em based on 14px */
    -webkit-border-radius: 0.357em; /* 5px based on 14px */
    -moz-border-radius: 0.357em; /* 5px based on 14px */
    border-radius: 0.357em; /* 5px based on 14px */
    /* remove */
    font-family: "proxima-nova", Arial, sans-serif;
    text-shadow: none;
    text-transform: capitalize;
}

.price-info {
    color: #555;
    display: block;
    font-size: 0.400em; /* 10px based on 25px */
    font-weight: 100;
    line-height: 1em;
    text-align: center;
    position: absolute;
    right: 0.400em; /* 4px based on 10px */
    min-width: 11.000em; /* 110px based on 10px | to match .flag-term */
    width: auto; /* for longer lines */
    top: 3.700em; /* 37px based 10px */
    /* Remove */
    font-family: "proxima-nova", Arial, sans-serif;
    text-transform: capitalize;
}

.product-bar .inside .button {
    background: none #acacac;
    color: #FFF;
    cursor: pointer;
    font-size: 0.480em; /* 12px based on 25px */
    left: 16.667em; /* 188px based on 12px */
    padding: 0.250em 0.833em; /* 3px 10px based on 12px */
    position: absolute;
    text-decoration: none;
    top: 3.167em; /* 38px based on 12px */
    font-weight: 100;
    border-radius: 0.417em 0.417em 0 0; /* 5px based on 12px */
    display: inline-block;
    text-align: center;
    line-height: 1em;
    /* remove */
    border: none;
    box-shadow: none;
    font-family: "proxima-nova", Arial, sans-serif;
    text-shadow: none;
    text-transform: capitalize;
}

    .product-bar .inside .button:hover,
    .product-bar .inside .button-active,
    .product-type-gas .product-bar .inside .button:hover,
    .product-type-gas .product-bar .inside .button-active {
        /* remove */
        background: none #E5592D !important;
        border: none;
        color: #fff;
        text-shadow: none;
    }

    .product-bar .inside .button:after,
    .product-type-gas .product-bar .inside .button:after {
        display: none;
    }

.product-cta,
.product-details-cta {
    line-height: 1.3;
    text-align: center;
    color: #fff;
    font-weight: 100;
    width: 13% !important;
}

    .product-cta .promo-code,
    .product-details-cta .promo-code,
    .product-type-gas .product-details-cta .promo-code {
        color: #555 !important;
        font-size: 0.640em !important; /* 16px based on 25px */
        letter-spacing: 1px !important;
        text-align: center !important;
        display: inline-block !important;
        margin: 0.313em 0 0.188em 0 !important; /* 5px 3px based on 16px */
        position: relative !important;
        top: -0.438em !important; /* 7px based on 16px */
        white-space: nowrap;
        /* remove */
        background: none !important;
        border: none !important;
        box-shadow: none !important;
        font-family: "proxima-nova", Arial, sans-serif !important;
        text-shadow: none !important;
        text-transform: capitalize !important;
        padding: 0 !important;
    }

    .product-details-cta .promo-code {
        font-size: 1.333em !important; /* 16px based on 12px */
        margin: 0 0 0.313em 0 !important; /* 5px based on 16px */
    }

    .product-details-cta .phone {
        font-size: 1.167em; /* 14px based on 12px */
    }

    .product-cta .phone {
        font-size: 0.560em; /* 14px based on 25px */
    }

    .product-cta .phone,
    .product-details-cta .phone {
        display: block;
        background: none #E5592D;
        position: relative;
        -webkit-border-radius: 0.357em; /* 5px based on 14px */
        -moz-border-radius: 0.357em; /* 5px based on 14px */
        border-radius: 0.357em; /* 5px based on 14px */
        padding: 0.143em 0; /* 2px based on 14px */
        top: -0.643em; /* 9px based on 14px */
        /* remove */
        font-family: "proxima-nova", Arial, sans-serif;
    }

        .product-cta .phone span,
        .product-details-cta .phone span {
            font-size: 1.286em; /* 18px based on 14px */
            font-weight: 600;
            /* remove */
            font-family: "proxima-nova", Arial, sans-serif;
            color: #fff;
        }

.product-details-cta {
    float: left;
    padding: 3% 3% 0;
    position: relative;
    text-align: center;
    width: 20% !important;
    margin: 0 auto;
}

.provider-offer .provider,
.product-type-gas .provider-offer .provider {
    color: #6558A0;
    font-size: 0.720em; /* 18px based on 25px */
    font-weight: 600;
    /* remove */
    font-family: "proxima-nova", Arial, sans-serif;
    text-shadow: none;
}

.provider-offer .offer,
.product-type-gas .provider-offer .offer {
    font-size: 0.480em; /* 12px based on 25px */
    /* remove */
    text-transform: capitalize;
}

.expand-arrow {
    height: 0.806em; /* 25px based on 31px */
    position: relative;
    top: 0.097em; /* 3px based on 31px */
    z-index: 15;
}

img.bg-expand-arrow {
    left: 1.065em; /* 33px based on 31px */
    margin: 0 !important;
    position: absolute;
    top: -4px; /* was 0.161em - 5px based on 31px */
    z-index: 15;
}

.product-details {
    font-size: 0.600em; /* 12px based on 20px */
    background: none #ebebeb;
    border-top: 0.417em solid #FFFFFF; /* 5px based on 12px */
    display: none;
    line-height: 1.5;
    margin: -0.833em 0 0; /* 10px based on 12px */
    min-height: 17.500em; /* 210px based on 12px */
    position: relative;
    width: 100%;
    /* remove */
    border-right: none;
    border-left: none;
    border-bottom: none;
}

    .product-details .terms {
        background: none #ebebeb;
        bottom: 0;
        color: #1A1F1E;
        font-size: 0.833em; /* 10px based on 12px */
        left: 0;
        padding: 1em 0;
        position: absolute;
        width: 100%;
    }

        .product-details .terms ul {
            margin: 0 0 0 23%;
        }

            .product-details .terms ul li a {
                color: #e5592d;
            }

    .product-details .description h2 {
        font-size: 1.714em; /* 24px based on 14px */
        /* remove */
        text-shadow: none;
        color: #6558a0;
    }

    .product-details .features {
        float: left;
        padding: 1.667em; /* 20px based on 12px */
        width: 34%; /* was 400px */
    }

    .product-details .description {
        font-size: 1.167em; /* 14px based on 12px */
        border-left: 1px solid #E0E0E0;
        border-right: 1px solid #E0E0E0;
        float: left;
        padding: 1.429em 1.429em 4.286em; /* 20px 20px 60px based on 14px */
        width: 44%; /* was 530px */
    }

        .product-details .description ul li {
            font-size: 1em; /* 14px */
            list-style: disc outside none;
            margin: 0 0 0.357em; /* 5px based on 14px */
        }

.legend-description p {
    font-size: 1.167em; /* 14px based on 12px */
    line-height: 1.2em;
}

    .legend-description p strong {
        color: #6558a0;
        font-weight: 600;
    }

.descriptions .legend-description p {
    font-size: 1.500em; /* 18px based on 12px */
    line-height: 1.2em;
}

    .descriptions .legend-description p strong {
        color: #555;
        font-weight: 600;
    }

.product-details .legal {
    font-size: 0.643em; /* 9px based on 14px */
    font-style: italic;
}

#filters-expand .additional-selections,
#filters-expand .descriptions,
#legend-expand .descriptions {
    float: left;
    padding: 1.7%; /* was 20px */
    width: 33%; /* was 390px */
}

#filters-expand .product-type {
    border-left: 1px solid #E0E0E0;
    border-right: 1px solid #E0E0E0;
    float: left;
    padding: 1.7%; /* was 20px */
    width: 33%; /* was 400px */
    min-height: 15.000em; /* 90px based on 12px */
}

.ui-widget-content {
    background: none #2CA9CD;
}

#filters-expand, #legend-expand {
    background: none #ebebeb;
    border: none;
    /*display: none;*/
    font-size: 0.750em; /* 12px based on 16px */
    line-height: 1.5;
    margin: 0 auto 1.250em; /* 15px based on 12px */
    width: 100%;
}

    #filters-expand h5 {
        font-size: 1.500em; /* 18px based on 12px */
        font-weight: 600;
        color: #6558A0;
        margin: 0 0 1.111em 0; /* 20px based on 18px */
        /* Remove */
        font-family: "proxima-nova", Arial, sans-serif;
    }

    #filters-expand .additional-selections li span {
        float: left;
        font-size: 1.286em; /* 18px based on 14px */
        font-weight: 600;
        color: #6558A0;
        width: 5.000em; /* 90px/5.000em based on 18px */
        /* Remove */
        font-family: "proxima-nova", Arial, sans-serif;
    }

    #filters-expand .product-type li {
        cursor: pointer;
        float: left;
        margin: 0 6% 2% 0;
        /* Remove */
        width: auto;
    }

        #filters-expand .product-type li input {
            margin: 0 0.533em 0 0; /* 8px based on 15px */
        }

    #filters-expand .additional-selections li {
        height: 1.667em; /* 25px based on 15px */
        margin: 0 0 0.333em; /* 5px based on 15px */
        width: 100%;
    }

        #filters-expand .additional-selections li div {
            font-size: 0.933em; /* 14px based on 15px */
        }

            #filters-expand .additional-selections li div em {
                /*float: right;
                left: 40%;
                position: relative;
                top: 17px;*/
                right: 0px;
                position: relative;
                top: 6px;
                display: inline-block;
            }

    #filters-expand .additional-selections .submit {
        background: none #2CA9CD;
        border: none;
        border-radius: 0.278em 0.278em 0.278em 0.278em;
        color: #FFFFFF;
        cursor: pointer;
        font-size: 1.125em;
        font-weight: 600;
        /*padding: 0.294em 1.176em;*/ /* 5px 20px based on 17px */
        /* Remove */
        font-family: "proxima-nova",Arial,sans-serif;
        text-decoration: none;
        text-shadow: none;
        text-transform: lowercase;
        padding: 7px 20px;
    }

        #filters-expand .additional-selections .submit:hover {
            background: none #90B83E;
            /* remove */
            border: none;
            text-shadow: none;
        }

        #filters-expand .additional-selections .submit:first-letter {
            text-transform: uppercase;
        }

    #filters-expand .additional-selections li select {
        -webkit-appearance: none;
        -moz-appearance: none;
        appearance: none;
        background: url("../images/backgrounds/bg_select_arrow.png") no-repeat scroll right center #FFFFFF;
        border: medium none;
        border-radius: 0.313em 0.313em 0.313em 0.313em;
        color: #6558A0;
        font-size: 1em;
        font-weight: 100;
        height: 2.333em; /* 35px based on 15px */
        padding: 2.5% 10% 0 2%;
        position: relative;
        text-indent: 0.01px;
        text-overflow: "";
        top: -0.667em; /* 10px based on 15px */
        width: 60%;
        float: right;
    }

.footer-bar {
    display: none;
}

/* icons */
#legend-expand .icons {
    border-left: 1px solid #E0E0E0;
    float: left;
    padding: 1.667em; /* 20px based on 12px */
    width: 66%;
}

    #legend-expand .icons li {
        cursor: pointer;
        display: table;
        float: left;
        line-height: 1.2;
        margin: 0 10.333em 1.000em 0; /* 155px 15px based on 15px */
        padding: 0;
        vertical-align: middle;
        width: 35px;
        position: relative;
    }

        #legend-expand .icons li span {
            padding-left: 3em; /* 40px based on 15px */
            position: absolute;
            top: 0.667em; /* 10px based on 15px */
            width: 9.667em; /* 145px based on 15px */
            white-space: nowrap;
        }

.product-details .features li {
    cursor: pointer;
    float: left;
    margin: 0 0.333em 0.333em 0; /* 5px based on 15px */
}

.icon-green-energy {
    background: url("../images/backgrounds/sprite-icons.png") no-repeat 0 0;
    height: 35px;
    width: 35px;
}

    .icon-green-energy.not-offered {
        background: url("../images/backgrounds/sprite-icons.png") no-repeat 0 -36px;
        height: 35px;
        width: 35px;
        ;
    }

.icon-rewards {
    background: url("../images/backgrounds/sprite-icons.png") no-repeat -36px 0;
    height: 35px;
    width: 35px;
}

    .icon-rewards.not-offered {
        background: url("../images/backgrounds/sprite-icons.png") no-repeat -36px -36px;
        height: 35px;
        width: 35px;
    }

.icon-intro-rate {
    background: url("../images/backgrounds/sprite-icons.png") no-repeat -72px 0;
    height: 35px;
    width: 35px;
}

    .icon-intro-rate.not-offered {
        background: url("../images/backgrounds/sprite-icons.png") no-repeat -72px -36px;
        height: 35px;
        width: 35px;
        ;
    }

.icon-online-only {
    background: url("../images/backgrounds/sprite-icons.png") no-repeat -108px 0;
    height: 35px;
    width: 35px;
}

    .icon-online-only.not-offered {
        background: url("../images/backgrounds/sprite-icons.png") no-repeat -108px -36px;
        height: 35px;
        width: 35px;
    }

.icon-auto-billpay {
    background: url("../images/backgrounds/sprite-icons.png") no-repeat -144px 0;
    height: 35px;
    width: 35px;
}

    .icon-auto-billpay.not-offered {
        background: url("../images/backgrounds/sprite-icons.png") no-repeat -144px -36px;
        height: 35px;
        width: 35px;
    }

.icon-no-cancellation-fees {
    background: url("../images/backgrounds/sprite-icons.png") no-repeat -180px 0;
    height: 35px;
    width: 35px;
}

    .icon-no-cancellation-fees.not-offered {
        background: url("../images/backgrounds/sprite-icons.png") no-repeat -180px -36px;
        height: 35px;
        width: 35px;
    }

.icon-no-deposit {
    background: url("../images/backgrounds/sprite-icons.png") no-repeat -216px 0;
    height: 35px;
    width: 35px;
}

    .icon-no-deposit.not-offered {
        background: url("../images/backgrounds/sprite-icons.png") no-repeat -216px -36px;
        height: 35px;
        width: 35px;
    }

.icon-rate-cap {
    background: url("../images/backgrounds/sprite-icons.png") no-repeat -252px 0;
    height: 35px;
    width: 35px;
}

    .icon-rate-cap.not-offered {
        background: url("../images/backgrounds/sprite-icons.png") no-repeat -252px -36px;
        height: 35px;
        width: 35px;
    }

.webform-wrapper {
    width: 50%;
    margin: 0 auto;
    font-family: "proxima-nova", Arial, sans-serif;
}

    .webform-wrapper input, .webform-wrapper textarea {
        border: 1px solid rgba(85, 85, 85, 0.5);
        height: 2.688em;
        -webkit-border-radius: 0.313em;
        -moz-border-radius: 0.313em;
        border-radius: 0.313em;
        padding: 0.656em 1.111em;
        margin: 0.5em 0;
        width: 100%;
        font-family: inherit;
    }

    .webform-wrapper textarea {
        height: 6em;
    }

    .webform-wrapper input[type='submit'] {
    }

.webform select {
    font-family: inherit;
}

.webform-wrapper label {
    /*display: block;*/
}

.webform-wrapper .error {
    color: red;
}

/* ==========================================================================
   Blog styles
   ========================================================================== */
.logo.blog {
    display: none;
}

nav a.goback {
    position: relative;
    width: 349px;
}

    nav a.goback img {
        left: 0;
        position: absolute;
        top: -17px;
    }

.blog-container h2 {
    margin: 0;
}

    .blog-container h2 a {
        font-size: 24px;
        font-weight: 600;
        color: #6558a0;
        text-decoration: none;
    }

        .blog-container h2 a:hover {
            text-decoration: underline;
        }

.meta-content {
    margin: 0 0 20px 0;
}

    .meta-content .blog-author,
    a.read-more {
        font-size: 18px;
        text-transform: capitalize;
        color: #e5592d;
    }

    .meta-content .blog-category a {
        font-size: 18px;
        text-transform: capitalize;
        color: #90b83e;
        text-decoration: none;
    }

        .meta-content .blog-category a:hover,
        a.read-more:hover {
            text-decoration: underline;
        }

div.blog-navigation {
    margin: 50px 0;
    height: 45px;
}

div.older-post,
div.newer-post,
div.previous-post,
div.next-post {
    float: left;
    width: 50%;
}

div.older-post,
div.next-post {
    text-align: right;
}

div.newer-post a:after,
div.previous-post a:after {
    display: none;
}

div.blog-sidebar h2 {
    margin: 0;
}

ul.share-links {
    padding: 0;
}

    ul.share-links li {
        display: inline-block;
        margin: 0;
    }

ul.list {
    background-color: #eee;
    padding: 20px;
    margin: 0 0 30px 0;
}

    ul.list li {
        display: list-item;
        list-style-type: disc;
        list-style-position: inside;
    }

        ul.list li a {
            color: #6558a0;
            text-decoration: none;
            font-size: 18px;
        }

    ul.list ul.share-links {
        margin: 0 0 20px 0;
    }

div.full {
    display: block;
    float: none;
    width: 100%;
}

article.blog-article {
    border-bottom: 1px solid #EEEEEE;
    margin: 0 0 50px;
    padding: 0 0 30px;
}

    article.blog-article:last-child {
        border: none;
        padding: 0;
    }

/* ==========================================================================
   Helper classes
   ========================================================================== */

/*
 * Image replacement
 */

.ir {
    background-color: transparent;
    border: 0;
    overflow: hidden;
    /* IE 6/7 fallback */
    *text-indent: -9999px;
}

    .ir:before {
        content: "";
        display: block;
        width: 0;
        height: 150%;
    }

/*
 * Hide from both screenreaders and browsers: h5bp.com/u
 */

.hidden {
    display: none !important;
    visibility: hidden;
}

/*
 * Hide only visually, but have it available for screenreaders: h5bp.com/v
 */

.visuallyhidden {
    border: 0;
    clip: rect(0 0 0 0);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
}

    /*
 * Extends the .visuallyhidden class to allow the element to be focusable
 * when navigated to via the keyboard: h5bp.com/p
 */

    .visuallyhidden.focusable:active,
    .visuallyhidden.focusable:focus {
        clip: auto;
        height: auto;
        margin: 0;
        overflow: visible;
        position: static;
        width: auto;
    }

/*
 * Hide visually and from screenreaders, but maintain layout
 */

.invisible {
    visibility: hidden;
}

/*
 * Clearfix: contain floats
 *
 * For modern browsers
 * 1. The space content is one way to avoid an Opera bug when the
 *    `contenteditable` attribute is included anywhere else in the document.
 *    Otherwise it causes space to appear at the top and bottom of elements
 *    that receive the `clearfix` class.
 * 2. The use of `table` rather than `block` is only necessary if using
 *    `:before` to contain the top-margins of child elements.
 */

.clearfix:before,
.clearfix:after {
    content: " "; /* 1 */
    display: table; /* 2 */
}

.clearfix:after {
    clear: both;
}

/*
 * For IE 6/7 only
 * Include this rule to trigger hasLayout and contain floats.
 */

.clearfix {
    *zoom: 1;
}

/* ==========================================================================
   EXAMPLE Media Queries for Responsive Design.
   These examples override the primary ('mobile first') styles.
   Modify as content requires.
   ========================================================================== */

@media only screen and (max-width: 75.000em) { /* max-width: 1200px */
    /*
    body {
	   background-color: olive !important;
    }
    */
    header, header.home {
        background-position: left 1.875em; /* 30px */
    }

    #filters-expand .additional-selections li div em {
        float: right;
        position: relative;
        top: 0;
        left: 0;
    }
}

@media only screen and (max-width: 50.000em) { /* max-width: 800px */
    /*
    body {
	    background-color: red !important;
    }
    */
    #sort-filter-bar {
        float: none;
        display: block;
        max-width: 100%;
    }

    #wrapper-tabs {
        margin: 0.95em 0 0;
        float: none;
    }

    #electric-tab,
    #gas-tab {
        float: none;
    }

    #chart {
        font-size: 0.75em; /* 12px */
    }

    div.product-bar-wrapper div.product-bar {
        width: 59.1% !important;
    }

    .product-cta {
        height: 65px;
    }

    #filters-expand .additional-selections li span {
        position: relative;
        top: 10px;
    }

    #filters-expand .additional-selections li select {
        font-size: 0.659em;
    }

    img.bg-expand-arrow {
        left: 12%;
    }

    .product-details-cta {
        margin: 1% 0 0;
    }

    #filters-expand .additional-selections li div em {
        float: right;
        font-size: 0.8em;
        position: relative;
        top: 13px;
    }

    .title-bar {
        font-size: 0.625em; /* 10px */
    }

    .product-details .legal {
        font-size: 0.8em;
    }

    .rank .box-2 {
        background: none;
    }

    .product-type-gas .product-details-cta .promo-code {
        font-size: 10px !important;
        top: -8px !important;
    }

    header.home .hero_form {
        max-width: 60%;
    }

    .rate_fields .col-1-3 {
        width: 50%;
    }

        .rate_fields .col-1-3:first-child {
            width: 100%;
        }

    .internal-links {
        max-width: 100%;
    }

    .story .logo {
        display: none;
    }

    .story .col-1-2:first-child {
        width: 100%;
    }

    .grid-demo .panel img {
        width: 89%;
    }

    .header_cta {
        font-size: 11px;
    }

    .button:after, .btn:after {
        display: none;
    }

    #zip-utility-container {
        font-size: 16px;
        position: absolute;
        top: -113px;
    }

    .header_cta .compare {
        margin: 0 0 20px;
        position: relative;
        top: 0;
    }

    body.marketplace .header_cta .compare {
        margin: 15px 0 20px;
        top: 30px;
    }

    header.home .hero_form {
        top: 8.438em;
    }

    .marketplace .header_cta .compare {
        top: -2px;
    }

    .webform-wrapper {
        width: 90%;
    }
}

@media only screen and (max-width: 40.000em) { /* max-width: 640px */
    .compare,
    .business {
        float: left;
        width: 50%;
    }

    #zip-utility-container {
        font-size: 13px;
        position: absolute;
        top: -121px;
    }

    body.marketplace .header_cta .compare {
        margin: 24px 0 20px;
    }

    .rate .box-price .measurement {
        left: 5.75em;
    }

    .flag-term {
        width: 17.6%;
    }

    .product-details-cta .promo-code {
        white-space: normal;
    }

    img.bg-expand-arrow {
        left: 5%;
    }

    .product-details-cta .phone {
        font-size: 1em;
    }

    header.home .hero_form {
        max-width: 100%;
        top: 5.438em;
    }

    .grid-demo .col-1-4 {
        float: left;
        margin: 0 0 2% 0;
        width: 50%;
    }

    .grid-demo .panel img {
        width: 92.7%;
    }

    .internal-links a:nth-child(2n) {
        margin: 0 0 0 10px;
    }
}

@media only screen and (max-width: 30.000em) { /* max-width: 480px */
    /*
	body {
	    background-color: teal !important;
    }
    */

    .grid {
        width: 90%;
        margin: 0 auto;
    }

        .grid img {
            width: 100%;
            margin: 0 auto;
            padding: 10px 0;
        }

    header .logo {
        max-width: 90%;
    }

    #zip-utility-container {
        font-size: 1.05em;
        position: absolute;
        top: -45px;
    }

    #sort-filter-bar {
        font-size: 1em;
    }

    #filters-expand .additional-selections,
    #filters-expand .descriptions,
    #legend-expand .descriptions,
    #filters-expand .product-type {
        float: none;
        width: 100%;
    }

        #filters-expand .additional-selections li select {
            font-size: 1em;
            height: 30px;
            position: relative;
            top: 6px;
        }

    #legend-expand .icons {
        width: 100%;
    }

    .title-bar li.column-rank {
        width: 6.5%;
    }

    .rate {
        width: 19.6%;
    }

    img.bg-expand-arrow {
        left: 18%;
    }

    div.product-bar-wrapper div.product-bar {
        width: 73.6% !important;
    }

    .product-cta {
        display: none;
    }

        .product-cta .promo-code, .product-details-cta .promo-code, .product-type-gas .product-details-cta .promo-code {
            white-space: normal;
        }

        .product-cta .phone, .product-details-cta .phone {
            padding: 0.143em;
            left: 20%;
        }

            .product-cta .phone span, .product-details-cta .phone span {
                font-size: 1em;
                font-weight: 400;
            }

    .product-details-cta .promo-code {
        margin: 0.913em 0 0.313em !important;
    }

    .title-bar li.column-rank {
        font-size: 9px;
        width: 6.7%;
    }

    .title-bar li.column-rates {
        width: 19.6%;
        font-size: 9px;
    }

    .title-bar li.column-products {
        font-size: 9px;
        width: 24%;
    }

    .title-bar {
        height: 2.4em;
    }

    #filters-expand .product-type {
        min-height: 7em !important;
    }

    #filters-expand .descriptions, #legend-expand .descriptions, #filters-expand .product-type {
        min-height: 145px;
    }

    .business-rate-banner p {
        margin: 0 0 0.6em;
    }

    .header_cta {
        font-size: 9px;
    }

        .header_cta .business:before {
            background: none;
            width: auto;
        }

    .business-rate-banner {
        left: 0;
    }

        .business-rate-banner p {
            margin: 0 0 1.5em;
        }

    .compare,
    .business {
        float: left;
        width: 50%;
    }

    #zip-utility-container {
        font-size: 11px;
        position: absolute;
        top: -116px;
        width: 50%;
    }

    .home .grid-demo .col-1-4 {
        float: left;
        margin: 0 2% 2% 0;
        width: 48%;
    }

    header .hero_form h1 {
        font-size: 2em;
    }

    nav ul li {
        margin: 0 0 0 1.2em;
    }

    .col-1-2 img,
    .col-1-3 img {
        max-width: 100%;
    }

    .step-count .step-label {
        padding-top: 10px;
    }

    .breakdown {
        width: auto;
    }

    .breakdown-wrap .problem {
        padding-top: 0;
    }

    .breakdown {
        border-bottom: 2px solid rgba(70,70,70, .1);
        border-right: none;
        padding: 0 30px 20px 30px;
        margin: 20px 0 0 0;
    }

    .bg-orange .equation,
    .bg-purple .equation,
    .bg-green .equation {
        background: none;
    }

    table.common-wattages {
        width: 100%;
    }
}

@media only screen and (max-width: 22.500em) { /* max-width: 360px */
    nav ul li {
        text-align: left;
        width: 37%;
    }

    nav ul ul li {
        width: 110%;
    }

    #sort-filter-bar {
        font-size: 0.6em;
    }

        #sort-filter-bar li {
            margin: 0 12px 0 0;
            padding: 8px 0;
        }

    #wrapper-tabs {
        font-size: 10px;
        width: 100%;
    }

    .title-bar {
        display: none;
    }

    .rate {
        width: 26%;
    }

    .product-details-cta {
        width: 100% !important;
        border-bottom: 1px solid #E0E0E0;
    }

    .product-details .description {
        margin: 0;
    }

    div.features h5 {
        white-space: nowrap;
    }

    .product-cta .phone, .product-details-cta .phone {
        left: 0;
    }

    .product-details-cta .promo-code {
        margin: 2.013em 0 0.313em !important;
    }

    .product-bar .inside .provider-offer {
        left: 2px;
        height: 34px;
    }

    div.product-bar-wrapper div.product-bar {
        width: 49% !important;
        background: none;
    }

    .flag-term {
        width: 47.6%;
        right: -42px;
        top: -0.543em;
    }

    .price-info {
        top: 2em;
        right: -5.8em;
    }

    .product-details .features {
        width: 55%;
    }

    footer .cta {
        font-size: 12px;
    }

    nav ul li {
        width: 46%;
        margin: 0 0 0 0.188em;
    }

    nav ul ul {
        top: 50%;
    }

    .rate .box-price .measurement {
        left: 5.75em;
    }

    .product-type-gas .product-details-cta .promo-code {
        font-size: 12px !important;
        top: 15px !important;
    }

    header.home .hero_form {
        max-width: 100%;
        top: 7.438em;
    }

    header .hero_form h1 {
        font-size: 1.5em;
    }

    .hero_form .phone {
        font-size: 2em;
    }

    .grid-demo .col-1-4,
    .grid-demo .panel {
        width: 100%;
        max-width: 100%;
    }

    .grid-demo .col-1-4 {
        margin: 0 0 20px;
    }

    .grid-demo .panel {
        min-height: 22em;
    }

        .grid-demo .panel img {
            width: 85.7%;
        }

    .internal-links {
        max-width: 100%;
        font-size: 0.5em;
    }

        .internal-links a:nth-child(2n) {
            margin: 0;
        }

    .story .logo {
        display: none;
    }

    .header_cta .col-1-2 {
        width: 100%;
    }

    .marketplace .header_cta .compare {
        top: 20px;
        height: 30px;
    }

    #zip-utility-container {
        font-size: 14px;
        top: -199px;
        width: 95%;
    }

    .rate_fields .col-1-3 {
        width: 100%;
    }

    header.home .hero_form {
        max-width: 100%;
        top: 5.438em;
    }

    .business-rate-banner p {
        margin: 0 0 0.8em;
    }

    .marketplace .business {
        margin-top: 15px;
    }

    .col-1-2 img,
    .col-1-3 img {
        max-width: 100%;
    }
}

@media print, (-o-min-device-pixel-ratio: 5/4), (-webkit-min-device-pixel-ratio: 1.25), (min-resolution: 120dpi) {
    /* Style adjustments for high resolution devices */
}

/* ==========================================================================
   Print styles.
   Inlined to avoid required HTTP connection: h5bp.com/r
   ========================================================================== */

@media print {
    * {
        background: transparent !important;
        color: #000 !important; /* Black prints faster: h5bp.com/s */
        box-shadow: none !important;
        text-shadow: none !important;
    }

    a,
    a:visited {
        text-decoration: underline;
    }

        a[href^="http:"]:after { /* Display only for external links */
            content: " (" attr(href) ")";
        }

    abbr[title]:after {
        content: " (" attr(title) ")";
    }

    /*
     * Don't show links for images, or javascript/internal links
     */

    .ir a:after,
    a[href^="javascript:"]:after,
    a[href^="#"]:after {
        content: "";
    }

    pre,
    blockquote {
        border: 1px solid #999;
        page-break-inside: avoid;
    }

    thead {
        display: table-header-group; /* h5bp.com/t */
    }

    tr,
    img {
        page-break-inside: avoid;
    }

    img {
        max-width: 100% !important;
    }

    @page {
        margin: 0.5cm;
    }

    p,
    h2,
    h3 {
        orphans: 3;
        widows: 3;
    }

    h2,
    h3 {
        page-break-after: avoid;
    }
}
