@charset "utf-8";
/* CSS Document */

/* =Reset default browser CSS.
-------------------------------------------------------------- */

html, body, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, font, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td {
    background: transparent;
    border: 0;
    margin: 0;
    padding: 0;
}

html, body {
    line-height: 1;
}

h1, h2, h3, h4, h5, h6 {
    clear: both;
    font-weight: normal;
    font-family: 'Source Sans Pro', Sans-Serif;
}


h1 {
    font-weight: 100;
    font-size: 46px;
}

ol, ul {
    list-style: none;
}

blockquote {
    quotes: none;
}

blockquote:before, blockquote:after {
    content: '';
    content: none;
}

del {
    text-decoration: line-through;
}

/* tables still need 'cellspacing="0"' in the markup */
table {
    border-collapse: collapse;
    border-spacing: 0;
}

a img {
    border: none;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    background-color: #ebebeb;
}

input:not([type="image"]):not(.button), textarea {
    box-sizing: border-box;
    -moz-box-sizing: border-box;
}

button {
    overflow: visible;
    box-sizing: content-box;
    -moz-box-sizing: content-box;
}

a.button {
    display: inline-block;
    text-decoration: none;
}

input[type="text"], input[type="password"], input[type="email"] {
    height: 27px; /* line-height+border works on Chrome, need height with box-model on IE/Firefox */
}

.center-page {
    width: 743px;
    margin: 0 auto;
}

/************** #left-sidebar **************/
#left-sidebar {
    background-color: #0e1c29;
    height: auto;
    position: fixed;
    width: 180px;
    top: 55px;
    bottom: 0px;
    z-index: 200;
    display: flex;
    flex-direction: column;
    min-height: 0;
}

#hint_location, #location-menu{
    overflow: visible;
}

.primary-navigation {
    display: flex;
    flex-direction: column;
    height: 100%;
    min-height: 0;
}

.left {
    float: left;
}

.right {
    float: right;
}

.button.right {
    float: left;
}

/* don't float table cells. */
td.left, th.left {
    float: none
}

.logo {
    float: left;
    height: 44px;
    text-align: center;
    padding-top: 10px;
    padding-left: 10px;
    width: 160px;
    background-color: #00284e;
    background-image: url("../images/logo-2.png");
    background-size: 145px;
    background-repeat: no-repeat;
    background-position: 10px 10px;
}

.logo a {
    display: block;
    width: 100%;
    height: 100%;
    color: transparent;
}

.left-navigation-container {
    display: flex;
    flex-direction: column;
    overflow-x: hidden;
    overflow-y: auto;
    flex: 1 1 auto;
    min-height: 0;
}

.left-navigation-container::-webkit-scrollbar {
    -webkit-appearance: none;
    background: White;
    width: 7px;
}

.left-navigation-container::-webkit-scrollbar-thumb {
  border-radius: 4px;
  background-color: rgba(0, 0, 0, .5);
}

.left-nav-accordion{
    display: flex;
    flex-direction: column;
}
#left-top-nav {
    position: relative;
    z-index: 99999;
    width: 180px;
    height: 50px;
    color: #000;
    background-color: #eee;
    background-image: url("../images/accordion-shadow.png");
    background-repeat: no-repeat;
    background-position: right;
    background-size: 7px 53px;
    flex: 0 0 auto;
}
#left-top-nav > a {
    background: url("../images/left-nav-arrow.png") no-repeat 155px center;
    display: block;
    font-size: 16px;
    padding: 17px 0px 17px 15px;
    text-align: left;
    text-decoration: none;
    color: #000;
    position: absolute;
    z-index: 1000;
    width: 155px;
}

#left-top-nav:hover {
    background: white;
}

#left-top-nav ul {
    display: none;
    margin: 0px;
    padding: 0px;
    position: absolute;
    top: 0px;
    right: -270px;
    width: 270px;
    z-index: 99;
    -moz-box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
    -webkit-box-shadow: 2px 10px 4px rgba(0, 0, 0, 0.5);
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
    overflow: hidden;
}

#left-top-nav:hover ul {
    display: block;
}

#left-top-nav ul li {
    width: 255px;
    height: 50px;
    line-height: 50px;
    color: #475767;
    font-size: 16px;
    background-color: #fff;
    border-bottom: 1px solid #ededed;
    padding-left: 15px;
    -webkit-transition: all 0.2s ease-in;
    -moz-transition: all 0.2s ease-out;
    -ms-transition: all 0.2s ease-out;
    -o-transition: all 0.2s ease-out;
    transition: all 0.2s ease-out;
    position: relative;
}

#left-top-nav ul li.add-new-location {
    color: #333;
    border-bottom: #bbb 1px solid;
}

#left-top-nav ul li:hover {
    background: #f5f5f5;
}

#left-top-nav ul li.new-location {
    /* background: #414750; */
    height: auto;
    overflow: auto;
    padding: 0;
    width: 270px;
}

#left-top-nav ul li.new-location:hover {
    background: #fff;
}

#left-top-nav ul li.new-location .button {
    float: none;
    text-transform: none;
    font-weight: normal;
}

#left-top-nav ul li .button {
    float: right;
    margin: 11px 14px;
    padding: 0 11px;
}

#left-top-nav ul li .button.left {
    float: right;
    margin: 11px 0 11px 14px;
    padding: 0 11px;
}

#left-top-nav ul li .button.right {
    float: right;
    margin: 11px 14px 11px 0;
    padding: 0 11px;
}

#left-top-nav ul li.loc-del-confirm {
    margin-left: 270px;
    margin-top: -51px;
    -webkit-transition: all 0.2s ease-in;
    -moz-transition: all 0.2s ease-out;
    -ms-transition: all 0.2s ease-out;
    -o-transition: all 0.2s ease-out;
    transition: all 0.2s ease-out;
}

#left-top-nav ul a.active li {
    margin-left: -270px;
}

#left-top-nav ul li.loc-del-confirm.active {
    margin-left: 0;
}

#left-top-nav ul li.loc-del-confirm.delete {
    height: 0;
    overflow: hidden;
}

#left-top-nav ul a.delete li {
    border-bottom: none;
}

#left-top-nav ul a {
    text-decoration: none;
    color: #475767;
}

#left-top-nav ul .button.dark a {
    text-decoration: none;
    color: #fff;
}


/* *********************************************************************************************

How to Create CSS3 + jQuery Accordion Menu [Tutorial]
"How to Create CSS3 + jQuery Accordion Menu" that was specially made for DesignModo by our friend Valeriu Timbuc.

Links:
http://vtimbuc.net/
https://twitter.com/vtimbuc
http://designmodo.com/futurico
http://vladimirkudinov.com
http://rockablethemes.com

********************************************************************************************* */

/* Reset */

.accordion,
.accordion ul,
.accordion li,
.accordion a,
.accordion span {
    margin: 0;
    padding: 0;
    border: none;
    outline: none;
}

.accordion li {
    list-style: none;
    white-space: nowrap;
}

/* Layout & Style */

.accordion li > a {
    display: block;
    position: relative;
    padding: 0 10px 0 62px;
    height: 43px;
    color: #adb8bf;
    font: 13px/43px Arial, sans-serif;
    text-decoration: none;
    text-shadow: 0px 1px 0px rgba(0, 0, 0, .35);
    border-bottom: 1px solid rgba(0, 0, 0, 0.35);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    background-image: url("../images/accordion-shadow.png");
    background-repeat: no-repeat;
    background-position: right;
    background-size: 7px 53px;
}

.accordion li > .sub-menu > li > a {
    padding: 0 10px 0 45px;
}

.accordion > li:hover > a,
.accordion > li:target > a,
.accordion > li > a.active {
    color: #fafafa;
    text-shadow: 1px 1px 1px rgba(255, 255, 255, .2);
    background-color: rgba(255, 255, 255, 0.15);
}


