/**
 * Dev mode
 */
header .sc-dev-mode {
    position: absolute;
    z-index: 10;
    top: 20px;
    right: 30px;
    padding: 2px 5px;
    border-radius: 5px;
    background-color: #EA4042;
    color: #fff;
    cursor: default;
}
@media only screen and (max-width: 680px) {
    header .sc-dev-mode {
        top: 10px;
    }
}
/**
 * Title
 */
header .sc-title {
    background: #fff;
}
header .sc-title h1 {
    position: relative;
    width: 100%;
    height: 60px;
    margin: 0;
    padding-left: 20px;
    line-height: 60px !important; /* important for overriding customization */
    font-weight: normal;
    text-transform: uppercase;
    letter-spacing: -1px;
    color: #333;
}
header .sc-title h1.sc-mobile {
    display: none;
    height: 40px;
    line-height: 40px !important; /* important for overriding customization */
}
@media only screen and (max-width: 680px) {
    header .sc-title h1 {
        display: none;
    }
    .sc-transition header .sc-title h1,
    header .sc-title h1.sc-mobile {
        display: block;
        height: auto;
        padding: 15px 20px;
        line-height: normal !important;
    }
}
/**
 * Navigation bar
 */
header .sc-navigation {
    counter-reset: navigation;
    padding: 0;
}
header .sc-navigation-menu {
    list-style: none;
    height: 60px;
    width: 100%;
    margin: 0;
    padding: 0;
    position: relative;
    background-color: #fff;
}
header .sc-navigation-menu:before { /* Trick to fill empty space on the right */
    content: '';
    display: block;
    position: absolute;
    right: 0;
    width: 1%;
    height: 60px;
    background: #000;
}
header .sc-navigation-menu.sc-last-step:before { /* Trick to fill empty space on the right */
    background: #000;
}
header .sc-navigation-menu li {
    counter-increment: navigation;
    float: left;
    position: relative;
    height: 0;
    width: 24.5%;
    margin: 0 0.25%;
    padding-left: 0.25%;
    border-top: 30px solid #000;
    border-right: 0;
    border-bottom: 30px solid #000;
    border-left: 15px solid transparent;
}
header .sc-navigation.sc-three-steps li {
    width: 33%;
}

header .sc-navigation.sc-two-steps li {
    width: 49.5%;
}

header .sc-navigation-menu li:first-child {
    margin-left: 0;
    border-left: 0;
}
header .sc-navigation-menu li:last-child {
    margin-right: 0;
}
header .sc-navigation-menu li:after {
    content: '';
    position: absolute;
    display: inline-block;
    border-top: 30px solid transparent;
    border-right: 0;
    border-bottom: 30px solid transparent;
    border-left: 15px solid #000;
    right: -15px;
    top: -30px;
}
header .sc-navigation-menu li.sc-last-child:after {
    display: none !important;
}
header .sc-navigation-menu li.sc-current {
    border-top-color: #000;
    border-bottom-color: #000;
}
header .sc-navigation-menu li.sc-current:after {
    border-left-color: #000;
}
header .sc-navigation-menu a {
    display: block;
    height: 60px;
    width: 100%;
    margin-top: -30px;
    line-height: 60px !important;
    text-align: center;
    text-decoration: none;
    color: #fff;
    cursor: default;
}
header .sc-navigation-menu a.sc-enabled:hover,
header .sc-navigation-menu li.sc-current a {
    color: #ea4042;
    cursor: pointer;
}
header .sc-navigation-menu a:before {
    content: counters(navigation, ".") ". ";
}
header .sc-navigation-menu.sc-mobile {
    display: none;
    position: relative;
    width: 100%;
    height: 100%;
    margin-top: 0;
    padding-left: 20px;
    line-height: 40px !important;
    background-color: #000;
    color: #fff;
    text-align: left;
    text-decoration: none;
    text-transform: uppercase;
}
header .sc-navigation-menu.sc-mobile span {
    margin: 0 5px;
}
header .sc-navigation-menu.sc-mobile .sc-return-container {
    position: absolute;
    right: 7px;
    top: 7px;
    width: auto;
    height: 26px;
    margin: 0;
}
header .sc-navigation-menu.sc-mobile .sc-return-container a {
    position: relative;
    display: block;
    width: auto;
    height: 26px;
    margin: 0;
    padding: 0 2px;
    line-height: 26px !important;
    cursor: pointer;
    background-color: #000;
    color: #fff;
}
header .sc-navigation-menu.sc-mobile .sc-return-container a:before {
    content: '\0071';
    font-family: symbolcrpregular, sans-serif;
    font-size: 24px;
    text-transform: lowercase;
    display: block;
    float: left;
    margin-right: 5px;
    background-color: #000;
    color: #fff;
}
@media only screen and (max-width: 680px) {
    header .sc-navigation-menu {
        display: none;
    }
    header .sc-navigation-menu a:before {
        display: none;
    }
    header .sc-navigation-menu.sc-mobile {
        display: block;
        width: 100%;
        height: 40px;
    }
    header .sc-navigation-menu:before,
    header .sc-navigation-menu li:after {
        display: none !important;
    }
    header .sc-navigation-menu.sc-mobile {
        display: block;
    }
}
/**
 * Success title
 */
header .sc-success-title {
    display: block;
    padding: 20px 30px;
    background: #000;
    line-height: 20px;
    text-transform: uppercase;
    color: #fff;
}
header .sc-success-title strong {
    font-weight: normal;
}
