@import url(https://fonts.googleapis.com/css?family=Open+Sans:400,400italic,600,600italic,700,700italic,300italic,300);
@import url(https://fonts.googleapis.com/css?family=Raleway:400,100,200,300,500,600,700,800);

* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

*:before,
*:after {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

/***** JQUERY STEPS *****/
.wizard {
    margin-bottom: 20px;
}

.wizard > .content {
    min-height: 180px;
    background-color: #fff;
    border-radius: 0;
    margin: 0;
}

.wizard > .content > .body {
    width: 100%;
    height: 100%;
    padding: 20px;
}

.wizard > .content > .body label.error {
    display: inline;
    margin: 3px 0 0;
    font-size: 11px;
    color: #d9534f;
}

.wizard > .content > .body .has-error .form-control {
    border-color: #d9534f;
}

.wizard > .steps > ul > li {
    display: table-cell;
    width: 1%;
    float: none;
}

.wizard > .steps > ul > li > a {
    margin: 0;
    height: 62px;
    border-radius: 0;
    padding: 14px 25px;
    text-transform: uppercase;
    font-family: 'Open Sans', 'Helvetica Neue', Helvetica, sans-serif;
    font-weight: 700;
    font-size: 12px;
    background-color: #9fa8bc;
    color: rgba(255, 255, 255, 0.8);
    text-align: center;
    letter-spacing: .2px;
}

.wizard > .steps > ul > li > a:hover,
.wizard > .steps > ul > li > a:focus {
    color: #fff;
    margin: 0;
    border-radius: 0;
    padding: 14px 25px;
    background-color: #909bb1;
}

.wizard > .steps > ul > li:first-child > a {
    border-top-left-radius: 2px;
}

.wizard > .steps > ul > li:last-child > a {
    border-top-right-radius: 2px;
}

.wizard > .steps .number {
    font-size: 12px;
    margin-right: 5px;
}

.wizard > .steps .disabled a,
.wizard > .steps .disabled a:hover,
.wizard > .steps .disabled a:focus,
.wizard > .steps .disabled a:active {
    background-color: #9fa8bc;
    color: rgba(255, 255, 255, 0.8);
}

.wizard > .steps .done a {
    background-color: #505b72;
}

.wizard > .steps .done a:hover,
.wizard > .steps .done a:focus,
.wizard > .steps .done a:active {
    background-color: #464f63;
}

.wizard > .steps .current a,
.wizard > .steps .current a:hover,
.wizard > .steps .current a:focus,
.wizard > .steps .current a:active {
    background-color: #fff;
    color: #5b6781;
}

.wizard > .actions {
    padding: 15px 15px 10px;
    background-color: #f6f7f8;
    border-bottom-right-radius: 2px;
    border-bottom-left-radius: 2px;
}

.wizard > .actions a {
    padding: 10px 12px;
    border-radius: 2px;
    background-color: #2574ab;
    min-width: 100px;
    height: 38px;
    text-align: center;
    letter-spacing: .5px;
}

.wizard > .actions a:hover,
.wizard > .actions a:focus {
    border-radius: 2px;
    padding: 10px 12px;
    background-color: #206696;
}

.wizard > .actions a:active {
    background-color: #1e5d89;
}

.wizard > .actions > ul {
    margin: 0;
    padding: 0;
}

.wizard > .actions > ul > li {
    display: inline-block;
    margin-right: 0;
}

.wizard > .actions > ul > li:last-child a {
    background-color: #259dab;
}

.wizard > .actions > ul > li:last-child a:hover,
.wizard > .actions > ul > li:last-child a:focus {
    background-color: #208a96;
}

.wizard > .actions .disabled a,
.wizard > .actions .disabled a:hover,
.wizard > .actions .disabled a:focus {
    background-color: #d8dce3;
    color: #c0c7d2;
}

.wizard.vertical {
    background-color: #9fa8bc;
    border-radius: 2px;
}

.wizard.vertical .content {
    margin: 0;
    width: 70%;
    min-height: 250px;
}

@media (max-width: 639px) {
    .wizard.vertical .content {
        width: 100%;
    }
}

.wizard.vertical > .steps > ul > li {
    display: block;
}

.wizard.vertical > .steps > ul > li > a {
    text-align: left;
}

@media (max-width: 639px) {
    .wizard.vertical > .steps {
        width: 100%;
    }
}

.wizard.vertical .actions {
    margin: 0;
    width: 100%;
}

.wizard.wizard-style2 > .steps {
    counter-reset: ordered;
}

.wizard.wizard-style2 > .steps > ul > li {
    position: relative;
}

@media (max-width: 480px) {
    .wizard.wizard-style2 > .steps > ul > li {
        display: block;
        float: none;
        width: auto;
    }
}

.wizard.wizard-style2 > .steps > ul > li > a {
    text-align: left;
    padding-left: 60px;
    padding-right: 0;
}

.wizard.wizard-style2 > .steps > ul > li > a:before {
    content: counters(ordered, ".", decimal);
    counter-increment: ordered;
    position: absolute;
    top: 50%;
    left: 15px;
    width: 36px;
    height: 36px;
    margin-top: -18px;
    background-color: rgba(255, 255, 255, 0.8);
    color: #9fa8bc;
    border-radius: 100px;
    font-size: 18px;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    text-align: center;
    padding-top: 8px;
    line-height: 20px;
}

.wizard.wizard-style2 > .steps > ul > li > a:after {
    border-left: 31px solid #9fa8bc;
    border-top: 31px solid transparent;
    border-bottom: 31px solid transparent;
    content: "";
    display: inline-block;
    position: absolute;
    right: -31px;
    top: 50%;
    margin-top: -31px;
    z-index: 50;
}

.wizard.wizard-style2 > .steps > ul > li > a:hover:after,
.wizard.wizard-style2 > .steps > ul > li > a:focus:after {
    border-left-color: #909bb1;
}

.wizard.wizard-style2 > .steps > ul > li > a > small {
    display: block;
    text-transform: none;
    font-weight: normal;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 10px;
}

.wizard.wizard-style2 > .steps > ul > li + li > a {
    padding-left: 85px;
}

@media (max-width: 480px) {
    .wizard.wizard-style2 > .steps > ul > li + li > a {
        padding-left: 60px;
    }
}

.wizard.wizard-style2 > .steps > ul > li + li > a:before {
    left: 40px;
}

@media (max-width: 639px) {
    .wizard.wizard-style2 > .steps > ul > li + li > a:before {
        left: 15px;
    }
}

.wizard.wizard-style2 > .steps > ul > li:last-child > a:after {
    display: none;
}

.wizard.wizard-style2 > .steps .number {
    display: none;
}

.wizard.wizard-style2 > .steps .done a:before {
    background-color: #fff;
    color: #505b72;
}

.wizard.wizard-style2 > .steps .done a:after {
    border-left-color: #505b72;
}

.wizard.wizard-style2 > .steps .done a:hover:after,
.wizard.wizard-style2 > .steps .done a:focus:after {
    border-left-color: #464f63;
}

.wizard.wizard-style2 > .steps .current a,
.wizard.wizard-style2 > .steps .current a:hover,
.wizard.wizard-style2 > .steps .current a:focus {
    background-color: #fff;
    color: #89a3d1;
}

.wizard.wizard-style2 > .steps .current a > small,
.wizard.wizard-style2 > .steps .current a:hover > small,
.wizard.wizard-style2 > .steps .current a:focus > small {
    color: #696c74;
}

.wizard.wizard-style2 > .steps .current a:before,
.wizard.wizard-style2 > .steps .current a:hover:before,
.wizard.wizard-style2 > .steps .current a:focus:before {
    background-color: #89a3d1;
    color: #fff;
}

.wizard.wizard-style2 > .steps .current a:after,
.wizard.wizard-style2 > .steps .current a:hover:after,
.wizard.wizard-style2 > .steps .current a:focus:after {
    border-left-color: #fff;
}

.wizard.wizard-style2 > .steps .disabled a:after,
.wizard.wizard-style2 > .steps .disabled a:hover:after,
.wizard.wizard-style2 > .steps .disabled a:focus:after {
    border-left-color: #9fa8bc;
}

.wizard.wizard-style2.vertical > .steps > ul > li + li > a {
    padding-left: 60px;
}

.wizard.wizard-style2.vertical > .steps > ul > li + li > a:before {
    left: 15px;
}

.wizard.wizard-style2.vertical > .steps > ul > li + li > a:after {
    display: none;
}

.wizard.wizard-style2.vertical > .steps > ul > li:last-child > a {
    border-top-right-radius: 0;
}

.wizard.wizard-style2.vertical > .steps .current a:after,
.wizard.wizard-style2.vertical > .steps .done a:after {
    display: none;
}

/***** MAIN PANEL *****/
.mainpanel {
    padding-top: 130px;
}

@media (min-width: 992px) {
    .mainpanel {
        /*    margin-left: 220px;*/
    }
}

@media (max-width: 991px) {
    .mainpanel {
        position: relative;
    }
}

.contentpanel.emailpanel {
    background-color: #fff;
    position: fixed;
    top: 64px;
    left: 360px;
    bottom: 0;
    right: 0;
    overflow: auto;
}

@media (min-width: 992px) {
    .contentpanel.emailpanel {
        left: 580px;
    }
}

@media (max-width: 768px) {
    .contentpanel.emailpanel {
        left: 320px;
    }
}

@media (max-width: 640px) {
    .contentpanel.emailpanel {
        position: relative;
        display: none;
    }
}

.contentpanel h3 {
    color: #2e8DDC;
}

/* PANEL - */
.panel {
    margin-bottom: 17px;
    background-color: #ffffff;
    border: 1px solid transparent;
    border-radius: 2px;
    -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);
    box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);
}

.panel-body {
    padding: 20px;
}

.panel-heading {
    padding: 20px;
    border-bottom: 1px solid transparent;
    border-top-right-radius: 1px;
    border-top-left-radius: 1px;
}

.panel-heading > .dropdown .dropdown-toggle {
    color: inherit;
}

.panel-title {
    margin-top: 0;
    margin-bottom: 0;
    font-size: 14px;
    color: inherit;
}

.panel-title > a,
.panel-title > small,
.panel-title > .small,
.panel-title > small > a,
.panel-title > .small > a {
    color: inherit;
}

.panel-footer {
    padding: 20px;
    background-color: #f5f5f5;
    border-top: 1px solid #dddddd;
    border-bottom-right-radius: 1px;
    border-bottom-left-radius: 1px;
}

.panel > .list-group,
.panel > .panel-collapse > .list-group {
    margin-bottom: 0;
}

.panel > .list-group .list-group-item,
.panel > .panel-collapse > .list-group .list-group-item {
    border-width: 1px 0;
    border-radius: 0;
}

.panel > .list-group:first-child .list-group-item:first-child,
.panel > .panel-collapse > .list-group:first-child .list-group-item:first-child {
    border-top: 0;
    border-top-right-radius: 1px;
    border-top-left-radius: 1px;
}

.panel > .list-group:last-child .list-group-item:last-child,
.panel > .panel-collapse > .list-group:last-child .list-group-item:last-child {
    border-bottom: 0;
    border-bottom-right-radius: 1px;
    border-bottom-left-radius: 1px;
}

.panel > .panel-heading + .panel-collapse > .list-group .list-group-item:first-child {
    border-top-right-radius: 0;
    border-top-left-radius: 0;
}

.panel-heading + .list-group .list-group-item:first-child {
    border-top-width: 0;
}

.list-group + .panel-footer {
    border-top-width: 0;
}

.panel > .table,
.panel > .table-responsive > .table,
.panel > .panel-collapse > .table {
    margin-bottom: 0;
}

.panel > .table caption,
.panel > .table-responsive > .table caption,
.panel > .panel-collapse > .table caption {
    padding-left: 20px;
    padding-right: 20px;
}

.panel > .table:first-child,
.panel > .table-responsive:first-child > .table:first-child {
    border-top-right-radius: 1px;
    border-top-left-radius: 1px;
}

.panel > .table:first-child > thead:first-child > tr:first-child,
.panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child,
.panel > .table:first-child > tbody:first-child > tr:first-child,
.panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child {
    border-top-left-radius: 1px;
    border-top-right-radius: 1px;
}

.panel > .table:first-child > thead:first-child > tr:first-child td:first-child,
.panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child td:first-child,
.panel > .table:first-child > tbody:first-child > tr:first-child td:first-child,
.panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child td:first-child,
.panel > .table:first-child > thead:first-child > tr:first-child th:first-child,
.panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child th:first-child,
.panel > .table:first-child > tbody:first-child > tr:first-child th:first-child,
.panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child th:first-child {
    border-top-left-radius: 1px;
}

.panel > .table:first-child > thead:first-child > tr:first-child td:last-child,
.panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child td:last-child,
.panel > .table:first-child > tbody:first-child > tr:first-child td:last-child,
.panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child td:last-child,
.panel > .table:first-child > thead:first-child > tr:first-child th:last-child,
.panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child th:last-child,
.panel > .table:first-child > tbody:first-child > tr:first-child th:last-child,
.panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child th:last-child {
    border-top-right-radius: 1px;
}

.panel > .table:last-child,
.panel > .table-responsive:last-child > .table:last-child {
    border-bottom-right-radius: 1px;
    border-bottom-left-radius: 1px;
}

.panel > .table:last-child > tbody:last-child > tr:last-child,
.panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child,
.panel > .table:last-child > tfoot:last-child > tr:last-child,
.panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child {
    border-bottom-left-radius: 1px;
    border-bottom-right-radius: 1px;
}

.panel > .table:last-child > tbody:last-child > tr:last-child td:first-child,
.panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child td:first-child,
.panel > .table:last-child > tfoot:last-child > tr:last-child td:first-child,
.panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child td:first-child,
.panel > .table:last-child > tbody:last-child > tr:last-child th:first-child,
.panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child th:first-child,
.panel > .table:last-child > tfoot:last-child > tr:last-child th:first-child,
.panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child th:first-child {
    border-bottom-left-radius: 1px;
}

.panel > .table:last-child > tbody:last-child > tr:last-child td:last-child,
.panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child td:last-child,
.panel > .table:last-child > tfoot:last-child > tr:last-child td:last-child,
.panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child td:last-child,
.panel > .table:last-child > tbody:last-child > tr:last-child th:last-child,
.panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child th:last-child,
.panel > .table:last-child > tfoot:last-child > tr:last-child th:last-child,
.panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child th:last-child {
    border-bottom-right-radius: 1px;
}

.panel > .panel-body + .table,
.panel > .panel-body + .table-responsive,
.panel > .table + .panel-body,
.panel > .table-responsive + .panel-body {
    border-top: 1px solid #ffffff;
}

.panel > .table > tbody:first-child > tr:first-child th,
.panel > .table > tbody:first-child > tr:first-child td {
    border-top: 0;
}

.panel > .table-bordered,
.panel > .table-responsive > .table-bordered {
    border: 0;
}

.panel > .table-bordered > thead > tr > th:first-child,
.panel > .table-responsive > .table-bordered > thead > tr > th:first-child,
.panel > .table-bordered > tbody > tr > th:first-child,
.panel > .table-responsive > .table-bordered > tbody > tr > th:first-child,
.panel > .table-bordered > tfoot > tr > th:first-child,
.panel > .table-responsive > .table-bordered > tfoot > tr > th:first-child,
.panel > .table-bordered > thead > tr > td:first-child,
.panel > .table-responsive > .table-bordered > thead > tr > td:first-child,
.panel > .table-bordered > tbody > tr > td:first-child,
.panel > .table-responsive > .table-bordered > tbody > tr > td:first-child,
.panel > .table-bordered > tfoot > tr > td:first-child,
.panel > .table-responsive > .table-bordered > tfoot > tr > td:first-child {
    border-left: 0;
}

.panel > .table-bordered > thead > tr > th:last-child,
.panel > .table-responsive > .table-bordered > thead > tr > th:last-child,
.panel > .table-bordered > tbody > tr > th:last-child,
.panel > .table-responsive > .table-bordered > tbody > tr > th:last-child,
.panel > .table-bordered > tfoot > tr > th:last-child,
.panel > .table-responsive > .table-bordered > tfoot > tr > th:last-child,
.panel > .table-bordered > thead > tr > td:last-child,
.panel > .table-responsive > .table-bordered > thead > tr > td:last-child,
.panel > .table-bordered > tbody > tr > td:last-child,
.panel > .table-responsive > .table-bordered > tbody > tr > td:last-child,
.panel > .table-bordered > tfoot > tr > td:last-child,
.panel > .table-responsive > .table-bordered > tfoot > tr > td:last-child {
    border-right: 0;
}

.panel > .table-bordered > thead > tr:first-child > td,
.panel > .table-responsive > .table-bordered > thead > tr:first-child > td,
.panel > .table-bordered > tbody > tr:first-child > td,
.panel > .table-responsive > .table-bordered > tbody > tr:first-child > td,
.panel > .table-bordered > thead > tr:first-child > th,
.panel > .table-responsive > .table-bordered > thead > tr:first-child > th,
.panel > .table-bordered > tbody > tr:first-child > th,
.panel > .table-responsive > .table-bordered > tbody > tr:first-child > th {
    border-bottom: 0;
}

.panel > .table-bordered > tbody > tr:last-child > td,
.panel > .table-responsive > .table-bordered > tbody > tr:last-child > td,
.panel > .table-bordered > tfoot > tr:last-child > td,
.panel > .table-responsive > .table-bordered > tfoot > tr:last-child > td,
.panel > .table-bordered > tbody > tr:last-child > th,
.panel > .table-responsive > .table-bordered > tbody > tr:last-child > th,
.panel > .table-bordered > tfoot > tr:last-child > th,
.panel > .table-responsive > .table-bordered > tfoot > tr:last-child > th {
    border-bottom: 0;
}

.panel > .table-responsive {
    border: 0;
    margin-bottom: 0;
}

.panel-group {
    margin-bottom: 17px;
}

.panel-group .panel {
    margin-bottom: 0;
    border-radius: 2px;
}

.panel-group .panel + .panel {
    margin-top: 5px;
}

.panel-group .panel-heading {
    border-bottom: 0;
}

.panel-group .panel-heading + .panel-collapse > .panel-body,
.panel-group .panel-heading + .panel-collapse > .list-group {
    border-top: 1px solid #dddddd;
}

.panel-group .panel-footer {
    border-top: 0;
}

.panel-group .panel-footer + .panel-collapse .panel-body {
    border-bottom: 1px solid #dddddd;
}

.panel-default {
    border-color: #d2d6df;
}

.panel-default > .panel-heading {
    color: #262b36;
    background-color: #9fa8bc;
    border-color: #d2d6df;
}

.panel-default > .panel-heading + .panel-collapse > .panel-body {
    border-top-color: #d2d6df;
}

.panel-default > .panel-heading .badge {
    color: #9fa8bc;
    background-color: #262b36;
}

.panel-default > .panel-footer + .panel-collapse > .panel-body {
    border-bottom-color: #d2d6df;
}

.panel-primary {
    border-color: #2574ab;
}

.panel-primary > .panel-heading {
    color: #ffffff;
    background-color: #2574ab;
    border-color: #2574ab;
}

.panel-primary > .panel-heading + .panel-collapse > .panel-body {
    border-top-color: #2574ab;
}

.panel-primary > .panel-heading .badge {
    color: #2574ab;
    background-color: #ffffff;
}

.panel-primary > .panel-footer + .panel-collapse > .panel-body {
    border-bottom-color: #2574ab;
}

.panel-success {
    border-color: #1c7781;
}

.panel-success > .panel-heading {
    color: #1aa71c;
    background-color: #259dab;
    border-color: #1c7781;
}

.panel-success > .panel-heading + .panel-collapse > .panel-body {
    border-top-color: #1c7781;
}

.panel-success > .panel-heading .badge {
    color: #259dab;
    background-color: #1aa71c;
}

.panel-success > .panel-footer + .panel-collapse > .panel-body {
    border-bottom-color: #1c7781;
}

.panel-info {
    border-color: #31b0d5;
}

.panel-info > .panel-heading {
    color: #3b83a6;
    background-color: #5bc0de;
    border-color: #31b0d5;
}

.panel-info > .panel-heading + .panel-collapse > .panel-body {
    border-top-color: #31b0d5;
}

.panel-info > .panel-heading .badge {
    color: #5bc0de;
    background-color: #3b83a6;
}

.panel-info > .panel-footer + .panel-collapse > .panel-body {
    border-bottom-color: #31b0d5;
}

.panel-warning {
    border-color: #df9730;
}

.panel-warning > .panel-heading {
    color: #9c732c;
    background-color: #e6ad5c;
    border-color: #df9730;
}

.panel-warning > .panel-heading + .panel-collapse > .panel-body {
    border-top-color: #df9730;
}

.panel-warning > .panel-heading .badge {
    color: #e6ad5c;
    background-color: #9c732c;
}

.panel-warning > .panel-footer + .panel-collapse > .panel-body {
    border-bottom-color: #df9730;
}

.panel-danger {
    border-color: #c9302c;
}

.panel-danger > .panel-heading {
    color: #d9534f;
    background-color: #d9534f;
    border-color: #c9302c;
}

.panel-danger > .panel-heading + .panel-collapse > .panel-body {
    border-top-color: #c9302c;
}

.panel-danger > .panel-heading .badge {
    color: #d9534f;
    background-color: #d9534f;
}

.panel-danger > .panel-footer + .panel-collapse > .panel-body {
    border-bottom-color: #c9302c;
}

/***** LEFT NAVIGATION *****/
.nav-quirk {
    margin: 0 0 30px;
    background-color: #fff;
}

.nav-quirk > li {
    border-top: 1px solid #eaecf0;
    text-transform: uppercase;
    font-family: 'Open Sans', 'Helvetica Neue', Helvetica, sans-serif;
}

.nav-quirk > li > a {
    color: #505b72;
    padding: 12px 14px;
    border-radius: 0;
    font-weight: 700;
    -webkit-transition: all 0.2s ease-out 0s;
    -o-transition: all 0.2s ease-out 0s;
    transition: all 0.2s ease-out 0s;
}

.nav-quirk > li > a .badge {
    background-color: transparent;
    color: #9fa8bc;
    font-size: 12px;
    text-transform: none;
    padding: 0;
    font-weight: normal;
    margin-top: 3px;
    margin-right: 2px;
}

.nav-quirk > li > a > i {
    width: 16px;
    font-size: 14px;
    text-align: center;
    margin-right: 7px;
    color: #259dab;
    vertical-align: top;
    margin-top: 1.5555px;
    -webkit-transition: all 0.2s ease-out 0s;
    -o-transition: all 0.2s ease-out 0s;
    transition: all 0.2s ease-out 0s;
}

.nav-quirk > li > a:hover,
.nav-quirk > li > a:focus {
    color: #262b36;
    background-color: #ffffff;
}

.nav-quirk > li + li {
    margin: 0;
}

.nav-quirk > li:last-child {
    border-bottom: 1px solid #eaecf0;
}

.nav-quirk > li.nav-parent > a {
    position: relative;
}

.nav-quirk > li.nav-parent > a:after {
     content: '\f138';
     font-family: 'FontAwesome';
     font-size: 16px;
     font-weight: 400;
     color: #949aa8;
     position: absolute;
     top: 10px;
     right: 15px;
 }
.nav-quirk > li.nav-active > a:after {
    content: '\f13a';
    font-family: 'FontAwesome';
    font-size: 16px;
    font-weight: 400;
    color: #949aa8;
    position: absolute;
    top: 10px;
    right: 15px;
}

.nav-quirk > li.nav-active > ul {
    display: block;
}

.nav-quirk > li.active {
    border-top-color: transparent;
}

.nav-quirk > li.active + li {
    border-top-width: 0;
}

.nav-quirk > li.active > a {
    color: #fff;
    background-color: #259dab;
    background-image: -webkit-linear-gradient(left, #259dab 0%, #2574ab 100%);
    background-image: -o-linear-gradient(left, #259dab 0%, #2574ab 100%);
    background-image: linear-gradient(to right, #259dab 0%, #2574ab 100%);
    background-repeat: repeat-x;
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff259dab', endColorstr='#ff2574ab', GradientType=1);
}

.nav-quirk > li.active > a .badge {
    background-color: transparent;
    color: rgba(255, 255, 255, 0.5);
}

.nav-quirk > li.active > a > i {
    color: #fff;
}

.nav-quirk > li.active > a:after {
    color: #fff;
}

.nav-quirk > li.active .children {
    display: block;
    border-top: 0;
    border-bottom: 1px solid #eaecf0;
}

.nav-quirk > li.active .children:before {
    border-top: 7px solid #259dab;
    border-left: 7px solid transparent;
    border-right: 7px solid transparent;
    content: "";
    display: inline-block;
    position: absolute;
    left: 15px;
    top: 0;
}

.nav-quirk .children {
    list-style: none;
    display: none;
    margin: 0;
    padding: 0;
    position: relative;
    border-top: 1px solid #eaecf0;
    background-color: #f6f7f8;
}

.nav-quirk .children > li {
    margin-left: 21px;
    border-left: 1px solid #dbdfe6;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    text-transform: none;
    letter-spacing: normal;
    display: block;
    font-size: 12px;
}

.nav-quirk .children > li:first-child {
    padding-top: 7px;
}

.nav-quirk .children > li:last-child {
    padding-bottom: 7px;
}

.nav-quirk .children > li > a {
    display: block;
    font-weight: 400;
    padding: 5px 0 5px 18px;
    color: #657390;
    position: relative;
    height: 28px;
    -webkit-transition: all 0.2s ease-out 0s;
    -o-transition: all 0.2s ease-out 0s;
    transition: all 0.2s ease-out 0s;
}

.nav-quirk .children > li > a:before {
    content: '';
    position: absolute;
    width: 5px;
    height: 5px;
    left: -3px;
    top: 50%;
    background-color: #9fa8bc;
    margin-top: -3px;
    border-radius: 50px;
    -webkit-transition: all 0.2s ease-out 0s;
    -o-transition: all 0.2s ease-out 0s;
    transition: all 0.2s ease-out 0s;
}

.nav-quirk .children > li > a:after {
    content: '';
    width: 30px;
    height: 30px;
    border: 1px solid #a0a8b9;
    position: absolute;
    left: -15px;
    top: 50%;
    margin-top: -15px;
    border-radius: 50px;
    opacity: 0;
    -webkit-transition: all 0.2s ease-out 0s;
    -o-transition: all 0.2s ease-out 0s;
    transition: all 0.2s ease-out 0s;
}

.nav-quirk .children > li > a:hover,
.nav-quirk .children > li > a:focus,
.nav-quirk .children > li > a:active {
    text-decoration: none;
    color: #464f63;
}

.nav-quirk .children > li > a:hover:before,
.nav-quirk .children > li > a:focus:before,
.nav-quirk .children > li > a:active:before {
    background-color: #657390;
}

.nav-quirk .children > li > a:hover:after,
.nav-quirk .children > li > a:focus:after,
.nav-quirk .children > li > a:active:after {
    opacity: 1;
    border-color: #657390;
    width: 11px;
    height: 11px;
    left: -6px;
    margin-top: -6px;
}

.nav-quirk .children > li.active > a {
    color: #259dab;
}

.nav-quirk .children > li.active > a:before {
    background-color: #259dab;
}

.nav-quirk .children > li.active > a:after {
    opacity: 1;
    border-color: #259dab;
    width: 11px;
    height: 11px;
    left: -6px;
    margin-top: -6px;
}

/***** LEFT NAVIGATION STACKED STYLE VARIANT *****/
.nav-quirk-stacked > li:first-child {
    border-top: 1px solid #eaecf0;
}

.nav-quirk-stacked > li > a {
    padding: 12px 0;
    letter-spacing: .5px;
    color: #464f63;
}

.nav-quirk-stacked > li > a:hover,
.nav-quirk-stacked > li > a:focus {
    color: #262b36;
}

.nav-quirk-stacked > li > a:hover > i,
.nav-quirk-stacked > li > a:focus > i {
    color: #262b36;
}

.nav-quirk-stacked > li.nav-parent > a:after {
    top: 9px;
    right: 5px;
}

.nav-quirk-stacked > li.active {
    border-top-color: #eaecf0;
}

.nav-quirk-stacked > li.active + li {
    border-top-width: 1px;
}

.nav-quirk-stacked > li.active > a,
.nav-quirk-stacked > li.active > a:hover,
.nav-quirk-stacked > li.active > a:focus {
    background-color: transparent;
    background-image: none;
    color: #259dab;
}

.nav-quirk-stacked > li.active > a > i,
.nav-quirk-stacked > li.active > a:hover > i,
.nav-quirk-stacked > li.active > a:focus > i {
    color: #259dab;
}

.nav-quirk-stacked > li.active .children {
    border-bottom: 0;
    border-top: 1px solid #eaecf0;
}

.nav-quirk-stacked > li.active .children:before {
    display: none;
}

.nav-quirk-stacked > li.active.nav-parent > a:after {
    color: #259dab;
}

.nav-quirk-stacked .children {
    background-color: transparent;
}

.nav-quirk-stacked .children > li {
    margin-left: 8px;
    border-left-color: #eaecf0;
}

/***** LEFT NAVIGATION PILL STYLE VARIANT *****/
.nav-quirk-pills > li:last-child {
    border-bottom: 0;
}

.nav-quirk-pills > li > a {
    padding: 10px;
    border-radius: 2px;
}

.nav-quirk-pills > li > a:hover,
.nav-quirk-pills > li > a:focus {
    background-color: #e1e4ea;
}

.nav-quirk-pills > li > a:hover > i,
.nav-quirk-pills > li > a:focus > i {
    color: inherit;
}

.nav-quirk-pills > li + li {
    border-top: 0;
    margin-top: 1px;
}

.nav-quirk-pills > li.nav-parent a:after {
    top: 7px;
    right: 10px;
}

.nav-quirk-pills > li.active .children {
    border-bottom: 0;
}

.nav-quirk-pills > li.active .children:before {
    display: none;
}

.nav-quirk-pills > li .children {
    background-color: transparent;
    border-top: 0;
}

.nav-quirk-pills > li .children > li {
    margin-left: 18px;
    border-left: 0;
}

.nav-quirk-pills > li .children > li:first-child {
    padding-top: 0;
}

.nav-quirk-pills > li .children > li:last-child {
    padding-bottom: 0;
}

.nav-quirk-pills > li .children > li > a:after {
    top: 50%;
}

.nav-dark-info {
    background-color: #3b4354;
}

.nav-dark-info > li > a > i {
    color: #5bc0de;
}

.nav-dark-info > li,
.nav-dark-info > li:last-child {
    border-color: #464f63;
}

.nav-dark-info > li > a {
    color: #818da7;
}

.nav-dark-info > li > a:hover,
.nav-dark-info > li > a:focus {
    background-color: #313745;
    color: #fff;
}

.nav-dark-info > li.active > a,
.nav-dark-info > li.active > a:hover,
.nav-dark-info > li.active > a:focus {
    color: #fff;
    background-color: #5bc0de;
    background-image: none;
}

.nav-dark-info > li.active .children:before {
    border-top-color: #5bc0de;
}

.font12 {
    font-size: 9px;
}

/**/