/* Images */

.accordion > li.accordion_2 > a:before {
    background: url(../images/icon-observations.png) no-repeat left center;

}

.accordion > li.accordion_3 > a:before {
    background: url(../images/tools-icon.png) no-repeat left center;

}

.accordion > li.accordion_5 > a:before {
    background: url(../images/help-icon.png) no-repeat left center;

}

.accordion > li.accordion_6 > a:before {
    background: url(../images/help-icon.png) no-repeat left center;

}


.accordion > li > a:before {
    position: absolute;
    top: 0;
    left: 0;
    content: '';
    width: 24px;
    height: 43px;
    margin: 0 0 0px 16px;

}

.accordion > li > ul > li > a:before {
    position: absolute;
    top: 0;
    left: 0;
    content: '';
    width: 30px;
    height: 43px;
    margin: 0 0 0px 12px;
    background-repeat: no-repeat;
    background-position: 4px center;
}

.accordion > li > ul > li.rain-maps > a:before {
    background: url(../images/rain-maps-icon.png) no-repeat 4px center;

}

.accordion > li > ul > li.cloud-maps > a::before {
    background: url(../images/cloud-maps-icon.png) no-repeat 4px center;

}

.accordion > li > ul > li.grib > a::before {
    background: url(../images/grib-icon.png) no-repeat 4px center;

}

#weather-routing-link::before {
    background-image: url(../images/weather-routing-icon.png);
}

#ocean-data-link::before {
    background-image: url(../images/ocean-data-icon.png);
}

.accordion > li > ul > li.trip-planning > a:before {
    background-image: url(../images/trip-planning-icon.png);
}

.accordion > li > ul > li.gps-tracking > a:before {
    background-image: url(../images/gps-tracking-icon.png);
}

.accordion > li > ul > li.yb-tracking > a:before {
    background-image: url(../images/yb-tracking-icon.svg);
}

.accordion > li > ul > li.forecast-alerts > a:before {
    background-image: url(../images/forecast-alerts-icon.png);
}
.accordion > li > ul > li.ais-data > a:before {
    background: url("../images/ais-data-menu-icon.svg") center/19px no-repeat;
}
.accordion > li > ul > li.iphone > a:before {
    background: url(../images/iphone-app-icon.png) no-repeat 4px center;

}

.accordion > li > ul > li.android > a:before {
    background: url(../images/iphone-app-icon.png) no-repeat 4px center;

}

.accordion > li > ul > li.mobile > a:before {
    background: url(../images/mobile-website-icon.png) no-repeat 4px center;

}

.accordion > li > ul > li.threegcom > a:before {
    background: url(../images/3g-communicator-icon.png) no-repeat 4px center;

}

.accordion > li > ul > li.satcom > a:before {
    background: url(../images/sat-communicator-icon.png) no-repeat 4px center;

}

.accordion > li > ul > li.weather-station > a:before {
    background: url(../images/weather-station-icon.png) no-repeat 4px center;

}

.accordion > li > ul > li.offshore > a:before {
    background: url(../images/offshore-app-icon.png) no-repeat 4px center;
}

.accordion > li > ul > li.yb3i > a:before {
    background: url("../images/yb3i-menu-icon.png") no-repeat 4px center / 18px;
}

.accordion > li > ul > li.webcam > a:before {
    background: url(../images/web-camera-icon.png) no-repeat 4px center;

}

.accordion > li > ul > li.tutorials > a:before {
    background: url(../images/tutorials-icon.png) no-repeat 4px center;

}

.accordion > li > ul > li.tips > a:before {
    background: url(../images/forecast-tips-icon.png) no-repeat 4px center;

}

.accordion > li > ul > li.manual > a:before {
    background: url(../images/help-manual-icon.png) no-repeat 4px center;

}

.accordion > li > ul > li.support > a:before {
    background: url(../images/contact-support-icon.png) no-repeat 4px center;

}

/* Sub Menu */

.sub-menu li a {
    color: #797979;
    text-shadow: 1px 1px 0px rgba(255, 255, 255, .2);
    height: 43px;
    background-color: #e3e6e7;
    border-bottom: 1px solid rgba(0, 0, 0, 0.10);
    border-top: 1px solid rgba(255, 255, 255, 0.30);
}

.sub-menu li:hover a, .sub-menu li.active a {
    background-color: #d6d9da;
}

.sub-menu li:last-child a {
    border: none;
}

.sub-menu li > a span {
    color: #797979;
    text-shadow: 1px 1px 0px rgba(255, 255, 255, .2);
    background: transparent;
    border: 1px solid #c9c9c9;

    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
}

.sub-menu em {
    position: absolute;
    top: 0;
    left: 0;
    margin-left: 14px;
    color: #a6a6a6;
    font: normal 10px/32px Arial, sans-serif;
}

/* Functionality */

.accordion li > .sub-menu {
    display: none;
}

.accordion li:target > .sub-menu {
    display: block;
}

#container {
    width: 100%;
    margin: 0px auto;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

#content {
    position: relative;
    top: 0px;
    padding: 0;
    margin-left: 180px;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

#content.down {
    padding-right: 176px;
}

#header {
    position: fixed;
    width: 100%;
    z-index: 99;
}

#header-space {
    height: 55px;
}

#content-header {
    position: relative;
}

#page-header {
    position: fixed;
    width: 100%;
    z-index: 499;
}

/*  header-nav */
#header-nav {
    height: 55px;
    font-size: 13px;
    background-color: #00274e;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

#header-nav.down {
    padding-right: 176px;
}

#header-nav ul {
    display: block;
    margin: 0px 0px 0px 170px;
    padding: 14px 0 0 20px;
    position: absolute;
    top: 0px;
}

#header-nav ul li {
    display: inline-block;
    float: left;
    margin: 0;
}

#header-nav ul li.label {
    font-weight: bold;
    margin-left: 30px;
    color: #a5bcca;
    padding: 0 17px 0;
    text-align: center;
    text-decoration: none;
    height: 40px;
    line-height: 40px;
    cursor: default;
}

#header-nav ul li:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

#header-nav ul li.label:hover {
    background-color: transparent;
}

#header-nav ul li a:hover {
    color: #ffffff;
}

#header-nav ul li.active {
    background-color: #f2f2f2;
    border-bottom: 1px solid #f2f2f2;
}

#header-nav ul li.active a {
    color: #fff;
}

#header-nav ul li.active:hover {
    background-color: #f2f2f2;
}

#header-nav ul li a {
    display: block;
    font-weight: bold;
    padding: 0 17px 0;
    text-align: center;
    text-decoration: none;
    color: #e8f2fb;
    height: 40px;
    line-height: 40px;
}

#header-nav ul li.active a {
    color: #32404f;
}

#header-nav .header-menu ul li:hover {
    background-color: #4c6076;
    cursor: pointer;
}

#header-nav .header-menu ul li.active:hover {
    background: #f2f2f2;
    cursor: default;
}

#header-nav .header-menu ul li.label:hover {
    background-color: transparent;
    cursor: default;
}


/*  end-header-nav */

#main-content {
    margin-top: 0px;
    margin-left: -1px;
    background-color: #ebebeb;
    position: relative;
    overflow-y: auto;
    overflow-x: hidden;
}

#main-content.forecastMaps {
    overflow: visible;
}

.header-section {
    min-height: 50px;
    position: relative;
}

.header-section .button {
    text-decoration: none;
    font-weight: bold;
    text-transform: none;
}

div.header-section.forecastMaps {
    float: none;
    max-width: 1066px;
}

div.header-section.forecastMaps #forecastLocationHeadingDiv {
    padding: 7px 0 0 0;
}

div.header-section.forecastMaps .mapButtons {
    float: right;
    margin-top: 10px;
}

/* sometimes useful to have .header-section lower down the page. */
#main-content .header-section {
    border-bottom: none;
}

.options-panel {
    background: #55595f;
    width: 176px;
    height: 100%;
    position: fixed;
    right: 0;
    top: 0;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
    margin-right: -176px;
    z-index: 1000;
    overflow-x: hidden;
    overflow-y: scroll;
}

.options-panel.down {
    margin-right: 0;
}

#page-container.open {
    /* margin-left: -176px; */
}

.graph-compare-button {
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
    width: 39px;
    height: 28px;
    position: fixed;
    top: 64px;
    left: 898px;
    cursor: pointer;
}

.plan-trip-button, .search-location-button {
    width: 240px;
    height: 46px;
    position: relative;
    top: 410px;
    left: 268px;
}

.search-location-button {
    width: 110px;
    top: 278px;
    left: 515px;
}

.alerts-middle.open {
    height: 526px !important;
}

.setup-alerts-button:hover {
    background-position: 0 -28px;
}

.setup-alerts-button.open {
    background-position: 0 28px;
}

.maps-wrapper {
    margin-right: 70px;
    float: none;
}

.maps-wrapper.left {
    margin-left: 70px;
    margin-right: 0;
}

.map {
    float: left;
    width: 50%;
    margin-top: -105px;
    height: 100%;
}

.map-boat-track {
    float: left;
    width: 100%;
}

.spacer.map {
    background: url("../images/map-spacer.png");
    height: inherit;
    width: 9px;
    position: absolute;
    left: 50%;
    margin-left: -40px;
    top: 105px;
    height: 100%;
}

.spacer.map.left {
    margin-left: 28px;
}

.model {
    position: relative;
    background-color: #06192b;
    color: #fff;
    font-size: 12px;
    padding: 9px 14px;
    top: 105px;
    width: 30px;
    text-align: center;
}

.timeslide {
    width: 70px;
    background: #e5e5e5;
    float: left;
    font-size: 12px;
    line-height: 16px;
    text-align: center;
    color: #555;
    cursor: default;
}

.timeslide ul li:hover {
    background: #279ffc;
    color: #fff;
}

#settings-wrap {
    float: right;
    margin-right: 12px;
    width: 42px;
    height: 55px;
    font-family: "acumin-pro", "Roboto", "Helvetica Neue", Helvetica, Arial, sans-serif;
}

.settings {
    width: 100%;
    height: 100%;
    -webkit-transition: all 0.2s ease-out;
    -moz-transition: all 0.2s ease-out;
    -ms-transition: all 0.2s ease-out;
    -o-transition: all 0.2s ease-out;
    transition: all 0.2s ease-out;
}

.settings img {
    float: right;
    padding: 15px;
    opacity: .5;
}

.settings.help img {
    padding: 18px 15px;
}

.settings p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0);
    line-height: 55px;
    padding-left: 30px;
    -webkit-transition: all 0.2s ease-out;
    -moz-transition: all 0.2s ease-out;
    -ms-transition: all 0.2s ease-out;
    -o-transition: all 0.2s ease-out;
    transition: all 0.2s ease-out;
    display: none;
}

.settings .settings-icon {
    float: right;
    width: 22px;
    height: 21px;
    padding: 15px;
    opacity: .5;
    background-image: url("../images/settings-icon.png");
    background-position: 15px 15px;
    background-repeat: no-repeat;
}

#settings-wrap:hover {
    background: rgba(255, 255, 255, 0.1);
    width: 158px;
}

#settings-wrap:hover .settings p {
    padding-left: 15px;
    color: rgba(255, 255, 255, 0.5);
    display: block;
}

#settings-wrap ul {
    display: none;
    width: 158px;
    background: #fff;
    position: relative;
    z-index: 9999999;
    overflow: hidden;
    border: 1px solid #ccc;
    border-top: none;
    top: -1px;
    margin: 0;
    padding: 0;
    -moz-border-radius: 0 0 3px 3px;
    -webkit-border-radius: 0 0 3px 3px;
    border-radius: 0 0 3px 3px;
    -moz-box-shadow: 0 3px 7px rgba(7, 7, 7, .4), inset 0 0 0 1px rgba(255, 255, 255, .5);
    -webkit-box-shadow: 0 3px 7px rgba(7, 7, 7, .4), inset 0 0 0 1px rgba(255, 255, 255, .5);
    box-shadow: 0 3px 7px rgba(7, 7, 7, .4), inset 0 0 0 1px rgba(255, 255, 255, .5);

}

#settings-wrap ul li {
    float: left;
    width: 115px;
    border-bottom: 1px solid #ddd;
    padding: 15px 0 15px 43px;
    background: url("../images/account-settings-icon.png");
    background-repeat: no-repeat;
    background-position: 12px 11px;
    height: auto;
    font-weight: normal;
}

#settings-wrap ul li.billing {
    background-image: url("../images/billing-icon.png");
    background-position: 12px 15px;
}

#settings-wrap ul li.profile {
    background-image: url("../images/account-profile-icon.png");
    background-position: 16px 15px;
}

#settings-wrap ul li.referrals {
    background-image: url("../images/referral-icon.png");
    background-size: 21px 16px;
}

#settings-wrap ul li.logout {
    background-image: url("../images/logout-icon.png");
    background-position: 15px 13px;
}

/* Retina images */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    #settings-wrap ul li.referrals {
        background-image: url("../images/referral-icon@2x.png");
    }

    .accordion > li > ul > li.yb3i > a:before {
        background-image: url("../images/yb3i-menu-icon@2x.png");
    }

    /* FIXME no @2x icons for four other menu items! */

}


#settings-wrap ul li.active {
    background-color: #fff;
    border-bottom: 1px solid #ddd;
}

#settings-wrap ul li a {
    color: #323232;
    line-height: 13px;
    height: auto;
    text-align: left;
    padding: 0;
    font-weight: normal;
}

#settings-wrap ul li:last-child {
    border-bottom: 0;
}

#settings-wrap ul li:hover {
    background-color: #fafafa;
}

#settings-wrap ul li a:hover {
    color: #323232;
}

#settings-wrap ul li.type, #settings-wrap ul li.email {
    background: #0d1b29;
    border-bottom: none;
    padding-left: 17px;
    width: 141px;
    padding-bottom: 3px;
    cursor: default;
}

#settings-wrap ul li.type {
    color: rgba(255, 255, 255, 0.8);
    font-weight: bold;
    padding-top: 5px;
}

#settings-wrap ul li.email {
    color: rgba(255, 255, 255, 0.8);
    font-weight: lighter;
    font-size: 12px;
    padding-right: 17px;
    overflow-x: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

#settings-wrap ul li.expire {
    background: #0d1b29;
    color: rgba(255, 255, 255, 0.3);
    padding-left: 17px;
    width: 141px;
    padding-top: 3px;
    cursor: default;
    border-bottom: none;
}

.accordion.graphs {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.upgrade {
    position: fixed;
    bottom: 0;
    left: 0;
    z-index: 9999999;
    cursor: pointer;
    width: 146px;
    background-color: #f26522;
    text-align: center;
    padding: 12px;
    line-height: 20px;
    color: #fff;
}


@media all and (max-height: 845px) {
    .upgrade .follow {
        display: none;
    }
}

@media all and (max-height: 760px) {
    .upgrade .lead {
        display: none;
    }
}

.upgrade .lead {
    font-size: 14px;
    font-weight: bold;
    padding: 10px 15px;
}

.upgrade .follow {
    font-size: 13px;
    padding-bottom: 15px;
    opacity: .7;
}

.upgrade:hover {
    background: #ccc;
    color: #333;
}

.upgrade-status > a:before {
    background-image: none !important;
}

.accordion li.upgrade-status > a {
    background: none;
    text-align: center;
    color: #fff;
    padding: 0;
    width: 100%;
    height: auto;
    line-height: 13px;
    padding-top: 14px;
}

.upgrade-status {
    text-align: center;
    background: #000;
}

.upgrade-status:hover {
    background: #333;
    -webkit-transition: all 0.2s ease-out;
    -moz-transition: all 0.2s ease-out;
    -ms-transition: all 0.2s ease-out;
    -o-transition: all 0.2s ease-out;
    transition: all 0.2s ease-out;
}

.upgrade-status img {
    padding: 13px 0;
}

.upgrade-status .more {
    top: 12px;
    height: 0;
    overflow: hidden;
    padding: 0;
    opacity: 0;
    cursor: pointer;
    -webkit-transition: all 0.2s ease-out;
    -moz-transition: all 0.2s ease-out;
    -ms-transition: all 0.2s ease-out;
    -o-transition: all 0.2s ease-out;
    transition: all 0.2s ease-out;
}

.upgrade-status:hover .more {
    height: auto;
    padding-bottom: 10px;
    opacity: .5;
}

#settings-wrap ul li.upgrade-status {
    padding: 12px 0 0 0;
    margin: 0;
    background: #eee;
    text-align: left;
    padding-left: 17px;
    width: 141px;
}


.options-title {
    color: #fff;
    font-size: 14px;
    font-weight: bold;
    background: #313539;
    width: 176px;
    height: 54px;
    text-align: center;
    line-height: 54px;
}

.options-panel ul {
    border-bottom: 1px solid #6e7277;
    position: relative;

}

.options-panel ul li {
    overflow: auto;
    border-top: 1px solid #6e7277;
    border-bottom: 1px solid #3c3e42;
    background: #55595f;
    padding: 13px 15px;
}

.options-panel ul .loc-name {
    color: #fff;
    font-size: 12px;
    font-weight: bold;
    float: left;
    width: 98px;
}

.options-panel ul .loc-key {
    margin-top: 6px;
    float: left;
}


.options-panel ul .toggle-switch {
    width: 46px;
    height: 14px;
    float: right;
    margin-top: 6px;
    border: 1px solid rgba(0, 0, 0, 0.67);
    background-color: #424750;
    -moz-border-radius: 20px;
    -webkit-border-radius: 20px;
    border-radius: 20px;
    background-image: url("../images/toggle-switch-bg.png");
    background-position: -31px 0;
    cursor: pointer;
    -webkit-transition: all 0.1s ease-in;
    -moz-transition: all 0.1s ease-in;
    -ms-transition: all 0.1s ease-in;
    -o-transition: all 0.1s ease-in;
    transition: all 0.1s ease-in;
}

.options-panel ul .toggle-switch img {
    margin-top: -2px;
    -webkit-transition: all 0.1s ease-in;
    -moz-transition: all 0.1s ease-in;
    -ms-transition: all 0.1s ease-in;
    -o-transition: all 0.1s ease-in;
    transition: all 0.1s ease-in;
    padding-right: 30px;
}

.options-panel ul .toggle-switch.on {
    background-position: 0px;
}

.options-panel ul .toggle-switch img.on {
    padding-left: 30px;
    padding-right: 0;
}

.options-panel ul li.regional-loc {
    display: none;
}

.options-panel .loc-key .key {
    color: #fff;
    font-size: 9px;
    float: left;
    padding: 3px 6px;
    line-height: 8px;
}

.options-panel .loc-key .key.left {
    -moz-border-radius: 20px 0 0 20px;
    -webkit-border-radius: 20px 0 0 20px;
    border-radius: 20px 0 0 20px;
    background-color: #ed2024;
    padding-right: 4px;
}

.options-panel .loc-key .key.right {
    -moz-border-radius: 0 20px 20px 0;
    -webkit-border-radius: 0 20px 20px 0;
    border-radius: 0 20px 20px 0;
    background-color: #f58f91;
    padding-left: 4px;
}

.options-panel .loc-3 .key.left {
    background-color: #000;
}

.options-panel .loc-3 .key.right {
    background-color: #8b8b8b;
}

.options-panel .loc-4 .key.left {
    background-color: #6dbe45;
}

.options-panel .loc-4 .key.right {
    background-color: #add28e;
}

.options-panel .loc-5 .key.left {
    background-color: #f3ce13;
}

.options-panel .loc-5 .key.right {
    background-color: #f5de8e;
}

.options-panel.table ul li {
    padding: 19px 15px;
}

.options-panel.table ul .loc-name {
    margin-top: 2px;
}

.options-panel.table ul .toggle-switch {
    margin-top: 0px;
}

.options-panel.table ul li ul {
    border: none;
    margin: -13px -15px;
}

.options-panel.table ul li ul li {
    border: none;
}

.tip-wrapper {
    position: fixed;
    z-index: 98;
    text-align: left;
}


.tip-wrapper.inline {
    position: relative;
    float: right;
}

.tip-wrapper .icon {
    width: 45px;
    height: 45px;
    /*	background-image: url("../images/tip-icon-sprite.png"); */
    cursor: pointer;
}

.tip-wrapper.intro .icon {
    background-image: url("../images/intro-tip-icon-sprite.png");
}

.tip-wrapper.active {
    z-index: 999999;
}

.tip-wrapper.active .tip {
    display: block;
}

.tip-wrapper:hover .icon, .tip-wrapper.active .icon {
    background-position: bottom;
}

.tip {
    position: absolute;
    background: #fff;
    border: 1px solid #d4d4d4;
    display: none;
    padding: 27px;
    -moz-box-shadow: 0 3px 7px rgba(7, 7, 7, .2), inset 0 0 0 1px rgba(255, 255, 255, .5);
    -webkit-box-shadow: 0 3px 7px rgba(7, 7, 7, .2), inset 0 0 0 1px rgba(255, 255, 255, .5);
    box-shadow: 0 3px 7px rgba(7, 7, 7, .2), inset 0 0 0 1px rgba(255, 255, 255, .5);
    -moz-border-radius: 3px;
    -webkit-border-radius: 3px;
    border-radius: 3px;
    color: #333;
    font-size: 12px;
    line-height: 20px;
    width: 300px;
}

.tip:after, .tip:before {
    border: solid transparent;
    content: " ";
    height: 0;
    width: 0;
    position: absolute;
    pointer-events: none;
}

.tip:after {
    border-color: rgba(255, 255, 255, 0);
    border-width: 10px;
}

.tip:before {
    border-color: rgba(77, 77, 4, 0);
    border-width: 11px;
}

.tip-close {
    width: 11px;
    height: 11px;
    background-image: url("../images/tip-x.png");
    position: absolute;
    opacity: .5;
    cursor: pointer;
    top: 9px;
    right: 9px;
}

.tip-close:hover {
    opacity: 1;
}

/* Tip to the right */

.tip-wrapper.right .tip {
    margin-left: 45px;
}

.tip-wrapper.right .icon {
    float: left;
}

.tip-wrapper.right .tip:after, .tip-wrapper.right .tip:before {
    right: 100%;
}

.tip-wrapper.right .tip:after {
    border-right-color: #fff;
    top: 50%;
    margin-top: -10px;
}

.tip-wrapper.right .tip:before {
    border-right-color: #d4d4d4;
    top: 50%;
    margin-top: -11px;
}


/* Tip to the left */

.tip-wrapper.left .tip {
    margin-left: -356px;
}

.tip-wrapper.left .icon {
    float: right;
}

.tip-wrapper.left .tip:after, .tip-wrapper.left .tip:before {
    left: 100%;
}

.tip-wrapper.left .tip:after {
    border-left-color: #fff;
    top: 50%;
    margin-top: -10px;
}

.tip-wrapper.left .tip:before {
    border-left-color: #d4d4d4;
    top: 50%;
    margin-top: -11px;
}

/* Tip to the top */

.tip-wrapper.top .tip {
    margin-top: 0px;
}

.tip-wrapper.top .icon {
}

.tip-wrapper.top .tip:after, .tip-wrapper.left .tip:before {
    bottom: 100%;
}

.tip-wrapper.top .tip:after {
    border-bottom-color: #fff;
    left: 50%;
    margin-left: -10px;
}

.tip-wrapper.top .tip:before {
    border-bottom-color: #d4d4d4;
    left: 50%;
    margin-left: -11px;
    margin-top: -20px;
    margin-top: -50px;
    background: no-repeat
}

/* Tip to the bottom */

.tip-wrapper.bottom {
}

.tip-wrapper.bottom .tip {
    margin-bottom: 0;
    bottom: 100%;
    left: -156px;
}

.tip-wrapper.bottom .icon {
}

.tip-wrapper.bottom .tip:after, .tip-wrapper.bottom .tip:before {
    top: 100%;
}

.tip-wrapper.bottom .tip:after {
    border-top-color: #fff;
    left: 50%;
    margin-left: -10px;
}

.tip-wrapper.bottom .tip:before {
    border-top-color: #d4d4d4;
    left: 50%;
    margin-left: -11px;
}

/* Align the tips */

/* in tps.css return when complete */


/***** End the tips *******/

.loggedout-wrapper {
    width: 100%;
    height: 100%;
    background: url("../images/login-bg.jpg") no-repeat center center fixed;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
}

.loggedout-wrapper .content {
    width: 330px;
    height: 100%;
    border: 1px solid rgba(0, 0, 0, .25);
    background-color: #f1f1f1;
    -moz-box-shadow: 0 0 50px rgba(0, 0, 0, .2);
    -webkit-box-shadow: 0 0 50px rgba(0, 0, 0, .2);
    box-shadow: 0 0 50px rgba(0, 0, 0, .2);
    overflow: hidden;
}

.login-box {
    position: absolute;
    width: 270px;
    text-align: center;
    height: 371px;
    top: 50%;
    margin-top: -250px;
    padding: 0 30px;
    color: #bbb;
    font-size: 13px;
    overflow: hidden;

}

.login-box img {
    margin-bottom: 35px;
}

.login-box input {
    width: 100%;
    margin: 0 0 12px;
}

.login-box .button {
    text-transform: uppercase;
}

.login-box a {
    color: #bbb;
    line-height: 20px;
}

.login-box a:hover {
    color: #999;
}

.upgrade-wrap h1 {
    color: #393839;
    font-size: 23px;
    font-weight: bold;
    text-shadow: 0 1px 0 #fff;
    text-transform: uppercase;
    margin: 15px 0 24px;
}

.upgrade-link-wrap {
    width: 450px;
    float: left;
    margin: 0 0 50px 50px;
}

.upgrade-link-wrap p {
    color: #555;
    font-size: 15px;
    line-height: 18px;
}

.upgrade-wrap {
    padding: 10px;
}

.upgrade-wrap img {
    float: left;
    margin: 6px 0 0 20px;
}

.upgrade-wrap h2 {
    font-size: 17px;
    font-weight: bold;
    text-shadow: 0 1px 0 #fff;
    margin: 55px 20px 15px;
}

.table-row p {
    font-size: 15px;
    color: #555555;
    line-height: 20px;
}

.upgrade-wrap .table-row img {
    margin: 4px 35px;
}

.routing td img {
    margin: 0 17px;
}

.light-text {
    color: #aaaaaa !important;
}

.bottom-wrap {
    position: fixed;
    bottom: 0;
    overflow: auto;
    background: #f2f2f2;
    border-top: 1px solid #aaa;
    width: 100%;
    margin-left: -170px;
}

.gps-tracking-bottom {
    width: 900px;
    position: relative;
    left: 50%;
    margin-left: -310px;
    text-align: center;
}

.bt-3-wrap {
    padding: 20px;
    font-size: 14px;
    color: #555555;
    display: inline-block;
    text-align: left;
}

.bt-3-wrap.left {
    float: left;
}

.bt-3-wrap.right {
    float: right;
}

.bt-3-wrap .button {
    margin-top: 10px;
}

.bt-3-wrap input[type="text"] {
    margin: 10px 0 0 0;
    float: left;
}

.trip-plan-pref p, h3 {
    margin-bottom: 13px;
    font-size: 14px;
}

.trip-plan-pref p:last-child {
    margin-bottom: 0;
}

.trip-plan-pref .form-section {
    width: auto;
    min-width: 492px;
    display: inline-block;
}


.trip-plan-pref .form-section input[type="text"], input[type="password"] {
    margin: 0;
}

.trip-plan-pref .form-section.second {
    padding: 17px 20px;
    min-width: unset;
    margin-right: 15px;
    vertical-align: top;
}

.route-setting-buttons {
    float: left;
    width: 122px;
    margin-right: 20px;
}

.route-setting-buttons .button {
    width: 96px;
    margin-bottom: 9px;
}

.asterix {
    text-align: center;
    font-size: 12px;
    color: #a2a2a2;
}

.form-section.second label {
    color: #a2a2a2;
    width: 122px;
    font-size: 14px;
    margin-bottom: 27px;
}

.form-section.second input {
    margin-top: -3px;
}


.trip-plan-pref input[type="checkbox"] + label {
    color: #777;
    width: auto;
    font-size: 14px;
    margin-bottom: 10px;
}

.trip-plan-pref input[type="checkbox"] + label:last-child {
    margin-bottom: 0px;
}

.trip-plan-pref input[type="checkbox"] + label span {
    margin: 0px;
    margin-bottom: 7px;
}

.forecast-alert-row-wrap {
    -webkit-transition: all 0.2s ease-in;
    -moz-transition: all 0.2s ease-in;
    -ms-transition: all 0.2s ease-in;
    -o-transition: all 0.2s ease-in;
    transition: all 0.2s ease-in;
    height: 54px;
}

.forecast-alert-row-wrap.delete {
    height: 0;
    overflow: hidden;
}

.forecast-alerts-table .loc-del-confirm {
    margin-top: -54px;
    -webkit-transition: all 0.2s ease-in;
    -moz-transition: all 0.2s ease-in;
    -ms-transition: all 0.2s ease-in;
    -o-transition: all 0.2s ease-in;
    transition: all 0.2s ease-in;
    background: #ffffff;
    position: relative;
    border-bottom: 1px solid #dfdfdf;
    margin-left: 743px;
    display: inline-block;
}

.forecast-alerts-table .loc-del-confirm.delete-check {
    margin-left: 0;
}

.loc-del-confirm h3 {
    float: left;
    margin-right: 15px;
}

.confirm-wrap {
    float: right;
    margin-right: 10px;
}

.confirm-wrap .button {
    margin-right: 0;
}

.loc-row.delete-check {
    margin-left: -744px;
}

.forecast-alerts-table .alert-settings-wrap.delete {
    height: 0;
}

.loc-name-label {
    width: 160px;
    overflow: hidden;
    float: left;
}


.loc-alert-button-wrap {
    margin-left: 15px;
    float: right;
}

.loc-alert-button-wrap a:not(.button) {
    float: right;
    margin-right: 10px;
    color: #1e95d9;
    text-decoration: underline;
}

.departure-days {
    line-height: 30px;
    padding: 0 7px;
    color: #5c5c5c;
    font-weight: bold;
    float: left;
    font-size: 14px;
    text-align: center;
    width: 108px;
}

.departure-days.label {
    text-align: left;
    width: 165px;
}

.departure-days.day1 {
    color: blue;
}

.departure-days.day2 {
    color: red;
}

.departure-days.day3 {
    color: green;
}

.departure-days.day4 {
    color: orange;
}

table.trip-planner tbody tr td:first-child {
    font-weight: bold;
}

table.trip-planner tbody tr td:nth-child(2n+2), table.trip-planner .GFS {
    padding-left: 20px;
}

table.trip-planner .GFS, table.trip-planner .PWE {
    width: 40px;
}

.content-page {
    text-align: center;
    color: #333;
}

.content-page h1 {
    margin: 35px 0;
}

.content-page p {
    color: #333;
    font-family: "Source Sans Pro", sans-serif;
    font-size: 15px;
    line-height: 26px;
}

.content-page.iphone p {
    width: 500px;
    margin: 0 auto;
}

.content-page.iphone .lead-image img {
    margin: 0;
}

.content-page.iphone img {
    margin: 45px 0;
}

.form-section .content-page .button.green {
    margin: 0;
    padding: 0 70px;
    display: inline-block;
    float: none;
}

#main-content.location {
    width: 785px;
    text-align: center;
    padding-top: 70px;
}

#main-content.location h1 {
    color: #545251;
    font-family: "Arial";
    font-size: 33px;
    font-weight: bold;
    text-shadow: 0 1px 0 rgba(255, 255, 255, .8);
    text-transform: uppercase;
    margin: 30px;
}

#main-content.location h2 {
    color: #545251;
    font-family: "Arial";
    font-size: 19px;
    font-weight: bold;
    text-shadow: 0 1px 0 rgba(255, 255, 255, .8);
    text-transform: uppercase;
    margin: 20px;
}


#main-content.location .loc-search-wrap {
    display: inline-block;
}

#main-content.location input[type="text"] {
    font-size: 16px;
    line-height: 33px;
    border: 1px solid #b3b3b3;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
    border-right: 0;
    float: left;
    margin: 0;
    width: 360px;
}

#main-content.location .button {
    font-size: 15px;
    line-height: 33px;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
    border-right: 0;
}

#main-content.location p {
    color: #878787;
    font-family: "Arial";
    font-size: 16px;
    line-height: 22px;
    padding: 18px;
}

.prev-route {
    color: #999;
    text-align: center;
    width: 642px;
    background: #eaeaea;
    margin: 0 50px;
    padding: 15px 0;
    font-size: 17px;
    font-weight: bold;
    cursor: pointer;
    margin-bottom: 40px;
}

.login-switch-wrap {
    position: relative;
    margin-top: -20px;
}

.login-box .login {
    opacity: 0;
    position: absolute;
    top: 30px;
    margin-left: 500px;
    -webkit-transition: all 0.2s ease-out;
    -moz-transition: all 0.2s ease-out;
    -ms-transition: all 0.2s ease-out;
    -o-transition: all 0.2s ease-out;
    transition: all 0.2s ease-out;

}

.login-box .reset-password {
    margin-top: 0px;
    opacity: 0;
    position: absolute;
    top: 0;
    margin-left: -500px;
    -webkit-transition: all 0.2s ease-out;
    -moz-transition: all 0.2s ease-out;
    -ms-transition: all 0.2s ease-out;
    -o-transition: all 0.2s ease-out;
    transition: all 0.2s ease-out;

}

.login-box .reset-confirmation h2 {
    margin: 10px 0;
}

.login-box .reset-confirmation p {
    font-size: 14px;
    line-height: 20px;
    margin-bottom: 10px;
}

.login-box .login.active {
    margin-left: 0;
    opacity: 1;
}

.login-box .reset-password.active {
    opacity: 1;
    margin-left: 0;
}

.login-box .reset-confirmation.active {
    margin-left: 0;
    opacity: 1;
}

/* Overlay intro hint */

.overlay {
    background: #efefef;
    height: 100%;
    width: 100%;
    z-index: 9999;
    position: fixed;
    top: 0;
    margin-left: 170px;
}

.intro-box {
    width: 330px;
    height: 180px;
    border: 1px solid #d2d1d2;
    -moz-border-radius: 3px;
    -webkit-border-radius: 3px;
    border-radius: 3px;
    -moz-background-clip: padding;
    -webkit-background-clip: padding-box;
    background-clip: padding-box;
    background-color: #fafafa;
    margin: 58px;
    overflow: hidden;
}

.intro-box .title {
    color: #333;
    font-size: 17px;
    font-weight: bold;
    text-align: center;
    line-height: 35px;
    border-bottom: 1px solid #d2d1d2;
    background: #fff;
}

.intro-box .description {
    color: #333;
    font-size: 12px;
    line-height: 22px;
    padding: 28px 25px;
}

.intro-box .description p {
    margin-bottom: 24px;
}

.intro-box .button {
    padding: 0 20px;
}

.progress {
    float: right;
    width: 80px;
}

.progress .circle {
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    border-radius: 20px;
    background: #C1C1C1;
    width: 9px;
    height: 9px;
    float: left;
    margin-left: 9px;
    margin-top: 9px;
}

.progress .circle.orange {
    background: #F65012;
}

.intro-box.intro-second {
    margin-top: 61px;
}

.intro-box.intro-third {
    margin-top: 110px;
}

.sub-menu.active {
    display: block !important;
}

.intro-arrow {
    margin-left: -59px;
    margin-top: 12px;
    position: fixed;
}

.location-highlight {
    position: fixed;
    left: 0;
    top: 54px;
    height: 51px;
    width: 3px;
    background: #F6501F;
}

.forecast-views-highlight {
    position: fixed;
    left: 0;
    top: 105px;
    height: 358px;
    width: 3px;
    background: #F6501F;
}


/* Intro Slides */

/* Including temporary ECMWF news modal */

.modal-page-wrapper {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 100;
    display: table;
}

.modal-page-wrapper .modal-vertical-align {
    display: table-cell;
    vertical-align: middle;
}

.modal-page-wrapper .modal-vertical-align .ecmwf-modal-wrapper {
    z-index: 2;
    background: #fff;
    position: relative;
    text-align: center;
    max-width: 480px;
    width: 90%;
    padding: 30px;
    box-sizing: border-box;
    margin: 0 auto;
    overflow: auto;
    box-shadow: 0px 15px 50px rgba(0, 0, 0, 0.1);
}

.modal-page-wrapper .ecmwf-modal-wrapper img {
    margin: 20px 0 40px;
}

.modal-page-wrapper .ecmwf-modal-wrapper h1 {
    font-size: 20px;
    font-weight: bold;
    font-family: 'Arial', Sans-Serif;
    margin-bottom: 26px;
}

.modal-page-wrapper .ecmwf-modal-wrapper p {
    font-size: 14px;
    font-family: 'Arial', Sans-Serif;
    line-height: 22px;
    margin-bottom: 15px;
    color: #000;
}

.modal-page-wrapper .ecmwf-modal-wrapper a {
    text-decoration: underline;
    color: blue;
}

.modal-page-wrapper .ecmwf-modal-wrapper .button {
    display: inline-block;
    float: none;
    margin-top: 10px;
    margin-bottom: 10px;
    padding: 10px;
}

.modal-page-wrapper .modal-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.43);
    z-index: 1;
}

.modal-page-wrapper {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 100;
    display: table;
}

.modal-page-wrapper .modal-vertical-align {
    display: table-cell;
    vertical-align: middle;
}

.modal-page-wrapper .modal-vertical-align .onboarding-modal-wrapper {
    z-index: 2;
    background: #fff;
    position: relative;
    text-align: center;
    max-width: 960px;
    width: 90%;
    box-sizing: border-box;
    margin: 0 auto;
    overflow: auto;
    box-shadow: 0px 15px 50px rgba(0, 0, 0, 0.1);
}

.onboarding-modal-wrapper .slider-screen {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.onboarding-modal-wrapper .slider-screen .slider-track {
    width: 700%;
    margin-left: 0;
    -webkit-transition: all 0.2s ease-out;
    -moz-transition: all 0.2s ease-out;
    -ms-transition: all 0.2s ease-out;
    -o-transition: all 0.2s ease-out;
    transition: all 0.2s ease-out;
    display: table;
}

.onboarding-modal-wrapper .slider-track .slide {
    width: 14.2857142857%;
    position: relative;
    height: 100%;
    display: table-cell;
    vertical-align: middle;
}

.onboarding-modal-wrapper .slider-track .slide.slide-1 {
    padding: 0;
}

.onboarding-modal-wrapper .close.cross {
    position: absolute;
    color: #b0b0b0;
    top: 7px;
    right: 17px;
    z-index: 2;
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
    font-size: 45px;
    font-weight: 300;
    font-family: "Source Sans Pro", sans-serif;
    cursor: pointer;
}

.onboarding-modal-wrapper .close.cross.white {
    color: #fff;
}

.onboarding-modal-wrapper .slide .gradient-wrap {
    background: #0af;
    background: rgba(30, 114, 239, 1);
    background: -moz-linear-gradient(45deg, rgba(30, 114, 239, 1) 0%, rgba(36, 157, 214, 1) 100%);
    background: -webkit-gradient(left bottom, right top, color-stop(0%, rgba(30, 114, 239, 1)), color-stop(100%, rgba(36, 157, 214, 1)));
    background: -webkit-linear-gradient(45deg, rgba(30, 114, 239, 1) 0%, rgba(36, 157, 214, 1) 100%);
    background: -o-linear-gradient(45deg, rgba(30, 114, 239, 1) 0%, rgba(36, 157, 214, 1) 100%);
    background: -ms-linear-gradient(45deg, rgba(30, 114, 239, 1) 0%, rgba(36, 157, 214, 1) 100%);
    background: linear-gradient(45deg, rgba(30, 114, 239, 1) 0%, rgba(36, 157, 214, 1) 100%);
    overflow: auto;
    text-align: center;
    margin-right: -1px;
}

.onboarding-modal-wrapper .slide .button {
    font-family: "Source Sans Pro", sans-serif;
    text-shadow: none;
    font-weight: 300;
    text-transform: uppercase;
    font-size: 17px;
    border: 0;
    box-shadow: none;
    border-radius: 0;
    letter-spacing: 0.07em;
    background: none;
    padding: 19px 35px;
}

.onboarding-modal-wrapper .slide .button.next {
    background: #82ce11;
    color: #fff;
}

.onboarding-modal-wrapper .slide .button.back .arrow {
    border-color: #9c9c9c;
    -webkit-transform: rotate(225deg);
    -moz-transform: rotate(225deg);
    -o-transform: rotate(225deg);
    -ms-transform: rotate(225deg);
    transform: rotate(225deg);
    margin-bottom: -2px;
    margin-left: 0;
    margin-right: 10px;
}

.onboarding-modal-wrapper .slide .button .arrow {
    width: 14px;
    height: 14px;
    display: inline-block;
    border-top: 1px solid #fff;
    border-right: 1px solid #fff;
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
    margin-left: 10px;
}

.onboarding-modal-wrapper .slide-1 .hero-image img {
    width: 100%;
}

.onboarding-modal-wrapper .slide-1 .gradient-wrap img {
    display: block;
    margin: 40px auto 0;
}

.onboarding-modal-wrapper .slide-1 .button {
    display: inline-block;
    clear: both;
    float: none;
    margin: 40px 0;
}

.onboarding-modal-wrapper .slider-track .slide h1 {
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.onboarding-modal-wrapper .slider-track .slide p {
    font-family: "Source Sans Pro", sans-serif;
    font-size: 16px;
    letter-spacing: 0.01em;
    line-height: 22px;
}

.onboarding-modal-wrapper .slider-track .slide p.blurb {
    max-width: 640px;
    width: 100%;
    margin: 0 auto;
}

.onboarding-modal-wrapper .slider-track .slide .models-grid {
    margin-top: 20px;
    padding: 0 60px;
}

.onboarding-modal-wrapper .slider-track .slide .models-grid .model-info-wrap {
    width: 50%;
    float: left;
    text-align: left;
    padding: 10px 30px;
    box-sizing: border-box;
}

.onboarding-modal-wrapper .model-info-wrap .model-title {
    background: #ddd;
    display: inline-block;
    padding: 10px 0;
    width: 120px;
    border-radius: 100px;
    text-align: center;
    font-weight: bold;
    color: #fff;
    margin-bottom: 15px;
}

.onboarding-modal-wrapper .model-info-wrap .model-title.pwg {
    background: #1234f6;
}

.onboarding-modal-wrapper .model-info-wrap .model-title.pwe {
    background: #f91528;
}

.onboarding-modal-wrapper .model-info-wrap .model-title.gfs {
    background: #187f1c;
}

.onboarding-modal-wrapper .model-info-wrap .model-title.ecmwf {
    background: #e3ca2c;
}

.onboarding-modal-wrapper .model-info-wrap ul {
    list-style: disc;
    margin-left: 20px;
    margin-top: 10px;
}

.onboarding-modal-wrapper .model-info-wrap ul li {
    color: #989898;
    font-size: 14px;
    font-style: italic;
    font-family: "Source Sans Pro", sans-serif;
    line-height: 17px;
    margin-bottom: 10px;
}

.onboarding-modal-wrapper .buttons-wrap {
    width: 100%;
    clear: both;
    position: absolute;
    bottom: 0;
    left: 0;
    padding: 30px 30px 30px 0;
    box-sizing: border-box;
}

.onboarding-modal-wrapper .buttons-wrap.top {
    top: 0;
    bottom: auto;
}

.onboarding-modal-wrapper .buttons-wrap .next {
    float: right;
}

.onboarding-modal-wrapper .buttons-wrap .back {
    float: left;
    color: #9c9c9c;
}

.onboarding-modal-wrapper .slide img.main {
    margin-bottom: 30px;
    margin-top: -30px;
}

.onboarding-modal-wrapper .slide.slide-7 h1 {
    margin-bottom: 100px;
}

.onboarding-modal-wrapper .slide-7 .gradient-wrap {
    margin-bottom: -120px;
    padding: 40px 0;
    margin-top: 20px;
}

.onboarding-modal-wrapper .slide-7 .gradient-wrap .button {
    clear: both;
    margin: 0 auto;
    display: inline-block;
    white-space: nowrap;
    float: none;
}

.onboarding-modal-wrapper .slide-7 .gradient-wrap p {
    color: #fff;
    padding-bottom: 20px;
}


/* End Intro Slides

/* Unsupported Page CSS */

.page-wrap-960 {
    width: 960px;
    margin: 0 auto;
}

.unsupported-browser {
    text-align: center;
}

.unsupported-browser h1 {
    padding: 60px 0 30px;
    color: #333;
}

.unsupported-browser h2 {
    font-size: 30px;
    padding: 18px 0 27px;
    font-weight: 100;
    color: #333;
}

.unsupported-browser p, .continue p {
    font-family: 'Source Sans Pro', sans-serif;
    font-size: 20px;
    line-height: 36px;
    font-weight: 100;
    padding: 0 160px 28px;
}

.browsers .browser {
    width: 360px;
    padding: 35px 0;
    -webkit-transition: all 0.1s ease-in;
    -moz-transition: all 0.1s ease-in;
    -ms-transition: all 0.1s ease-in;
    -o-transition: all 0.1s ease-in;
    transition: all 0.1s ease-in;
    margin: 25px auto;

}

.browsers .browser:hover {
    background: #f1f1f1;
}

.browsers .left.browser.chrome {
    margin-left: 119px;
    border-right: 1px solid #ccc;
}

.browsers .right.browser.firefox {
    margin-right: 120px;
}

.browser .button {
    margin: 0 auto;
    width: 125px;
    float: none;
}

.browser a {
    text-decoration: none;
}

.continue {
    width: 960px;
    margin: 0 auto;
}

.continue p {
    padding: 0 300px;
    text-align: center;
    margin: 10px 0 25px;
}

.continue .button {
    width: 150px;
    margin: 0 auto;
    float: none;
}


body.mobile {
    height: 480px;
    text-align: center;
}

body.mobile #header-nav {
    background: #2996fe;
    border-bottom: 0;
}

body.mobile .logo {
    float: none !important;
    margin: 0 auto;
    background: #2996fe;
}

body.mobile .iphone-wrap {
    padding: 40px;
}

body.mobile .iphone-wrap .left {
    width: 230px;
    padding-left: 20px;
}

body.mobile .iphone-wrap h1 {
    font-size: 28px;
    padding-bottom: 15px;
}

body.mobile .iphone-wrap h1 strong {
    font-weight: 400;
}

body.mobile .iphone-wrap .space {
    height: 20px;
    width: 100%;
}

body.mobile .iphone-wrap a {
    text-decoration: none;
}

body.mobile .iphone-wrap .download {
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    border-radius: 5px;
    -moz-background-clip: padding;
    -webkit-background-clip: padding-box;
    background-clip: padding-box;
    background-color: #8dd900;
    color: #fff;
    font-weight: bold;
    text-transform: uppercase;
    text-align: center;
    padding: 18px;
    max-width: 400px;
    margin: 0 auto;
    border-bottom: 3px solid #79ba00;

}

body.mobile .iphone-wrap p {
    font-size: 15px;
    line-height: 24px;
    font-weight: normal;
    padding-bottom: 20px;
    max-width: 400px;
    margin: 0 auto;
}

body.mobile .iphone-wrap .right {
    padding-right: 25px;
}

body.mobile .iphone-wrap .iphone-image, .iphone-wrap .android-image {
    height: 330px;
    padding: 30px 0;
}

body.mobile .iphone-wrap .apple-logo {
    height: 65px;
    margin: 80px 0 40px;
}

/* Upgrade Pages */

.upgrade-page img.screen-image-main {
    position: absolute;
    right: 0;
    top: 0;
}

.form-section {
    position: relative;
}

.upgrade-page h1 {
    font-weight: normal;
    text-align: left;
    width: 340px;
    font-size: 40px;
    line-height: 57px;
    margin: 0;
    padding: 10px;
}

.content-page.upgrade-page p {
    text-align: left;
    margin: 0;
    margin-top: 10px;
    line-height: 30px;
    padding: 10px;
    width: 350px;
}

.content-page.upgrade-page .main-benefits {
    margin-top: 60px;
}

.content-page.upgrade-page .main-benefits img {
    float: left;
    margin: 0;
    margin-bottom: 60px;
    padding: 10px 30px 0 20px;
}

.content-page.upgrade-page .main-benefits p {
    float: left;
    margin: 0;
    margin-right: 50px;
    padding: 0;
    width: 230px;
    font-size: 14px;
    line-height: 22px;
}

.content-page.upgrade-page .main-benefits p:last-child {
    margin-right: 0;
}

.upgrade-page .cta-wrapper {
    border: 1px solid #dcdcdc;
    background-color: #f9f9f9;
    clear: both;
    width: 741px;
    margin-left: -35px;
    padding: 36px 0;
    margin-bottom: 50px;
}

.upgrade-page .cta-wrapper:last-child {
    margin-bottom: -29px;
}

.upgrade-page .cta-wrapper p {
    width: auto;
    text-align: center;
    font-size: 14px;
    padding: 0;
    margin: 0;
    margin-bottom: 15px;
}

.upgrade-page .cta-wrapper .button.green {
    padding: 0 5px;
    color: #fff;
}

.upgrade-page .benefit-right img {
    float: left;
    margin-left: -34px;
    margin-top: 0;
}

.upgrade-page .benefit-right,
.upgrade-page .benefit-left {
    clear: both;
}

.upgrade-page .benefit-text {
    width: 340px;
    float: left;
    text-align: left;
    margin-top: 60px;
    margin-left: 70px;
}

.upgrade-page .benefit-text h2 {
    font-size: 16px;
    text-transform: uppercase;
    font-weight: bold;
}

.upgrade-page .benefit-text p {
    font-size: 14px;
    padding: 0;
    line-height: 25px;
}

.upgrade-page .benefit-left .benefit-text {
    margin-left: 30px;
}

.upgrade-page .benefit-left img {
    float: right;
    margin-right: -34px;
    margin-top: 0;
}

.loc-upg-alert .upgrade-page img.screen-image-main {
    top: 130px;
}

.loc-upg-alert .notification-box {
    margin-left: -35px;
    border-radius: 0 !important;
    margin-top: -35px;
}

.upgrade-page .iframe-wrapper iframe {
    width: 100%;
    height: 350px;
    margin-bottom: 50px;
}

.upgrade-page .iframe-wrapper h2 {
    margin-bottom: 20px;
}


/* Upgrade Modal */

.upgrade-modal {
    position: fixed;
    width: 548px;
    border: 1px solid rgba(0, 0, 0, .2);
    -moz-border-radius: 7px / 10px;
    -webkit-border-radius: 7px / 10px;
    border-radius: 7px / 10px;
    -moz-background-clip: padding;
    -webkit-background-clip: padding-box;
    background-clip: padding-box;
    background-color: #fff;
    -moz-box-shadow: 0 7px 10px rgba(3, 4, 4, .15);
    -webkit-box-shadow: 0 7px 10px rgba(3, 4, 4, .15);
    box-shadow: 0 7px 10px rgba(3, 4, 4, .15);
    z-index: 999;
    left: 50%;
    margin-left: -314px;
    padding: 25px 40px 30px;
    font-family: 'Source Sans Pro';
    overflow: hidden;
    display: none;
}

.page-shade {
    z-index: 998;
    position: fixed;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: none;
}

.page-shade.visible {
    display: block;
}

.upgrade-modal .close-x {
    background: url(../images/upgrade-images/close-x.png);
    width: 10px;
    height: 10px;
    background-repeat: no-repeat;
    float: right;
    cursor: pointer;
}

.upgrade-modal.upgrade-page h1 {
    width: 100%;
    margin: 0;
    padding: 0;
}

.upgrade-modal.upgrade-page .modal-inner > p {
    font-size: 15px;
    padding: 0;
    line-height: 25px;
    width: 330px;
    margin-top: 20px;
}

.upgrade-modal .modal-inner > img {
    margin-top: 105px;
}

.upgrade-modal img {
    float: left;
}

.benefits {
    overflow: auto;
}

.benefit {
    margin-top: 27px;
    width: 180px;
    float: left;
    height: 24px;
}

.benefit p {
    float: left;
    padding-top: 2px;
    margin-left: 15px;
    font-size: 14px;
}

.upgrade-modal.upgrade-page .cta-wrapper {
    width: 628px;
    margin-left: -41px;
    clear: both;
    margin-top: 30px;
    text-align: center;
    margin-bottom: -31px;
}

.cta-wrapper .button {
    float: none;
    display: inline-block;
    /* width: 200px; */
    color: #666;
}

.upgrade-modal.visible {
    margin-top: 60px;
    display: block;
}

.smaller img {
    width: 297px;
}

.upgrade-modal .dont-show {
    display: inline-block;
    clear: both;
    margin-top: 30px;
    font-size: 13px;
    width: 300px;
    margin-left: -30px;
    color: #777;
}

.sub-menu .paid-product a {
    color: rgba(121, 121, 121, 0.4);
}

.sub-menu .paid-product a:before {
    opacity: 0.4;
}

