/*
Version: 3.4.5 Timestamp: Mon Nov  4 08:22:42 PST 2013
*/
/* You stupid file */
.select2-container {
    margin: 0;
    position: relative;
    display: inline-block;
    /* inline-block for ie7 */
    zoom: 1;
    *display: inline;
    vertical-align: middle;
}

.select2-container,
.select2-drop,
.select2-search,
.select2-search input {
  /*
    Force border-box so that % widths fit the parent
    container without overlap because of margin/padding.

    More Info : http://www.quirksmode.org/css/box.html
  */
  -webkit-box-sizing: border-box; /* webkit */
     -moz-box-sizing: border-box; /* firefox */
          box-sizing: border-box; /* css3 */
}

.select2-container .select2-choice {
    display: block;
    height: 26px;
    padding: 0 0 0 8px;
    overflow: hidden;
    position: relative;

    border: 1px solid #aaa;
    white-space: nowrap;
    line-height: 26px;
    color: #444;
    text-decoration: none;

    border-radius: 4px;

    background-clip: padding-box;

    -webkit-touch-callout: none;
      -webkit-user-select: none;
         -moz-user-select: none;
          -ms-user-select: none;
              user-select: none;

    background-color: #fff;
    background-image: -webkit-gradient(linear, left bottom, left top, color-stop(0, #eee), color-stop(0.5, #fff));
    background-image: -webkit-linear-gradient(center bottom, #eee 0%, #fff 50%);
    background-image: -moz-linear-gradient(center bottom, #eee 0%, #fff 50%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr = '#ffffff', endColorstr = '#eeeeee', GradientType = 0);
    background-image: linear-gradient(top, #fff 0%, #eee 50%);
}

.select2-container.select2-drop-above .select2-choice {
    border-bottom-color: #aaa;

    border-radius: 0 0 4px 4px;

    background-image: -webkit-gradient(linear, left bottom, left top, color-stop(0, #eee), color-stop(0.9, #fff));
    background-image: -webkit-linear-gradient(center bottom, #eee 0%, #fff 90%);
    background-image: -moz-linear-gradient(center bottom, #eee 0%, #fff 90%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#eeeeee', GradientType=0);
    background-image: linear-gradient(top, #eee 0%, #fff 90%);
}

.select2-container.select2-allowclear .select2-choice .select2-chosen {
    margin-right: 42px;
}

.select2-container .select2-choice > .select2-chosen {
    margin-right: 26px;
    display: block;
    overflow: hidden;

    white-space: nowrap;

    text-overflow: ellipsis;
}

.select2-container .select2-choice abbr {
    display: none;
    width: 12px;
    height: 12px;
    position: absolute;
    right: 24px;
    top: 8px;

    font-size: 1px;
    text-decoration: none;

    border: 0;
    background: url("/assets/select2/select2.2ca61b76e220.png?d6b5d8d83dbc") right top no-repeat;
    cursor: pointer;
    outline: 0;
}

.select2-container.select2-allowclear .select2-choice abbr {
    display: inline-block;
}

.select2-container .select2-choice abbr:hover {
    background-position: right -11px;
    cursor: pointer;
}

.select2-drop-mask {
    border: 0;
    margin: 0;
    padding: 0;
    position: fixed;
    left: 0;
    top: 0;
    min-height: 100%;
    min-width: 100%;
    height: auto;
    width: auto;
    opacity: 0;
    z-index: 9998;
    /* styles required for IE to work */
    background-color: #fff;
    filter: alpha(opacity=0);
}

.select2-drop {
    width: 100%;
    margin-top: -1px;
    position: absolute;
    z-index: 9999;
    top: 100%;

    background: #fff;
    color: #000;
    border: 1px solid #aaa;
    border-top: 0;

    border-radius: 0 0 4px 4px;

    -webkit-box-shadow: 0 4px 5px rgba(0, 0, 0, .15);
            box-shadow: 0 4px 5px rgba(0, 0, 0, .15);
}

.select2-drop-auto-width {
    border-top: 1px solid #aaa;
    width: auto;
}

.select2-drop-auto-width .select2-search {
    padding-top: 4px;
}

.select2-drop.select2-drop-above {
    margin-top: 1px;
    border-top: 1px solid #aaa;
    border-bottom: 0;

    border-radius: 4px 4px 0 0;

    -webkit-box-shadow: 0 -4px 5px rgba(0, 0, 0, .15);
            box-shadow: 0 -4px 5px rgba(0, 0, 0, .15);
}

.select2-drop-active {
    border: 1px solid #5897fb;
    border-top: none;
}

.select2-drop.select2-drop-above.select2-drop-active {
    border-top: 1px solid #5897fb;
}

.select2-container .select2-choice .select2-arrow {
    display: inline-block;
    width: 18px;
    height: 100%;
    position: absolute;
    right: 0;
    top: 0;

    border-left: 1px solid #aaa;
    border-radius: 0 4px 4px 0;

    background-clip: padding-box;

    background: #ccc;
    background-image: -webkit-gradient(linear, left bottom, left top, color-stop(0, #ccc), color-stop(0.6, #eee));
    background-image: -webkit-linear-gradient(center bottom, #ccc 0%, #eee 60%);
    background-image: -moz-linear-gradient(center bottom, #ccc 0%, #eee 60%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr = '#eeeeee', endColorstr = '#cccccc', GradientType = 0);
    background-image: linear-gradient(top, #ccc 0%, #eee 60%);
}

.select2-container .select2-choice .select2-arrow b {
    display: block;
    width: 100%;
    height: 100%;
    background: url("/assets/select2/select2.2ca61b76e220.png?d6b5d8d83dbc") no-repeat 0 1px;
}

.select2-search {
    display: inline-block;
    width: 100%;
    min-height: 26px;
    margin: 0;
    padding-left: 4px;
    padding-right: 4px;

    position: relative;
    z-index: 10000;

    white-space: nowrap;
}

.select2-search input {
    width: 100%;
    height: auto !important;
    min-height: 26px;
    padding: 4px 20px 4px 5px;
    margin: 0;

    outline: 0;
    font-family: sans-serif;
    font-size: 1em;

    border: 1px solid #aaa;
    border-radius: 0;

    -webkit-box-shadow: none;
            box-shadow: none;

    background: #fff url("/assets/select2/select2.2ca61b76e220.png?d6b5d8d83dbc") no-repeat 100% -22px;
    background: url("/assets/select2/select2.2ca61b76e220.png?d6b5d8d83dbc") no-repeat 100% -22px, -webkit-gradient(linear, left bottom, left top, color-stop(0.85, #fff), color-stop(0.99, #eee));
    background: url("/assets/select2/select2.2ca61b76e220.png?d6b5d8d83dbc") no-repeat 100% -22px, -webkit-linear-gradient(center bottom, #fff 85%, #eee 99%);
    background: url("/assets/select2/select2.2ca61b76e220.png?d6b5d8d83dbc") no-repeat 100% -22px, -moz-linear-gradient(center bottom, #fff 85%, #eee 99%);
    background: url("/assets/select2/select2.2ca61b76e220.png?d6b5d8d83dbc") no-repeat 100% -22px, linear-gradient(top, #fff 85%, #eee 99%);
}

.select2-drop.select2-drop-above .select2-search input {
    margin-top: 4px;
}

.select2-search input.select2-active {
    background: #fff url("/assets/select2/select2-spinner.7b9776076d5f.gif?f6ecff617ec2") no-repeat 100%;
    background: url("/assets/select2/select2-spinner.7b9776076d5f.gif?f6ecff617ec2") no-repeat 100%, -webkit-gradient(linear, left bottom, left top, color-stop(0.85, #fff), color-stop(0.99, #eee));
    background: url("/assets/select2/select2-spinner.7b9776076d5f.gif?f6ecff617ec2") no-repeat 100%, -webkit-linear-gradient(center bottom, #fff 85%, #eee 99%);
    background: url("/assets/select2/select2-spinner.7b9776076d5f.gif?f6ecff617ec2") no-repeat 100%, -moz-linear-gradient(center bottom, #fff 85%, #eee 99%);
    background: url("/assets/select2/select2-spinner.7b9776076d5f.gif?f6ecff617ec2") no-repeat 100%, linear-gradient(top, #fff 85%, #eee 99%);
}

.select2-container-active .select2-choice,
.select2-container-active .select2-choices {
    border: 1px solid #5897fb;
    outline: none;

    -webkit-box-shadow: 0 0 5px rgba(0, 0, 0, .3);
            box-shadow: 0 0 5px rgba(0, 0, 0, .3);
}

.select2-dropdown-open .select2-choice {
    border-bottom-color: transparent;
    -webkit-box-shadow: 0 1px 0 #fff inset;
            box-shadow: 0 1px 0 #fff inset;

    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;

    background-color: #eee;
    background-image: -webkit-gradient(linear, left bottom, left top, color-stop(0, #fff), color-stop(0.5, #eee));
    background-image: -webkit-linear-gradient(center bottom, #fff 0%, #eee 50%);
    background-image: -moz-linear-gradient(center bottom, #fff 0%, #eee 50%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#eeeeee', endColorstr='#ffffff', GradientType=0);
    background-image: linear-gradient(top, #fff 0%, #eee 50%);
}

.select2-dropdown-open.select2-drop-above .select2-choice,
.select2-dropdown-open.select2-drop-above .select2-choices {
    border: 1px solid #5897fb;
    border-top-color: transparent;

    background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0, #fff), color-stop(0.5, #eee));
    background-image: -webkit-linear-gradient(center top, #fff 0%, #eee 50%);
    background-image: -moz-linear-gradient(center top, #fff 0%, #eee 50%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#eeeeee', endColorstr='#ffffff', GradientType=0);
    background-image: linear-gradient(bottom, #fff 0%, #eee 50%);
}

.select2-dropdown-open .select2-choice .select2-arrow {
    background: transparent;
    border-left: none;
    filter: none;
}
.select2-dropdown-open .select2-choice .select2-arrow b {
    background-position: -18px 1px;
}

/* results */
.select2-results {
    max-height: 200px;
    padding: 0 0 0 4px;
    margin: 4px 4px 4px 0;
    position: relative;
    overflow-x: hidden;
    overflow-y: auto;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

.select2-results ul.select2-result-sub {
    margin: 0;
    padding-left: 0;
}

.select2-results ul.select2-result-sub > li .select2-result-label { padding-left: 20px }
.select2-results ul.select2-result-sub ul.select2-result-sub > li .select2-result-label { padding-left: 40px }
.select2-results ul.select2-result-sub ul.select2-result-sub ul.select2-result-sub > li .select2-result-label { padding-left: 60px }
.select2-results ul.select2-result-sub ul.select2-result-sub ul.select2-result-sub ul.select2-result-sub > li .select2-result-label { padding-left: 80px }
.select2-results ul.select2-result-sub ul.select2-result-sub ul.select2-result-sub ul.select2-result-sub ul.select2-result-sub > li .select2-result-label { padding-left: 100px }
.select2-results ul.select2-result-sub ul.select2-result-sub ul.select2-result-sub ul.select2-result-sub ul.select2-result-sub ul.select2-result-sub > li .select2-result-label { padding-left: 110px }
.select2-results ul.select2-result-sub ul.select2-result-sub ul.select2-result-sub ul.select2-result-sub ul.select2-result-sub ul.select2-result-sub ul.select2-result-sub > li .select2-result-label { padding-left: 120px }

.select2-results li {
    list-style: none;
    display: list-item;
    background-image: none;
}

.select2-results li.select2-result-with-children > .select2-result-label {
    font-weight: bold;
}

.select2-results .select2-result-label {
    padding: 3px 7px 4px;
    margin: 0;
    cursor: pointer;

    min-height: 1em;

    -webkit-touch-callout: none;
      -webkit-user-select: none;
         -moz-user-select: none;
          -ms-user-select: none;
              user-select: none;
}

.select2-results .select2-highlighted {
    background: #3875d7;
    color: #fff;
}

.select2-results li em {
    background: #feffde;
    font-style: normal;
}

.select2-results .select2-highlighted em {
    background: transparent;
}

.select2-results .select2-highlighted ul {
    background: #fff;
    color: #000;
}


.select2-results .select2-no-results,
.select2-results .select2-searching,
.select2-results .select2-selection-limit {
    background: #f4f4f4;
    display: list-item;
}

/*
disabled look for disabled choices in the results dropdown
*/
.select2-results .select2-disabled.select2-highlighted {
    color: #666;
    background: #f4f4f4;
    display: list-item;
    cursor: default;
}
.select2-results .select2-disabled {
  background: #f4f4f4;
  display: list-item;
  cursor: default;
}

.select2-results .select2-selected {
    display: none;
}

.select2-more-results.select2-active {
    background: #f4f4f4 url("/assets/select2/select2-spinner.7b9776076d5f.gif?f6ecff617ec2") no-repeat 100%;
}

.select2-more-results {
    background: #f4f4f4;
    display: list-item;
}

/* disabled styles */

.select2-container.select2-container-disabled .select2-choice {
    background-color: #f4f4f4;
    background-image: none;
    border: 1px solid #ddd;
    cursor: default;
}

.select2-container.select2-container-disabled .select2-choice .select2-arrow {
    background-color: #f4f4f4;
    background-image: none;
    border-left: 0;
}

.select2-container.select2-container-disabled .select2-choice abbr {
    display: none;
}


/* multiselect */

.select2-container-multi .select2-choices {
    height: auto !important;
    height: 1%;
    margin: 0;
    padding: 0;
    position: relative;

    border: 1px solid #aaa;
    cursor: text;
    overflow: hidden;

    background-color: #fff;
    background-image: -webkit-gradient(linear, 0% 0%, 0% 100%, color-stop(1%, #eee), color-stop(15%, #fff));
    background-image: -webkit-linear-gradient(top, #eee 1%, #fff 15%);
    background-image: -moz-linear-gradient(top, #eee 1%, #fff 15%);
    background-image: linear-gradient(top, #eee 1%, #fff 15%);
}

.select2-locked {
  padding: 3px 5px 3px 5px !important;
}

.select2-container-multi .select2-choices {
    min-height: 26px;
}

.select2-container-multi.select2-container-active .select2-choices {
    border: 1px solid #5897fb;
    outline: none;

    -webkit-box-shadow: 0 0 5px rgba(0, 0, 0, .3);
            box-shadow: 0 0 5px rgba(0, 0, 0, .3);
}
.select2-container-multi .select2-choices li {
    float: left;
    list-style: none;
}
.select2-container-multi .select2-choices .select2-search-field {
    margin: 0;
    padding: 0;
    white-space: nowrap;
}

.select2-container-multi .select2-choices .select2-search-field input {
    padding: 5px;
    margin: 1px 0;

    font-family: sans-serif;
    font-size: 100%;
    color: #666;
    outline: 0;
    border: 0;
    -webkit-box-shadow: none;
            box-shadow: none;
    background: transparent !important;
}

.select2-container-multi .select2-choices .select2-search-field input.select2-active {
    background: #fff url("/assets/select2/select2-spinner.7b9776076d5f.gif?f6ecff617ec2") no-repeat 100% !important;
}

.select2-default {
    color: #999 !important;
}

.select2-container-multi .select2-choices .select2-search-choice {
    padding: 3px 5px 3px 18px;
    margin: 3px 0 3px 5px;
    position: relative;

    line-height: 13px;
    color: #333;
    cursor: default;
    border: 1px solid #aaaaaa;

    border-radius: 3px;

    -webkit-box-shadow: 0 0 2px #fff inset, 0 1px 0 rgba(0, 0, 0, 0.05);
            box-shadow: 0 0 2px #fff inset, 0 1px 0 rgba(0, 0, 0, 0.05);

    background-clip: padding-box;

    -webkit-touch-callout: none;
      -webkit-user-select: none;
         -moz-user-select: none;
          -ms-user-select: none;
              user-select: none;

    background-color: #e4e4e4;
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#eeeeee', endColorstr='#f4f4f4', GradientType=0);
    background-image: -webkit-gradient(linear, 0% 0%, 0% 100%, color-stop(20%, #f4f4f4), color-stop(50%, #f0f0f0), color-stop(52%, #e8e8e8), color-stop(100%, #eee));
    background-image: -webkit-linear-gradient(top, #f4f4f4 20%, #f0f0f0 50%, #e8e8e8 52%, #eee 100%);
    background-image: -moz-linear-gradient(top, #f4f4f4 20%, #f0f0f0 50%, #e8e8e8 52%, #eee 100%);
    background-image: linear-gradient(top, #f4f4f4 20%, #f0f0f0 50%, #e8e8e8 52%, #eee 100%);
}
.select2-container-multi .select2-choices .select2-search-choice .select2-chosen {
    cursor: default;
}
.select2-container-multi .select2-choices .select2-search-choice-focus {
    background: #d4d4d4;
}

.select2-search-choice-close {
    display: block;
    width: 12px;
    height: 13px;
    position: absolute;
    right: 3px;
    top: 4px;

    font-size: 1px;
    outline: none;
    background: url("/assets/select2/select2.2ca61b76e220.png?d6b5d8d83dbc") right top no-repeat;
}

.select2-container-multi .select2-search-choice-close {
    left: 3px;
}

.select2-container-multi .select2-choices .select2-search-choice .select2-search-choice-close:hover {
  background-position: right -11px;
}
.select2-container-multi .select2-choices .select2-search-choice-focus .select2-search-choice-close {
    background-position: right -11px;
}

/* disabled styles */
.select2-container-multi.select2-container-disabled .select2-choices {
    background-color: #f4f4f4;
    background-image: none;
    border: 1px solid #ddd;
    cursor: default;
}

.select2-container-multi.select2-container-disabled .select2-choices .select2-search-choice {
    padding: 3px 5px 3px 5px;
    border: 1px solid #ddd;
    background-image: none;
    background-color: #f4f4f4;
}

.select2-container-multi.select2-container-disabled .select2-choices .select2-search-choice .select2-search-choice-close {    display: none;
    background: none;
}
/* end multiselect */


.select2-result-selectable .select2-match,
.select2-result-unselectable .select2-match {
    text-decoration: underline;
}

.select2-offscreen, .select2-offscreen:focus {
    clip: rect(0 0 0 0) !important;
    width: 1px !important;
    height: 1px !important;
    border: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
    overflow: hidden !important;
    position: absolute !important;
    outline: 0 !important;
    left: 0px !important;
    top: 0px !important;
}

.select2-display-none {
    display: none;
}

.select2-measure-scrollbar {
    position: absolute;
    top: -10000px;
    left: -10000px;
    width: 100px;
    height: 100px;
    overflow: scroll;
}
/* Retina-ize icons */

@media only screen and (-webkit-min-device-pixel-ratio: 1.5), only screen and (min-resolution: 144dpi)  {
  .select2-search input, .select2-search-choice-close, .select2-container .select2-choice abbr, .select2-container .select2-choice .select2-arrow b {
      background-image: url("/assets/select2/select2x2.49e3f0060186.png?6fe28d687dc0") !important;
      background-repeat: no-repeat !important;
      background-size: 60px 40px !important;
  }
  .select2-search input {
      background-position: 100% -21px !important;
  }
}

@charset "utf-8";

html, body {
    min-height: 100%;
    -webkit-text-size-adjust: 100%;
}
body {
    margin: 0px;
    padding: 0px;
    background: #f8f8f8;
    font-family: Roboto, Helvetica, Arial, sans-serif;
    font-size: 16px;
    line-height: 24px;
    color: #333;
    font-weight: 400;
}


/* Boxes */
*, input { -webkit-box-sizing: border-box; -moz-box-sizing: border-box; box-sizing: border-box; }


/* Scaffolding */
section { width: 100%; }
.frame { max-width: 1250px; padding: 0 25px; margin: 0 auto; }
.clearfix:after { content: " "; visibility: hidden; display: block; height: 0; clear: both; }
.col { float: left; margin: 0 1.041666666667%; }
.col-1of24 { width: 2.083333333333%; }
.col-2of24 { width: 6.25%; }
.col-3of24 { width: 10.416666666667%; }
.col-4of24 { width: 14.583333333333%; }
.col-5of24 { width: 18.75%; }
.col-6of24 { width: 22.916666666667%; }
.col-7of24 { width: 27.083333333333%; }
.col-8of24 { width: 31.25%; }
.col-9of24 { width: 35.416666666667%; }
.col-10of24 { width: 39.583333333333%; }
.col-11of24 { width: 43.75%; }
.col-12of24 { width: 47.916666666667%; }
.col-13of24 { width: 52.083333333333%; }
.col-14of24 { width: 56.25%; }
.col-15of24 { width: 60.416666666667%; }
.col-16of24 { width: 64.583333333333%; }
.col-17of24 { width: 68.75%; }
.col-18of24 { width: 72.916666666667%; }
.col-19of24 { width: 77.083333333333%; }
.col-20of24 { width: 81.25%; }
.col-21of24 { width: 85.416666666667%; }
.col-22of24 { width: 89.583333333333%; }
.col-23of24 { width: 93.75%; }
.col-24of24 { width: 97.916666666667%; }

.frame-950 { max-width: 962px; padding: 0 25px; margin: 0 auto; }
.frame-950 .col { float: left; margin-left: 1.3706140350877%; margin-right: 1.3706140350877%; }
.frame-950 .col-1of24 { width: 1.4254385964912%; }
.frame-950 .col-2of24 { width: 5.5921052631579%; }
.frame-950 .col-3of24 { width: 9.7587719298246%; }
.frame-950 .col-4of24 { width: 13.9254385964912%; }
.frame-950 .col-5of24 { width: 18.0921052631579%; }
.frame-950 .col-6of24 { width: 22.2587719298246%; }
.frame-950 .col-8of24 { width: 30.5921052631579%; }
.frame-950 .col-10of24 { width: 38.9254385964912%; }
.frame-950 .col-12of24 { width: 47.2587719298246%; }
.frame-950 .col-16of24 { width: 63.9254385964912%; }
.frame-950 .col-20of24 { width: 80.5921052631579%; }

.slice { float: left; margin: 0; }
.slice-4of24 { width: 16.666666666666667% }
.slice-6of24 { width: 25%; }
.slice-8of24 { width: 33.333333333333%; }
.slice-12of24 { width: 50%; }
.slice-16of24 { width: 66.666666666666%; }
.slice-18of24 { width: 75%; }
.slice-20of24 { width: 83.3333333333333% }
.slice-24of24 { width: 100%; }

.flex {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
}
.flex-column { flex-direction: column; }
.flex-stretch { align-items: stretch; }
.flex-center { align-items: center; }
.justify-center { justify-content: center; }
.justify-beteween { justify-content: space-between; }

.flex-1 { flex: 1; }
.flex-2 { flex: 2; }
.flex-3 { flex: 3; }

/* Spacing */
.flush { margin-top: 0; margin-bottom: 0; padding-top: 0; padding-bottom: 0;}
.flush-top { margin-top: 0; padding-top: 0; }
.flush-bottom { margin-bottom: 0; padding-bottom: 0; }

.margin-auto { margin-left: auto; margin-right: auto; }

.margin-top-5 { margin-top: 5px; }
.margin-top-10 { margin-top: 10px; }
.margin-top-15 { margin-top: 15px; }
.margin-top-20 { margin-top: 20px; }
.margin-top-25 { margin-top: 25px; }
.margin-top-30 { margin-top: 30px; }
.margin-top-35 { margin-top: 35px; }
.margin-top-40 { margin-top: 40px; }
.margin-top-50 { margin-top: 50px; }
.margin-top-80 { margin-top: 80px; }
.margin-top-100 { margin-top: 100px; }
.margin-top-125 { margin-top: 125px; }
.margin-top-150 { margin-top: 150px; }
.margin-bottom-1 { margin-bottom: 1px; }
.margin-bottom-2 { margin-bottom: 2px; }
.margin-bottom-4 { margin-bottom: 4px; }
.margin-bottom-5 { margin-bottom: 5px; }
.margin-bottom-8 { margin-bottom: 8px; }
.margin-bottom-10 { margin-bottom: 10px; }
.margin-bottom-15 { margin-bottom: 15px; }
.margin-bottom-20 { margin-bottom: 20px; }
.margin-bottom-25 { margin-bottom: 25px; }
.margin-bottom-30 { margin-bottom: 30px; }
.margin-bottom-35 { margin-bottom: 35px; }
.margin-bottom-40 { margin-bottom: 40px; }
.margin-bottom-50 { margin-bottom: 50px; }
.margin-bottom-55 { margin-bottom: 55px; }
.margin-bottom-75 { margin-bottom: 75px; }
.margin-bottom-100 { margin-bottom: 100px; }
.margin-right-3 { margin-right: 3px; }
.margin-right-4 { margin-right: 4px; }
.margin-right-5 { margin-right: 5px; }
.margin-right-10 { margin-right: 10px; }
.margin-right-12 { margin-right: 12px; }
.margin-right-15 { margin-right: 15px; }
.margin-right-20 { margin-right: 20px; }
.margin-right-25 { margin-right: 25px; }
.margin-right-30 { margin-right: 30px; }
.margin-right-50 { margin-right: 50px; }
.margin-left-5 {margin-left: 5px; }
.margin-left-8 {margin-left: 8px; }
.margin-left-25 {margin-left: 25px !important; }
.margin-left-32 {margin-left: 32px; }
.margin-left-36 {margin-left: 36px; }
.margin-left-50 {margin-left: 50px; }

.margin-sides-4 { margin-left: 4px; margin-right: 4px; }

.padding-5 { padding: 5px; }
.padding-10 { padding: 10px; }
.padding-15 { padding: 15px; }
.padding-20 { padding: 20px; }
.padding-25 { padding: 25px; }
.padding-30 { padding: 30px; }
.padding-35 { padding: 35px; }
.padding-40 { padding: 40px; }
.padding-50 { padding: 50px; }
.padding-75 { padding: 75px; }
.padding-80 { padding: 80px; }
.padding-100 { padding: 100px; }
.padding-150 { padding: 150px; }
.padding-top-0 { padding-top: 0px; }
.padding-top-5 { padding-top: 5px; }
.padding-top-10 { padding-top: 10px; }
.padding-top-12 { padding-top: 12px; }
.padding-top-13 { padding-top: 13px; }
.padding-top-15 { padding-top: 15px; }
.padding-top-20 { padding-top: 20px; }
.padding-top-25 { padding-top: 25px; }
.padding-top-30 { padding-top: 30px; }
.padding-top-35 { padding-top: 35px; }
.padding-top-40 { padding-top: 40px; }
.padding-top-45 { padding-top: 45px; }
.padding-top-50 { padding-top: 50px; }
.padding-top-55 { padding-top: 55px; }
.padding-top-60 { padding-top: 60px; }
.padding-top-75 { padding-top: 75px; }
.padding-top-80 { padding-top: 80px; }
.padding-top-90 { padding-top: 90px; }
.padding-top-100 { padding-top: 100px; }
.padding-top-150 { padding-top: 150px; }
.padding-top-175 { padding-top: 175px; }
.padding-top-200 { padding-top: 200px; }
.padding-top-225 { padding-top: 225px; }
.padding-top-250 { padding-top: 250px; }
.padding-top-275 { padding-top: 275px; }
.padding-top-300 { padding-top: 300px; }
.padding-bottom-0 { padding-bottom: 0px; }
.padding-bottom-5 { padding-bottom: 5px; }
.padding-bottom-10 { padding-bottom: 10px; }
.padding-bottom-12 { padding-bottom: 12px; }
.padding-bottom-15 { padding-bottom: 15px; }
.padding-bottom-20 { padding-bottom: 20px; }
.padding-bottom-25 { padding-bottom: 25px; }
.padding-bottom-30 { padding-bottom: 30px; }
.padding-bottom-35 { padding-bottom: 35px; }
.padding-bottom-40 { padding-bottom: 40px; }
.padding-bottom-50 { padding-bottom: 50px; }
.padding-bottom-60 { padding-bottom: 60px; }
.padding-bottom-75 { padding-bottom: 75px; }
.padding-bottom-80 { padding-bottom: 90px; }
.padding-bottom-90 { padding-bottom: 90px; }
.padding-bottom-100 { padding-bottom: 100px; }
.padding-bottom-125 { padding-bottom: 125px; }
.padding-bottom-150 { padding-bottom: 150px; }
.padding-bottom-175 { padding-bottom: 175px; }
.padding-bottom-200 { padding-bottom: 200px; }
.padding-bottom-225 { padding-bottom: 225px; }
.padding-bottom-250 { padding-bottom: 250px; }
.padding-bottom-350 { padding-bottom: 350px; }
.padding-left-10 { padding-left: 10px; }
.padding-left-20 { padding-left: 20px; }
.padding-left-25 { padding-left: 25px; }
.padding-left-40 { padding-left: 40px; }
.padding-left-50 { padding-left: 50px; }
.padding-left-0 { padding-left: 0px; }
.padding-right-10 { padding-right: 10px; }
.padding-right-20 { padding-right: 20px; }
.padding-right-25 { padding-right: 25px; }
.padding-right-40 { padding-right: 40px; }
.padding-right-50 { padding-right: 50px; }
.padding-sides-40 { padding-left: 40px; padding-right: 40px; }

.padding-6x4 { padding-bottom: 66%; }
.padding-16x9 { padding-bottom: 56.25%; }
.padding-4x4 { padding-bottom: 100%; }

.width-15 { width: 15px; }
.width-20 { width: 20px; }
.width-25 { width: 25px; }


/* Positioning */
.float-left { float: left; }
.float-right { float: right; }
.position-relative { position: relative; }


/* Anchoring */
a.anchor { display: block; position: relative; top: -65px; }


/* Backgrounds */
.bg-white { background-color: #fff; }
.bg-light-grey { background-color: #f8f8f8; }
.bg-grey { background-color: #f5f5f5; }
.bg-med-grey { background-color: #e6e6e6; }
.bg-dark-grey { background-color: #333; }
.bg-color { background-color: #da0; }
.bg-compliment { background-color: #00bfaf; }
.bg-yellow { background-color: #da0; }
.bg-darken-barely { background-color: rgba(0,0,0,.02); }
.bg-darken-slight { background-color: rgba(0,0,0,.04); }
.bg-darken-light { background-color: rgba(0,0,0,.2); }
.bg-darken { background-color: rgba(0,0,0,.32); }
.bg-darken-medium { background-color: rgba(0,0,0,.32); }
.bg-darken-dark { background-color: rgba(0,0,0,.54); }
.bg-darken-very-dark { background-color: rgba(0,0,0,.72); }
.bg-none { background-color: none; background-image: none; }

.bg-cover {
    background-repeat: no-repeat;
    background-position: 50% 50%;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
}
.bg-attach {
    background-attachment: fixed;
}
.bg-woman-1 { background-image: url("/assets/img/v4/bg-woman-1.e312b4350791.jpg?703fc7e8822f"); }
.bg-woman-2 { background-image: url("/assets/img/v4/bg-woman-2.17daf8538464.jpg?0af43e982445"); }
.bg-woman-3 { background-image: url("/assets/img/v4/bg-woman-3.e8592c35bc51.jpg?8671db4e9559"); }
.bg-woman-4 { background-image: url("/assets/img/v4/bg-woman-4.8b3ab5ac79b3.jpg?74b78e56c877"); }
.bg-woman-5 { background-image: url("/assets/img/v4/bg-woman-5.8187eafeceff.jpg?aa5235e489c7"); }
.bg-woman-6 { background-image: url("/assets/img/v4/bg-woman-6.336e78a46a41.jpg?cf813222f211"); }
.bg-woman-7 { background-image: url("/assets/img/v4/bg-woman-7.1243312f108f.jpg?d704a3705a06"); }
.bg-woman-8 { background-image: url("/assets/img/v4/bg-woman-8.a86f852748d1.jpg?62e30aa06901"); }
.bg-woman-9 { background-image: url("/assets/img/v4/bg-woman-9.944ad5cd5356.jpg?bb1a08aaa5f1"); }
.bg-woman-10 { background-image: url("/assets/img/v4/bg-woman-10.490b16c59dc2.jpg?48d9938e33c0"); }
.bg-woman-11 { background-image: url("/assets/img/v4/bg-woman-11.261f5d2bcb4b.jpg?107ee4647c82"); }

.bg-woman-city { background-image: url("/assets/img/v4/bg-woman-city.53329e34fec8.jpg?ae0d7378032f"); }

.bg-office-1 { background-image: url("/assets/img/v4/bg-office-1.544158144040.jpg?8f57be61ac2c"); }
.bg-office-2 { background-image: url("/assets/img/v4/bg-office-2.2c363df7df73.jpg?cdf4870f7638"); }
.bg-office-3 { background-image: url("/assets/img/v4/bg-office-3.fa7489d7620f.jpg?cc72c0c2fde3"); }
.bg-office-4 { background-image: url("/assets/img/v4/bg-office-4.72b2d1fcc71c.jpg?25442c577b33"); }
.bg-office-5 { background-image: url("/assets/img/v4/bg-office-5.226f1905bc9b.jpg?e20693a2d357"); }
.bg-office-6 { background-image: url("https://ucare.inhersight.com/277ce0d6-91b4-4482-a889-9cd00f179379/-/progressive/yes/"); }

.bg-company { background-image: url("/assets/img/v4/bg-desk.120d64185b02.jpg?e89ae21fe9b4"); }

.bg-gradient {
    background-image: -ms-linear-gradient(top left, #3F2E99 0%, #CC518F 100%);
    background-image: -moz-linear-gradient(top left, #3F2E99 0%, #CC518F 100%);
    background-image: -o-linear-gradient(top left, #3F2E99 0%, #CC518F 100%);
    background-image: -webkit-gradient(linear, left top, right bottom, color-stop(0, #3F2E99), color-stop(100, #CC518F));
    background-image: -webkit-linear-gradient(top left, #3F2E99 0%, #CC518F 100%);
    background-image: linear-gradient(to bottom right, #3F2E99 0%, #CC518F 100%);
}

.bg-fade-down {
    background-image: -ms-linear-gradient(top, #f8f8f8 0%, #FFFFFF 100%);
    background-image: -moz-linear-gradient(top, #f8f8f8 0%, #FFFFFF 100%);
    background-image: -o-linear-gradient(top, #f8f8f8 0%, #FFFFFF 100%);
    background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0, #f8f8f8), color-stop(100, #FFFFFF));
    background-image: -webkit-linear-gradient(top, #f8f8f8 0%, #FFFFFF 100%);
    background-image: linear-gradient(to bottom, #f8f8f8 0%, #FFFFFF 100%);
}


/* Borders */
.border { border: 1px solid #e6e6e6; }
.border-none { border: none; }
.border-top { border-top: 1px solid #e6e6e6; }
.border-bottom { border-bottom: 1px solid #e6e6e6; }
.border-right { border-right: 1px solid #e6e6e6; }
.border-left { border-left: 1px solid #e6e6e6; }
.border-right { border-right: 1px solid #e6e6e6; }

.dotted { border: 1px dotted #e6e6e6; }
.dotted-top { border-top: 1px dotted #e6e6e6; }
.dotted-bottom { border-bottom: 1px dotted #e6e6e6; }
.dotted-left { border-left: 1px dotted #e6e6e6; }
.dotted-right { border-right: 1px dotted #e6e6e6; }

.round { border-radius: 4px; }
.round-bottom { border-radius: 0px 0px 4px 4px; }
.round-top { border-radius: 4px 4px 0px 0px; }
.round-left { border-radius: 4px 0px 0px 4px; }

.round-small { border-radius: 2px; }
.round-medium { border-radius: 8px; }

hr { border: 0; height: 0; }

.arrow-down {
  width: 0; 
  height: 0; 
  border-left: 20px solid transparent;
  border-right: 20px solid transparent;
  border-top: 20px solid #fff;
}


/* Typography */
h1, .size-h1 { font-size: 50px; line-height: 57px; }
h2, .size-h2 { font-size: 25px; line-height: 40px; }
h3, .size-h3 { font-size: 18px; line-height: 25px; }

.size-mini { font-size: 11px; line-height: 20px; }
.size-12 { font-size: 12px; line-height: 18px; }
.size-small { font-size: 13px; line-height: 20px; }
.size-normal { font-size: 16px; line-height: 25px; }
.size-medium { font-size: 17px; line-height: 25px; }
.size-20 { font-size: 20px; line-height: 28px; }
.size-24 { font-size: 24px; line-height: 32px; }
.size-30 { font-size: 30px; line-height: 38px; }
.size-32 { font-size: 32px; line-height: 40px; }
.size-36 { font-size: 36px; line-height: 44px; }
.size-40 { font-size: 20px; line-height: 30px; }
.size-40-v2 { font-size: 40px; line-height: 48px; }
.size-48 { font-size: 48px; line-height: 54px; }
.size-52 { font-size: 52px; line-height: 56px; }

.line-height-1 { line-height: 1em; }

.uppercase { text-transform: uppercase; letter-spacing: .1em; }
.not-uppercase { text-transform: none; letter-spacing: normal; }

.weight-light { font-weight: 300; }
.weight-normal { font-weight: 400; }
.weight-medium { font-weight: 500; }
.weight-bold { font-weight: 700; }
.weight-heavy { font-weight: 900; }

.divider-small { margin: 0 5px; }
.divider-medium { margin: 0 10px; }

.fancy { font-family: 'Roboto Slab'; }
    
.super-fancy { font-family: 'Playfair Display', serif; }

.nowrap { white-space: nowrap; }
.force-wrap {
   white-space: pre-wrap;      /* CSS3 */   
   white-space: -moz-pre-wrap; /* Firefox */    
   white-space: -pre-wrap;     /* Opera <7 */   
   white-space: -o-pre-wrap;   /* Opera 7 */    
   word-wrap: break-word;      /* IE */
}

.pill { display: inline-block; padding: 4px 10px; border-radius: 4px; }

.chiclet { display: inline-block; border-radius: 100px; font-size: 10px; line-height: 10px; padding: 4px 8px; vertical-align: text-bottom; }

.tag-link { display: inline-block; border-radius: 100px; padding: 4px 12px; color: #999; border: 1px solid #e6e6e6;}
.tag-link:hover { color: #808080; border-color: #ccc;}

.paragraph-flush p:first-child { margin-top: 0px; padding-top: 0px; }
.paragraph-flush p:last-child { margin-bottom: 0px; padding-bottom: 0px; }


/* Horizontal Rules */
.short-stop { margin-left: auto; margin-right: auto; padding: 0px; border: 0px; height: 0px; width: 60px; border-bottom: 4px solid #da0; }
.thin-short-stop { margin-left: auto; margin-right: auto; padding: 0px; border: 0px; height: 0px; width: 50px; border-bottom: 3px solid #da0; }
.grey-stop { border-color: #d9d9d9; }


/* Articles */
article p, article blockquote, article ul { font-size: 17px; line-height: 30px; }
article blockquote { margin-left: 0px; margin-right: 0px; padding: 25px; background: #f7f7f7; border-left: 5px solid #d9d9d9; }
article p, article ul, article ul li { margin-top: .5em; margin-bottom: 1.5em; }
article h2, article h3 { margin-top: 1.25em; margin-bottom: .5em; }


/* Lists */
ul, ol { margin: 1em 0 1em 1.2em; padding: 0; }
ul.unstyled { margin-left: 0px; padding-left: 0px; list-style: none; }

.breadcrumbs {
    list-style: none;
    margin: 0px;
    padding: 0px;
}
.breadcrumbs li {
    display: inline;
}


/* Text Colors */
.color-color { color: #da0; }
.color-second { color: #CC518F; }
.color-dark { color: #333; }
.color-white { color: #fff; }
.color-muted { color: #999; }
.color-light { color: #ddd; }


/* Shadows */
.shadow-large { text-shadow: 0px 0px 25px rgba(0,0,0,.25); }
.shadow-medium { text-shadow: 0px 0px 15px rgba(0,0,0,.25); }

.box-shadow-1 {
    -webkit-box-shadow: 0px 0px 0px 1px rgba(0,0,0,0.1);
    -moz-box-shadow: 0px 0px 0px 1px rgba(0,0,0,0.1);
    box-shadow: 0px 0px 0px 1px rgba(0,0,0,0.1);
}
.box-shadow-slight {
    -webkit-box-shadow: 0px 0px 50px 0px rgba(0,0,0,0.025);
    -moz-box-shadow: 0px 0px 50px 0px rgba(0,0,0,0.025);
    box-shadow: 0px 0px 50px 0px rgba(0,0,0,0.025);
}
.box-shadow-small {
    -webkit-box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.05);
    -moz-box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.05);
    box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.05);
}
.box-shadow-medium {
    -webkit-box-shadow: 0px 0px 20px 0px rgba(0,0,0,0.05);
    -moz-box-shadow: 0px 0px 20px 0px rgba(0,0,0,0.05);
    box-shadow: 0px 0px 20px 0px rgba(0,0,0,0.05);
}
.box-shadow-complex {
    -webkit-box-shadow: 0px 0px 0px 1px rgba(0,0,0,0.075), 0px 0px 20px 0px rgba(0,0,0,0.05);
    -moz-box-shadow: 0px 0px 0px 1px rgba(0,0,0,0.075), 0px 0px 20px 0px rgba(0,0,0,0.05);
    box-shadow: 0px 0px 0px 1px rgba(0,0,0,0.075), 0px 0px 20px 0px rgba(0,0,0,0.05);
}
.box-shadow-large {
    -webkit-box-shadow: 0px 0px 50px 0px rgba(0,0,0,0.05);
    -moz-box-shadow: 0px 0px 50px 0px rgba(0,0,0,0.05);
    box-shadow: 0px 0px 50px 0px rgba(0,0,0,0.05);
}


/* Opacity */
.opacity-0 { opacity: 0; }
.opacity-25 { opacity: .25; }
.opacity-50 { opacity: .5; }
.opacity-75 { opacity: .75; }
.opacity-100 { opacity: 1; }


/* Display */
.hide { display: none !important; }


/* Alignment */
.align-center { text-align: center; }
.align-left { text-align: left; }
.align-right { text-align: right; }
.vert-top { vertical-align: top; }
.vert-middle { vertical-align: middle; }
.vert-bottom { vertical-align: bottom; }
.vert-center { top: 50%; -webkit-transform: translateY(-50%); -ms-transform: translateY(-50%); transform: translateY(-50%); }
.full-center { top: 50%; left: 50%; -webkit-transform: translate(-50%, -50%); -ms-transform: translate(-50%, -50%); transform: translate(-50%, -50%); }


/* Links */
a { color: #da0; text-decoration: none; }
a.link-color { color: #da0; }
a.link-white, .link-white a { color: #fff; }
a.link-muted, .link-muted a { color: #999; }
a.link-dark { color: #333; }


/* Header */
header {
    position: absolute; 
    top: 0px; 
    left: 0px; 
    width: 100%; 
    height: 100px;
    border-bottom: 1px solid rgba(255,255,255,.08);
}
header.bg-white { border-bottom: 1px solid rgba(0,0,0,.08); }

header .site-logo {
    display: block;
    width: 120px;
    height: 36px;
    background-image: url("/assets/img/v5/logo-white.ec63c829841f.png?28c1a6ea97c4");
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 120px;
}
header.bg-white .site-logo {
    background-image: url("/assets/img/v5/logo.a1fd496b0f9d.png?5d29f3c67379");
}

header.bg-white .v6-button-white {
    border-color: #333;
    background-color: #333;
    color: #fff;
}

header .nav-label.nav-on,
header .nav-label.nav-off {
    display: block;
    width: 75px;
    height: 100px;
    padding: 15px;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 25px;
}
header .nav-label.nav-on {
    background-image: url("/assets/img/v4/icon-menu-white.33b2e0973f46.png?26fe57f165cf");
}
header .nav-label.nav-off {
    background-image: url("/assets/img/v4/icon-menu-close.f2dd1aac28cc.png?1350ab51ed4d");
}
header.bg-white .nav-label.nav-on {
    background-image: url("/assets/img/v4/icon-menu.0322cdc434bf.png?5fdc85e4a7c9");
}
header.bg-white .nav-list li a { 
    color: #333; 
    text-shadow: none;
}
.nav-list li a.button {
    border-color: rgba(255,255,255,.5);
    color: #fff;
}
.nav-list li a.button:hover {
    border-color: rgba(255,255,255,1);
}
header.bg-white .nav-list li a.button {
    border-color: #da0;
    color: #da0;
}
header.bg-white .nav-list li a.button:hover {
    border-color: #da0;
}
header.bg-white .site-search .select2-choice {
    background-image: url("/assets/img/v4/icon-search.37b57f2a38da.png?729a9cfc8ff5") !important;
}
header.bg-white .site-search .select2-default { 
    color: #333 !important;
    text-shadow: none;
}
header.bg-white .site-search .select2-choice .select2-chosen { 
    color: #333 !important;
}


/* Navigation */
.nav-label { cursor: pointer; }
#show-nav { display: none; }
#show-nav:checked ~ .nav { display: block !important; }
#show-nav:checked ~ .nav-shade { display: block !important; }

.nav {
    position: absolute;
    top: 50%;
    right: 0px;
    transform: translateY(-50%);
}
.nav-list {
    margin: 0px;
    padding: 0px;
    list-style: none;
    display: block;
}
.nav-list li {
    margin: 0px 0px 0px 20px;
    padding: 0px;
    display: inline-block;
    position: relative;
}
.nav-list li a {
    display: inline-block;
    font-size: 12px;
    line-height: 30px;
    font-weight: 500;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: .1em;
    text-shadow: 0px 0px 15px rgba(0,0,0,.25);
}
.nav-user {
    width: 30px;
    height: 30px;
    line-height: 30px;
    background-image: url("/assets/img/v4/icon-user.abf16b5b10ff.png?5ed821a1edd2");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 30px;
}
header.bg-white .nav-user {
    background-image: url("/assets/img/v4/icon-user-dark.8adbbbe0dc08.png?275481efcf4e");
}
.nav-employers {
    padding: 35px 25px 34px;
    background: rgba(0,0,0,.25);
    text-shadow: none;
    /*border-left: 1px solid rgba(255,255,255,.25);*/
}
header.bg-white .nav-employers {
    background: #f7f7f7;
}
.nav-shade {
    position: absolute; 
    top: 0; 
    width: 100%; 
    height: 1500px; 
    z-index: 500;
}


/* Nav Dropdowns */
.drop-down {
    margin: 0px;
    padding: 0px;
    position: absolute;
    background-color: #fff;
    min-width: 175px;
    top: 100%;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%); 
    transform: translateX(-50%);
    border-radius: 4px;
    border: 1px solid rgba(0,0,0,.15);
    border-top: none;
    overflow: hidden;
    z-index: 1000;
}
.drop-down-right {
    left: auto;
    right: 0;
    -webkit-transform: translateX(0%);
    -ms-transform: translateX(0%); 
    transform: translateX(0%);
}
.drop-down li {
    margin: 0px;
    padding: 0px;
    display: block;
}
.drop-down li a {
    display: block;
    padding: 15px 25px;
    line-height: 20px;
    border-top: 1px solid #e6e6e6;
    color: #333 !important;
    text-align: left;
    text-shadow: none;
    white-space: nowrap;
}
.drop-down li a:hover {
    background-color: #f7f7f7;
}
.trigger-drop-down:hover .drop-down {
    display: block !important;
}


/* Responsive Nav */
@media (max-width: 1024px) {
    .nav {
        z-index: 1000;
        display: none;
        padding-top: 100px;
        top: 0;
        right: 0;
        width: 100%;
        background-color: #fff;
        transform: translateY(0%);
    }
    .nav-list {
        width: 100%;
    }
    .nav-list li {
        margin-left: 0px;
        display: block;
    }
    .nav-list li a {
        display: block;
        padding: 25px;
        border-top: 1px solid #e6e6e6;
        color: #333;
        text-transform: uppercase;
        letter-spacing: .1em;
        font-size: 12px;
        line-height: 18px;
        font-weight: 500;
        /*text-align: right;*/
        text-shadow: none;
    }
    .nav-list li a:hover {
        background-color: #f7f7f7;
    }
}


/* Page Nav */
.nav-label.page-nav-on,
.nav-label.page-nav-off {
    display: block;
    height: 80px;
    padding: 0px 25px 0px 55px;
    background-repeat: no-repeat;
    background-position: 25px center;
    background-size: 25px;
    line-height: 80px;
    font-size: 13px;
    color: #a6a6a6;
    text-transform: uppercase;
    letter-spacing: .1em;
}
.nav-label.page-nav-on {
    background-image: url("/assets/img/v4/icon-down.60dbfe7afe4d.png?ad65c2518067");
}
.nav-label.page-nav-off {
    background-image: url("/assets/img/v4/icon-menu-close.f2dd1aac28cc.png?1350ab51ed4d");
}
.nav-label.menu-on {
    background-image: url("/assets/img/v4/icon-menu.0322cdc434bf.png?5fdc85e4a7c9");
}

#show-page-nav { display: none; }
#show-page-nav:checked ~ .page-nav { display: block !important; }
#show-page-nav:checked ~ .page-nav-shade { display: block !important; }

.page-nav {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    width: 100%;
}

.page-nav-list {
    margin: 0;
    padding: 0; 
    list-style: none;
    display: block;
}
.page-nav-list li { 
    margin: 0px 10px;
    padding: 0px;
    display: inline-block;
}
.page-nav-list li a {
    display: inline-block;
    font-size: 13px;
    line-height: 20px;
    color: #a6a6a6;
    text-transform: uppercase;
    letter-spacing: .1em;
}
.page-nav-shade {
    display: none;
    position: absolute; 
    top: 0; 
    width: 100%; 
    height: 1500px; 
    z-index: 500;
}

/* Responsive Page Nav */
@media (max-width: 600px) {
    .page-nav {
        z-index: 1000;
        display: none;
        padding-top: 80px;
        top: 0;
        left: 0;
        width: 100%;
        background-color: #fff;
        transform: translateY(0%);
    }
    .page-nav-list li {
        margin: 0px;
        display: block;
    }
    .page-nav-list li a {
        display: block;
        padding: 20px;
        border-top: 1px solid #e6e6e6;
        color: #a6a6a6;
        text-transform: uppercase;
        letter-spacing: .1em;
        font-size: 13px;
        line-height: 20px;
        text-align: left;
        text-shadow: none;
    }
    .page-nav-list li a:hover {
        background-color: #f7f7f7;
    }
}


/* Side Nav */
.side-label.side-nav-on,
.side-label.side-nav-off {
    display: block;
    padding: 25px 50px;
    background-repeat: no-repeat;
    background-position: 15px center;
    background-size: 25px;
}
.side-label.side-nav-on {
    background-image: url("/assets/img/v4/icon-menu.0322cdc434bf.png?5fdc85e4a7c9");
}
.side-label.side-nav-off {
    background-image: url("/assets/img/v4/icon-menu-close.f2dd1aac28cc.png?1350ab51ed4d");
}

#show-side-nav { display: none; }
#show-side-nav:checked ~ .side-nav { display: block !important; }
#show-side-nav:checked ~ .side-nav-switch { display: none !important; }

.side-nav-list {
    margin: 0px;
    padding: 0px;
    list-style: none;
}
.side-nav-list li {
    margin: 5px 0;
}
.side-nav-list a {
    color: #a6a6a6;
}

@media (max-width: 900px) {
    .side-nav {
        display: none;
    }
}


/* Jump Nav */
.jump-nav li a.active { 
    font-weight: 500;
    color: #333;
}


/* Blog Filters */
#toggle-blog-filters { display: none; }
label[for="toggle-blog-filters"] { cursor: pointer; }
label[for="toggle-blog-filters"] span:before { content: 'Filter articles'; }
#toggle-blog-filters:checked ~ label[for="toggle-blog-filters"] span:before { content: 'Hide filters'; }
#toggle-blog-filters:checked ~ #blog-filters { display: block !important; }


/* Discover Filters */
#show-filters { display: none; }
#show-filters:checked ~ .filters { display: block !important; }


/* Buttons */
button { font-size: 16px; line-height: 25px; }
.button {
    -webkit-appearance: none;
    -moz-appearance: none;
    display: inline-block;
    padding: 15px 32px;
    background: transparent;
    border-width: 1px;
    border-style: solid;
    border-color: #333;
    border-radius: 100px;
    font-family: 'Roboto';
    text-decoration: none !important;
    text-align: center;
    cursor: pointer;
    -moz-transition: all 75ms linear; 
    -webkit-transition: all 75ms linear; 
    -o-transition: all 75ms linear; 
    transition: all 75ms linear; 
}

.button-small { padding: 12px 20px; display: inline-block; }

.button-mini { padding: 6px 15px; }

.button-white { color: #fff; border-color: rgba(255,255,255,.5); -webkit-transition: border-color .1s; transition: border-color .1s; }
.button-white:hover { color: #fff; border-color: rgba(255,255,255,1); }

.button-action { border-color: #da0; background-color: #da0; color: #fff !important; -webkit-transition: background-color .1s, border-color .1s; transition: background-color .1s, border-color .1s; }
.button-action:hover { border-color: #d9a300; background-color: #d9a300; color: #fff !important; }

.button-linkedin { border-color: #0077b5; background-color: #0077b5; color: #fff !important; }
.button-facebook { border-color: #3b5998; background-color: #3b5998; color: #fff !important; }
.button-twitter { border-color: #1da1f2; background-color: #1da1f2; color: #fff !important; }
.button-google { border-color: #4285F4; background-color: #4285F4; color: #fff !important; }

.button-second { border-color: #CC518F; background-color: #CC518F; color: #fff !important; -webkit-transition: background-color .1s, border-color .1s; transition: background-color .1s, border-color .1s; }
.button-second:hover { border-color: #bf4d86; background-color: #bf4d86; color: #fff !important; }

.button-action-white { border-color: #fff; background-color: #fff; color: #da0 !important; -webkit-transition: background-color .1s, border-color .1s; transition: background-color .1s, border-color .1s; }
.button-action-white:hover { border-color: #fff; background-color: #da0; color: #fff !important; }

.button-action-grey { border-color: #a6a6a6; background-color: #a6a6a6; color: #fff !important; -webkit-transition: background-color .1s, border-color .1s; transition: background-color .1s, border-color .1s; }
.button-action-grey:hover { border-color: #8c8c8c; background-color: #8c8c8c; color: #fff !important; }

.button-grey { color: #a6a6a6; border-color: rgba(0,0,0,.1); -webkit-transition: border-color .1s; transition: border-color .1s; }
.button-grey:hover { color: #a6a6a6; border-color: rgba(0,0,0,.25); }

.button-invisible { border-color: rgba(0,0,0,0); }
.button-invisible:hover { border-color: rgba(0,0,0,0); }

.button-color { color: #da0; border-color: #da0; }
.button-color:hover { color: #fff; background-color: #da0; }

.button-disabled { border-color: #d9d9d9; background-color: #d9d9d9; color: #fff !important; cursor: default; }

.button-nobutton { display: inline !important; font-family: 'Roboto' !important; border: none !important; padding: 0 !important; background: none !important; cursor: pointer !important;}

.button-link { color: #da0; }

.plan-select input[type=radio]:checked + span {
    border-color: #da0;
    background-color: #da0;
    color: #fff !important;
    -webkit-transition: background-color .1s, border-color .1s;
    transition: background-color .1s, border-color .1s;
}
.plan-select input[type=radio] + span:before {
    content: "Select";
}
.plan-select input[type=radio]:checked + span:before {
    content: "Selected";
}

.uploadcare-widget-button {
    -webkit-appearance: none;
    -moz-appearance: none;
    display: inline-block;
    padding: 15px 32px;
    background: transparent;
    border: 1px solid #333;
    border-radius: 100px;
    font-family: 'Roboto';
    text-decoration: none !important;
    text-align: center;
    cursor: pointer;
    -moz-transition: all 75ms linear; 
    -webkit-transition: all 75ms linear; 
    -o-transition: all 75ms linear; 
    transition: all 75ms linear; 
}
.uploadcare-widget-button { padding: 12px 20px; display: inline-block; border: 1px solid #333; border-radius: 100px; }
.uploadcare-widget-button { color: #da0; border-color: #da0; }
.uploadcare-widget-button:hover { color: #fff; background-color: #da0; }


.button-save-company .fa:before {
    content: "\f08a";
}
.button-save-company span:before {
    content: "Follow company" !important;
}
.button-saved-company .fa:before {
    content: "\f004" !important;
}
.button-saved-company span:before {
    content: "Followed company" !important;
}


/* Company Links */
.list-links { margin: 0px; padding: 0px; list-style: none; display: inline-block; }
.list-links li { margin: 0px 10px 10px; padding: 0px; display: inline-block; }
.list-links li a { display: inline-block; background: #da0; color: #fff; width: 50px; height: 50px; font-size: 18px; line-height: 50px; border-radius: 100px; -webkit-transition: background-color .1s; transition: background-color .1s; }
.list-links li a:hover { background-color: #333; }

.stButton {
    position: absolute !important;
    margin: 0 !important;
    top: 0 !important;
    left: 0 !important;
}
.stButton .stLarge {
    width: 40px !important;
    height: 40px !important;
    background: none !important;
    margin: 0 !important;
}


/* Shitty Nav Highlighting */
.accounts-account .page-nav li a.account { font-weight: 500; color: #333;}
.accounts-history .page-nav li a.history { font-weight: 500; color: #333;}
.accounts-profile .page-nav li a.profile { font-weight: 500; color: #333;}
.accounts-personal .page-nav li a.personal { font-weight: 500; color: #333;}
.accounts-followed .page-nav li a.followed { font-weight: 500; color: #333;}
.accounts-recommendations .page-nav li a.recommendations { font-weight: 500; color: #333;}
.accounts-settings .page-nav li a.settings { font-weight: 500; color: #333;}

.employer-company a.company { font-weight: 500; color: #333; }
.employer-benefits a.benefits { font-weight: 500; color: #333; }
.employer-settings a.settings { font-weight: 500; color: #333; }
.employer-feedback a.feedback { font-weight: 500; color: #333; }
.employer-resources a.resources { font-weight: 500; color: #333; }
.employer-jobs a.jobs { font-weight: 500; color: #333; }
.employer-inoursight a.inoursight { font-weight: 500; color: #333; }
.employer-media a.media { font-weight: 500; color: #333; }
.employer-badges a.badges { font-weight: 500; color: #333; }
.employer-comments a.comments { font-weight: 500; color: #333; }
.employer-ats a.ats { font-weight: 500; color: #333; }
.employer-billing a.billing { font-weight: 500; color: #333; }
.employer-sourcing a.sourcing { font-weight: 500; color: #333; }
.employer-analytics a.analytics { font-weight: 500; color: #333; }


/* Hover Effect */
.hover-trigger:hover .hover-show { display: block !important; z-index: 10000 !important; }


/* Screen Show */
.screen-show {
    position: absolute;
    width: 100%;
    bottom: 100%;
    opacity: 0;
    transform: translateY(100%)
}
.screen-show.in-view {
    -webkit-animation: upanddown 30s linear infinite;
    animation: upanddown 30s linear infinite;
}
@-webkit-keyframes upanddown {
    0% {
        bottom: 100%;
        opacity: 0;
        transform: translateY(100%)
    }
    5% {
        bottom: 100%;
        opacity: 1;
        transform: translateY(100%)
    }
    10% {
        bottom: 100%;
        opacity: 1;
        transform: translateY(100%)
    }
    90% {
        bottom: 0%;
        opacity: 1;
        transform: translateY(0)
    }
    95% {
        bottom: 0%;
        opacity: 1;
        transform: translateY(0)
    }
    100% {
        bottom: 0%;
        opacity: 0;
        transform: translateY(0)
    }
}
@keyframes upanddown {
    0% {
        bottom: 100%;
        opacity: 0;
        transform: translateY(100%)
    }
    5% {
        bottom: 100%;
        opacity: 1;
        transform: translateY(100%)
    }
    10% {
        bottom: 100%;
        opacity: 1;
        transform: translateY(100%)
    }
    90% {
        bottom: 0%;
        opacity: 1;
        transform: translateY(0)
    }
    95% {
        bottom: 0%;
        opacity: 1;
        transform: translateY(0)
    }
    100% {
        bottom: 0%;
        opacity: 0;
        transform: translateY(0)
    }
}


/* Slick Slideshow */
.highlights-nav {
    position: relative;
}
.slideshow-nav {
    position: relative;
    height: 650px;
}
.arrow {
    z-index: 9000;
    position: absolute;
    top: 50%;
    left: 25px;
    width: 50px;
    height: 50px;
    text-indent: -9999px;
    background-repeat: no-repeat;
    background-size: 50px;
    background-position: center center;
    -moz-transition: all 100ms linear; 
    -webkit-transition: all 100ms linear; 
    -o-transition: all 100ms linear; 
    transition: all 100ms linear; 
}
.arrow-prev {
    background-image: url("/assets/img/v4/icon-prev.37f6263e7f29.png?2ce54320d9fd");
}
.arrow-next {
    left: auto;
    right: 25px;
    background-image: url("/assets/img/v4/icon-next.629f025a875b.png?2b5a4bab3cc3");
}
.arrow-prev-white {
    background-image: url("/assets/img/v4/icon-prev-white.5a02be11e9d1.png?def346bc1ee2");
}
.arrow-next-white {
    left: auto;
    right: 25px;
    background-image: url("/assets/img/v4/icon-next-white.8687242fbc8f.png?094b877d1951");
}
.slideshow-nav .arrow {
    opacity: 0;
}
.slideshow-nav:hover .arrow {
    opacity: 100;
}
.slick-dots {
    margin: 0px;
    padding: 0px;
    list-style: none;
    text-align: center;
    z-index: 2000; 
    position: absolute;
    bottom: 25px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%); 
    transform: translateX(-50%);
}
.slick-dots li {
    display: inline-block;
}
.slick-dots li button {
    display: inline-block;
    width: 12px;
    height: 12px;
    margin: 0 5px;
    padding: 0px;
    background: rgba(255,255,255,.5);
    border-radius: 10px;
    overflow: hidden;
    text-indent: -999em;
    border: none;
    cursor: pointer;
}
.slick-dots li.slick-active button {
    background: #fff;
    cursor: default;
}


/* Bounce Links (Home page action strip) */
.bounce-link { 
    display: block;
}
.bounce-link img {
    margin-top: 5px; 
    margin-bottom: 10px; 
    -moz-transition: all 100ms linear; 
    -webkit-transition: all 100ms linear; 
    -o-transition: all 100ms linear; 
    transition: all 100ms linear; 
}
.bounce-link:hover img { 
    margin-top: 0px; 
    margin-bottom: 15px; 
}


/* Sticky Nav */
.sticky-nav { z-index: 1000; }
.sticky-nav .top-hide {
    opacity: 0;
    -moz-transition: all 150ms linear;
    -webkit-transition: all 150ms linear;
    -o-transition: all 150ms linear;
    transition: all 150ms linear;
}
.is-sticky .top-hide {
    opacity: 1;
}


/* Alerts & Messages */
.success { background: #00bfaf; color: #fff; }
.info { background: #00bfaf; color: #fff; }
.error-message { background: #da0; color: #fff; }


/* Images & Media */
figure { margin: 0px !important; padding: 0px !important; }
figure img { width: 100%; max-width: 100%; margin-left: auto; margin-right: auto; height: auto; }
figure video, figure iframe, figure svg { width: 100% !important; max-width: 100% !important; }

figure.video-container { 
    position:relative;
	padding-bottom:56.25%;
	padding-top:30px;
	height:0;
	overflow:hidden; 
}
figure.video-container video, figure.video-container iframe {
	position:absolute;
	top:0;
	left:0;
	width:100%;
	height:100%;
}


/* Tables */
table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    background: #fff;
    border-style: solid;
    border-width: 0px;
    border-color: #e6e6e6;
    border-radius: 4px;
    table-layout: auto;
}
table td, table th { padding: 20px 25px; border: 0px solid #e6e6e6; border-bottom-width: 1px; }
table tr:first-child td { border-top-width: 1px; }
table tr td:first-child { border-left-width: 1px; }
table tr td:last-child { border-right-width: 1px; }
table tr:first-child td:first-child { border-top-left-radius: 3px; }
table tr:first-child td:last-child { border-top-right-radius: 3px; }
table tr:last-child td:first-child { border-bottom-left-radius: 3px; }
table tr:last-child td:last-child { border-bottom-right-radius: 3px; }
.table-tight td, .table-tight th { padding: 11px 19px; }
.table-blank { border: none !important; background: none !important; }
.table-blank td, .table-blank th { padding: 4px 0px; border: none !important; }
.table-taight td, .table-blank th { padding: 0px 0px; border: none !important; }
.table-frame { border: none !important; background: none !important; }
.table-frame td, .table-frame th { padding: 0px 0px; border: none !important; }
.table-newb { background: transparent; border-radius: 0px; }
.table-newb td, .table-newb th { padding: 15px 0px; border-left: none; border-right: none; border-bottom: none; border-top: 1px dotted #e6e6e6; }
.table-newb-2 td, .table-newb-2 th { padding: 20px 0px; border-left: none; border-right: none; border-bottom: none; border-top: 1px solid #e6e6e6; }
.tr-dotted-top td, .tr-dotted-top th { border-top: none; }
.tr-tight td, .tr-tight th { padding: 10px !important; }
@media (max-width: 600px) { 
    .td-small-no-bottom, .tr-tight .td-small-no-bottom { padding-bottom: 0px !important;}
}
.table-tall td, .table-tall th { padding: 10px 0px; }
.table-align-top td { vertical-align: top; }
.border-none td { border-bottom: none; }

.table-straight { border-radius: 0px !important; }
.table-straight tr:first-child td { border-top-width: 0px; }
.table-straight tr:first-child td:first-child { border-top-left-radius: 0px; }
.table-straight tr:first-child td:last-child { border-top-right-radius: 0px; }
.table-straight tr:last-child td:first-child { border-bottom-left-radius: 0px; }
.table-straight tr:last-child td:last-child { border-bottom-right-radius: 0px; }
.table-straight tr:last-child td { border-bottom-width: 0px; }

.table-analytics td { border: none !important; }
.table-analytics tr td:first-child { padding-left: 0px; }
.table-analytics tr td:last-child { padding-right: 0px; }

.table-shrink .rating { padding-left: 25px; }

tr.error td { background: #da0; border-color: #da0; color: #fff; border-bottom-color: #fff; }


/* Home page video */
#bg-video {
    position: fixed;
    right: 0;
    top: -20px;
    min-width: 100%;
    width: auto; 
    height: auto;
    z-index: -100;
    background: url("/assets/img/v4/bg-video.5e09f2af575c.jpg?e26e3d222cce") no-repeat;
    background-repeat: no-repeat;
    background-size: cover;
    -o-background-size: cover;
    -moz-background-size: cover;
    -webkit-background-size: cover;
}


/* Stars Display */
.stars { display: inline-block; }
.stars span {
    display: inline-block;
    width: 105px;
    height: 21px;
    vertical-align: text-bottom;
    background: url("/assets/img/v4/stars.cbebfca2680c.png?5a524c74103c") no-repeat top left;
    background-size: 210px auto;
}
.dots span {
    background-image: url("/assets/img/v4/dots-kununu.001238281293.png?1d33647d4081") !important;
}
.stars .stars-500 { background-position: 0px 0px; }
.stars .stars-475 { background-position: 0px -21px; }
.stars .stars-450 { background-position: 0px -42px; }
.stars .stars-425 { background-position: 0px -63px; }
.stars .stars-400 { background-position: -21px 0px; }
.stars .stars-375 { background-position: -21px -21px; }
.stars .stars-350 { background-position: -21px -42px; }
.stars .stars-325 { background-position: -21px -63px; }
.stars .stars-300 { background-position: -42px 0px; }
.stars .stars-275 { background-position: -42px -21px; }
.stars .stars-250 { background-position: -42px -42px; }
.stars .stars-225 { background-position: -42px -63px; }
.stars .stars-200 { background-position: -63px 0px; }
.stars .stars-175 { background-position: -63px -21px; }
.stars .stars-150 { background-position: -63px -42px; }
.stars .stars-125 { background-position: -63px -63px; }
.stars .stars-100 { background-position: -84px 0px; }
.stars .stars-075 { background-position: -84px -21px; }
.stars .stars-050 { background-position: -84px -42px; }
.stars .stars-025 { background-position: -84px -63px; }
.stars .stars-000, .stars .stars-00 { background-position: -106px 0px; }


/* Small Stars */
.stars-small { display: inline-block; }
.stars-small span {
    display: inline-block;
    width: 80px;
    height: 16px;
    vertical-align: text-bottom;
    background: url("/assets/img/v4/stars-small.49227e7b7b31.png?34662bc6c7e6") no-repeat top left;
    background-size: 160px;
}
.stars-small-white span {
    background-image: url("/assets/img/v4/stars-small-white.594435162b59.png?17deb99370d4");
}
.stars-small .stars-500 { background-position: 0px 0px; }
.stars-small .stars-475 { background-position: 0px -16px; }
.stars-small .stars-450 { background-position: 0px -32px; }
.stars-small .stars-425 { background-position: 0px -48px; }
.stars-small .stars-400 { background-position: -16px 0px; }
.stars-small .stars-375 { background-position: -16px -16px; }
.stars-small .stars-350 { background-position: -16px -32px; }
.stars-small .stars-325 { background-position: -16px -48px; }
.stars-small .stars-300 { background-position: -32px 0px; }
.stars-small .stars-275 { background-position: -32px -16px; }
.stars-small .stars-250 { background-position: -32px -32px; }
.stars-small .stars-225 { background-position: -32px -48px; }
.stars-small .stars-200 { background-position: -48px 0px; }
.stars-small .stars-175 { background-position: -48px -16px; }
.stars-small .stars-150 { background-position: -48px -32px; }
.stars-small .stars-125 { background-position: -48px -48px; }
.stars-small .stars-100 { background-position: -64px 0px; }
.stars-small .stars-075 { background-position: -64px -16px; }
.stars-small .stars-050 { background-position: -64px -32px; }
.stars-small .stars-025 { background-position: -64px -48px; }
.stars-small .stars-000, .stars-small .stars-00 { background-position: -80px 0px; }


/* Star Ratings */
div.rating-cancel {
    display: none !important;
}
div.star-rating,
div.star-rating a {
    background: url("/assets/img/v4/star-rating.b652187fba06.png?ae7a15a80ee5") no-repeat 0 0px;
    background-size: 20px auto;
}
div.star-rating {
    width: 20px !important;
    height: 20px !important;
}
div.star-rating a {
    width: 20px !important;
}
div.star-rating-on a {
    background-position: 0 -20px !important;
}
div.star-rating-hover a {
    background-position: 0 -20px !important;
}
span.star-rating-control {
    display: inline-block !important;
    overflow: hidden !important;
    width: 100px;
}

.not-stars div.star-rating,
.not-stars div.star-rating a {
    background: url("/assets/img/v4/dot-rating-kununu.e5447c90270d.png?b52f5bf5e957") no-repeat 0 0px !important;
    background-size: 20px auto !important;
}
.not-stars div.star-rating-on a {
    background-position: 0 -20px !important;
}
.not-stars div.star-rating-hover a {
    background-position: 0 -20px !important;
}


/* Category Scales */
.scales-500 { width: 100%; height: auto; }
.scales-475 { width: 95%; height: auto; }
.scales-450 { width: 90%; height: auto; }
.scales-425 { width: 85%; height: auto; }
.scales-400 { width: 80%; height: auto; }
.scales-375 { width: 75%; height: auto; }
.scales-350 { width: 70%; height: auto; }
.scales-325 { width: 65%; height: auto; }
.scales-300 { width: 60%; height: auto; }
.scales-275 { width: 55%; height: auto; }
.scales-250 { width: 50%; height: auto; }
.scales-225 { width: 45%; height: auto; }
.scales-200 { width: 40%; height: auto; }
.scales-175 { width: 35%; height: auto; }
.scales-150 { width: 30%; height: auto; }
.scales-125 { width: 25%; height: auto; }
.scales-100 { width: 20%; height: auto; }
.scales-075 { width: 15%; height: auto; }
.scales-050 { width: 10%; height: auto; }
.scales-025 { width: 5%; height: auto; }
.scales-00, .scales-000 { width: 100%; height: auto; }
.scales-00, .scales-000 {
    -webkit-filter: grayscale(100%);
    filter: grayscale(100%);
    opacity: .1;
}
.scales .scale-frame {
    height: 275px;
    position: relative;
    background-image: url("/assets/img/v4/scale-frame.dd629ad6c347.png?f0b2b3d5b068");
    background-position: bottom center;
    background-repeat: no-repeat;
    background-size: 100%;
}
.scales .scale-item { position: absolute; bottom: 0; left: 0; } 
.scales .scale-item img { display: block; margin: 0 auto; }
.scales .scales-base img { display: block; width: 100%; margin: 0 auto; }


/* Donut charts */
.circles-text { font-weight: 300; font-size: 30px !important; }


/* Forms */
::-webkit-input-placeholder { color: #ccc; }
:-moz-placeholder { color: #ccc; }
::-moz-placeholder { color: #ccc; }
:-ms-input-placeholder { color: #ccc; }
.placeholder-select { color: #ccc; }
label {
    display: inline-block;
}
.cursor-pointer {
    cursor: pointer;
}
input {
    -webkit-appearance: none;
    appearance: none;
    display: inline-block;
    margin: 0px;
    padding: 11px 19px;
    font-family: 'Roboto';
    font-size: 16px;
    font-weight: 400;
    line-height: 25px;
    background: #fff;
    border: 1px solid #d9d9d9;
    border-radius: 4px;
    width: 100%;
    color: #333;
}
input[type="text"]:disabled {
    background: #f7f7f7;
} 
.styled-input {
    position: relative;
}
.styled-input .watermark {
    font-size: 24px;
    color: #ccc;
    position: absolute;
    right: 15px;
    top: 12px;
}
select,
.styled-select {
    display: inline-block;
    padding: 11px 19px;
    font-family: 'Roboto';
    font-size: 16px;
    font-weight: 400;
    line-height: 25px;
    color: #333;
    background: #fff;
    border-radius: 4px;
    cursor: pointer;
    width: 100%;
}
.styled-select-small select { padding: 5px 12px; }
select { margin: 0px; }
.styled-select {
    /*overflow: hidden;*/
    padding: 0px !important;
    background-image: url("/assets/img/v3/chevron-down.2229519d66ae.png?58155a89437a");
    background-size: 15px;
    background-repeat: no-repeat;
    background-position: center right 12px;
    border: none;
}
.styled-select:after { content: " "; visibility: hidden; display: block; height: 0; clear: both; }
@-moz-document url-prefix() { 
  .styled-select {
     background-image: none !important;
  }
}
.styled-select select {
    -webkit-appearance: none;
    -moz-appearance: select;
    width: 100%;
    background: transparent !important;
    border: 1px solid #d9d9d9;
}
textarea {
    display: inline-block;
    margin: 0px;
    padding: 11px 19px;
    font-family: 'Roboto';
    font-size: 16px;
    font-weight: 400;
    line-height: 25px;
    background: #fff;
    border: 1px solid #d9d9d9;
    border-radius: 4px;
    color: #333;
}
input[type=radio],
input[type=checkbox]{
    display: inline;
    width: auto;
    margin-right: 10px;
}

/* Styled Radio Buttons */
.styled-radio input {
    display: none;
}
.styled-radio input[type=radio] + span {
    font-family: FontAwesome;
    font-size: 12px;
    display: inline-block;
    width: 19px;
    height: 19px;
    margin-right: 7px;
    vertical-align: text-bottom;
    background-color: #fff;
    border: 1px solid #d9d9d9;
    border-radius: 20px;
    line-height: 18px;
    text-align: center;
}
.styled-radio input[type=radio]:checked + span {
    color: #da0;
}
.styled-radio input[type=radio]:checked + span:before {
    content: "\f111";
}

/* Financial Confidence Survey */
.stress-radio input {
    display: none;
}
.stress-radio input[type=radio] + span {
    display: block;
    margin: 0px 5px;
    width: 40px;
    height: 40px;
    background-repeat: no-repeat;
    background-size: 200px;
    background-position: 0px 0px;
    cursor: pointer;
    background-image: url("/assets/img/v4/stress-sprite.48b27fdd4df1.png?b0ee3e68e24d");
}
@media (max-width: 400px) { 
    .stress-radio input[type=radio] + span {
        margin: 0px 2px;
    }
}
.stress-radio-1 input[type=radio] + span { background-position: 0px -40px; }
.stress-radio-2 input[type=radio] + span { background-position: -40px -40px; }
.stress-radio-3 input[type=radio] + span { background-position: -80px -40px; }
.stress-radio-4 input[type=radio] + span { background-position: -120px -40px; }
.stress-radio-5 input[type=radio] + span { background-position: -160px -40px; }
.stress-radio-1 input[type=radio]:checked + span,
.stress-radio-1:hover input[type=radio] + span
{ background-position: 0px 0px; }
.stress-radio-2 input[type=radio]:checked + span,
.stress-radio-2:hover input[type=radio] + span
{ background-position: -40px 0px; }
.stress-radio-3 input[type=radio]:checked + span,
.stress-radio-3:hover input[type=radio] + span
{ background-position: -80px 0px; }
.stress-radio-4 input[type=radio]:checked + span,
.stress-radio-4:hover input[type=radio] + span
{ background-position: -120px 0px; }
.stress-radio-5 input[type=radio]:checked + span,
.stress-radio-5:hover input[type=radio] + span
{ background-position: -160px 0px; }


/* Styled Checkboxes */
.styled-check input {
    display: none;
}
.styled-check input[type=checkbox] + span {
    font-family: FontAwesome;
    font-size: 14px;
    display: inline-block;
    width: 24px;
    height: 24px;
    margin-right: 7px;
    vertical-align: bottom;
    background-color: #fff;
    border: 1px solid #d9d9d9;
    border-radius: 4px;
    line-height: 24px;
    text-align: center;
    cursor: pointer;
}
.styled-check:hover input[type=checkbox] + span {
    border-color: #ccc;
}
.styled-check input[type=checkbox]:checked + span {
    color: #da0;
}
.styled-check input[type=checkbox]:checked + span:before {
    content: "\f00c";
}

/* Must Have Checkboxes */
.styled-check-must-have input {
    display: none !important;
}
.styled-check-must-have {
    
}
.styled-check-must-have label {
    display: block;
    width: 100%;
    height: 200px;
    padding: 8px;
    cursor: pointer;
    text-align: center;

}
.styled-check-must-have .must-have-item .must-have-image {
    width: 80px;
    height: 80px;
    position: relative;
    margin: 0 auto 0px;
}
.styled-check-must-have .must-have-item .must-have-image img {
    opacity: .25;
    width: 80px !important;
}
.styled-check-must-have:hover .must-have-item .must-have-image img {
    opacity: .5;
}
.styled-check-must-have input[type=checkbox]:checked + .must-have-item .must-have-image img {
    opacity: 1;
}
.styled-check-must-have input[type=checkbox]:checked + .must-have-item .must-have-label {
    font-weight: 500;
}
.styled-check-must-have input[type=checkbox] + .must-have-item .must-have-image span {
    visibility: hidden;
    position: absolute;
    bottom: 0px;
    right: 0px;
    width: 24px;
    height: 24px;
    background-color: #f5f5f5;
    background-size: 24px;
    border-radius: 50%;
}
.styled-check-must-have:hover input[type=checkbox] + .must-have-item .must-have-image span {
    /*visibility: visible;
    background-color: #E6E6E6;
    background-image: url("/assets/img/v4/check-large.34e98ceb7c54.png?a1f17a5e8e66");*/
}
.styled-check-must-have input[type=checkbox]:checked + .must-have-item .must-have-image span {
    visibility: visible;
    background-color: #da0 !important;
    background-image: url("/assets/img/v4/check-large.34e98ceb7c54.png?a1f17a5e8e66") !important;
}


/* Styled Password */
.styled-password {
    position: relative;
}
.styled-password .toggle-view {
    position: absolute;
    top: 14px;
    right: 15px;
}
.styled-password .toggle-view input[type=checkbox] {
    display: none;
}
.styled-password .toggle-view input[type=checkbox] + label {
    font-family: FontAwesome;
    font-size: 20px;
    color: #ccc;
}
.styled-password .toggle-view input[type=checkbox] + label:before {
    content: "\f06e";
}
.styled-password .toggle-view input[type=checkbox]:checked + label:before {
    content: "\f070";
}


/* Expand & Collapse thing (not currently being used) */
.open-close {
    display: inline-block;
    width: 18px;
    height: 18px;
    background-repeat: no-repeat;
    background-size: 18px;
    background-image: url("/assets/img/v4/add-large.12b1af3b9856.png?dc59d6310cc8") !important; 
    vertical-align: text-bottom;
}
.open-close-close {
    background-image: url("/assets/img/v4/remove-large.b3bb7387c4d2.png?9f42c30c5f9c") !important; 
}


/* Input Modifier */
.input-medium {
    padding: 7px 15px;
}
.input-disabled {
    background-color: #f7f7f7;
    color: #ccc;
}
.input-nofocus:focus {
    border: none !important;
}


/* Tiny MCE */
.mce-tinymce {
    border: 1px solid #d9d9d9 !important;
    border-radius: 4px;
}
.mce-toolbar-grp {
    border-radius: 4px 4px 0px 0px;
}
.mce-edit-area {
    border-radius: 0px 0px 4px 4px;
}
.mce-edit-area iframe {
    border-radius: 0px 0px 4px 4px;
}


/* Focus styling */
.button-primary:focus {
    outline: none !important;
    -webkit-box-shadow: none !important;
    box-shadow: none !important;
    background-color: #333 !important;
    border-color: #333 !important;
}
input:focus,
select:focus,
textarea:focus,
.select2-container-active .select2-choice,
.select2-container-active .select2-choices {
    border: 1px solid #333 !important;
    outline: none !important;
}
.select2-search input:focus {
    border: none !important;
    -webkit-box-shadow: none !important;
    box-shadow: none !important;
}


/* Toggles */
.toggle { position: absolute; margin-left: -9999px; visibility: hidden; }
.toggle + label {
    display: block;
    position: relative;
    cursor: pointer;
    outline: none;
    user-select: none;
    padding: 2px;
    width: 45px;
    height: 25px;
    background-color: #ccc;
    border-radius: 25px;
    transition: background 0.1s;
}
.toggle + label:before,
.toggle + label:after {
    display: block;
    position: absolute;
    top: 2px;
    left: 2px;
    bottom: 2px;
    content: "";
}
.toggle + label:after {
    height: 21px;
    width: 21px;
    background-color: #fff;
    border-radius: 100%;
    transition: margin 0.1s;
}
.toggle:checked + label {
    background-color: #da0;
}
.toggle:checked + label:after {
    margin-left: 20px;
}

/* Select2 Search */
.select2-container {
    vertical-align: top !important;
    width: 100% !important;
}
.select2-default { 
    color: #ccc !important; 
}
.select2-container .select2-choice {
    width: 100% !important;
    height: auto !important;
    background: #fff !important;
    border: 1px solid #d9d9d9 !important;
    border-radius: 4px !important;
    padding: 11px 19px !important;
    box-shadow: none !important;
    font-size: 16px !important;
    font-weight: 400 !important;
    line-height: 25px !important;
}
.select2-container .search-help {
    display: none !important;
}
.select2-container .select2-choice .select2-arrow {
    display: none !important; 
}
.select2-container-disabled .select2-choice {
    background: #f7f7f7 !important;
}
.select2-drop-mask {
    background-color: #000 !important; 
    opacity: .2 !important;
}
.select2-input {
    padding: 11px 19px !important;
    font-family: 'Roboto' !important;
    font-size: 16px !important;
    font-weight: 400 !important;
    line-height: 25px !important;
    color: #333 !important;
}
.select2-drop {
    -webkit-box-shadow: 0px 0px 10px 0px rgba(0,0,0,.25) !important;
    -moz-box-shadow: 0px 0px 10px 0px rgba(0,0,0,.25) !important;
    box-shadow: 0px 0px 10px 0px rgba(0,0,0,.25) !important;
    background: #fff !important;
    margin-top: -49px !important;
    border-radius: 4px !important;
    border: 1px solid #333 !important;
}
.select2-drop-above { 
    margin-bottom: -49px !important; 
}
.select2-drop.select2-drop-above .select2-search input { 
    margin: 0px !important; 
}
.select2-search { 
    padding: 0px !important; 
}
.select2-no-results { 
    display: none !important; 
}
.select2-search input { 
    background-image: none !important; 
}
.select2-results {
    margin: 0px !important;
    padding: 0px !important;
    border: none !important;
}
.select2-result { 
    border-top: 1px solid #e6e6e6; 
}
.select2-results .select2-result-label {
    padding: 11px 19px;
    overflow: hidden;
    font-size: 16px;
    line-height: 20px;
    color: #333 !important;
}
.select2-highlighted { 
    background: #f7f7f7 !important; 
    color: #333 !important; 
}
.select2-results .select2-no-results, .select2-results .select2-searching, .select2-results .select2-selection-limit {
    font-size: 16px !important;
    line-height: 20px !important;
    color: #a6a6a6 !important;
    padding: 11px 19px !important;
    border-top: 1px solid #d9d9d9 !important;
    background: #f7f7f7 !important;
}
.select2-search-choice-close { 
    margin-top: 10px; 
}
.select2-container .select2-choice abbr { 
    display: none !important; 
}


.clearable .select2-container {
    z-index: 9997;
}
.clearable .select2-clear {
    display: block;
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 9996;
}
.clearable .select2-allowclear {
    z-index: 9995;
}


/* Small Select2 */
.size-small .select2-choice {
    font-size: 12px !important;
    line-height: 18px !important;
}
.select2-small {
    font-size: 12px !important;
    line-height: 18px !important;
    margin-top: -44px !important;
}
.select2-small .select2-search .select2-input {
    font-size: 12px !important;
    line-height: 18px !important;
}
.select2-small .select2-results .select2-result-label {
    font-size: 12px !important;
    line-height: 18px !important;
}
.select2-small .select2-results .select2-no-results, 
.select2-small .select2-results .select2-searching, 
.select2-small .select2-results .select2-selection-limit {
    font-size: 12px !important;
    line-height: 18px !important;
}

/*V6 Search*/
.v6-search.select2-container {
    display: none !important;
    position: absolute !important;
    width: 100% !important;
}
.v6-search .select2-choice {
    border: none !important;
    background-image: none !important;
    background-color: transparent !important;
    box-shadow: none !important;
    padding: 0px !important;
}
.v6-search .select2-arrow {
    display: none !important;
}
.v6-search.select2-container-active .select2-choice {
    border: none !important;
}
.v6-search.select2-dropdown-open {
    display: block !important;
}
.v6-search.select2-drop {
    border: none !important;
    margin-top: 0px !important;
    top: 0px !important;
    box-shadow: none !important;
    border-radius: 0px !important;
    color: inherit !important;
}
.v6-search .select2-search {
    border: none !important;
    padding: 0px !important;
}
.v6-search .select2-search input {
    border: none !important;
    height: 100px !important;
    padding: 40px !important;
    background: none !important;
}
    @media screen and (max-width: 600px) {
        .v6-search .select2-search input { padding: 40px 20px !important; }
    }
.v6-search .select2-results {
    padding: 0px !important;
    margin: 0px !important;
    border-top: 1px solid #e6e6e6 !important;
    max-height: 525px !important;
}
.v6-search .select2-results .select2-result {
    border-top: none !important;
    border-bottom: 1px solid #e6e6e6 !important;
}
.v6-search .select2-results .select2-result .select2-result-label {
    padding: 20px 40px !important;
}
    @media screen and (max-width: 600px) {
        .v6-search .select2-results .select2-result .select2-result-label { padding: 20px !important; }
    }
.v6-search .select2-results .select2-no-results {
    display: none !important;
    padding: 20px 40px !important;
    background-color: #f8f8f8 !important;
    color: #999 !important;
}
    @media screen and (max-width: 600px) {
        .v6-search .select2-results .select2-no-results { padding: 20px !important; }
    }
.v6-search .select2-results .select2-no-results, 
.v6-search .select2-results .select2-searching, 
.v6-search .select2-results .select2-selection-limit {
    display: none !important;
    padding: 20px 40px !important;
    background-color: #f8f8f8 !important;
    color: #999 !important;
}
    @media screen and (max-width: 600px) {
        .v6-search .select2-results .select2-no-results, 
        .v6-search .select2-results .select2-searching, 
        .v6-search .select2-results .select2-selection-limit { 
            padding: 20px !important; 
        }
    }
.v6-search .select2-results .select2-highlighted {
    background-color: #f8f8f8 !important;
    color: inherit !important;
}
.select2-drop-mask { 
    background-color: rgba(0,0,0,.4) !important;
    opacity: 1 !important;
}


/* Site Search
.site-search .select2-default { 
    color: #fff !important; 
}
.site-search .select2-choice {
    width: 400px !important;
    height: 100px !important;
    background: transparent !important;
    background-image: url("/assets/img/v4/icon-search-white.62c098c32ee6.png?7cd111543c57") !important;
    background-repeat: no-repeat !important;
    background-size: 25px !important;
    line-height: 30px !important;
    background-position: 15px 50% !important;
    border: none !important;
    border-radius: 0px !important;
    padding: 10px 25px 10px 25px !important;
    font-size: 13px !important;
    text-transform: uppercase !important;
    letter-spacing: .1em !important;
    font-weight: 400 !important;
}
@media (max-width: 900px) {
    .site-search .select2-choice {
        width: 200px !important;
    }
}
.site-search .select2-search {
    border-bottom: 1px solid #e6e6e6 !important;
}
.site-search .select2-input {
    top: 0px !important;
    left: 0px !important;
    padding: 35px 25px 35px 50px !important;
    width: 100% !important;
    line-height: 30px !important;
    background-color: #fff !important;
    border: none !important;
    border-radius: 0px !important;
}
.site-search .select2-search input {
    background-image: url("/assets/img/v4/icon-search.37b57f2a38da.png?729a9cfc8ff5") !important;
    background-repeat: no-repeat !important;
    background-size: 25px !important;
    background-position: 15px 50% !important;
}
.site-search.select2-drop {
    box-shadow: none !important;
    margin-top: -100px !important;
    border-radius: 0px !important;
    border: none !important;
}
.site-search .select2-choice .select2-chosen { 
    color: #fff !important;
    padding: 25px !important;
}
.site-search .select2-results {
    margin-top: -1px !important;
    max-height: 525px !important;
    text-shadow: none !important;
}
.site-search .select2-results .select2-result-label {
    padding: 25px 25px !important;
}
.site-search .select2-highlighted { 
    -moz-transition: all 100ms linear;
    -webkit-transition: all 100ms linear;
    -o-transition: all 100ms linear;
    transition: all 100ms linear;
}
.site-search .select2-results .select2-no-results, .site-search .select2-results .select2-searching, .site-search .select2-results .select2-selection-limit {
    padding: 25px 25px !important;
}
 */

/* Profile fields */
.profile-search .select2-choice {
    background-image: url("/assets/img/v5/icon-search.fed4acd4691d.png?f9c40ef14dc1") !important;
    background-repeat: no-repeat !important;
    background-size: 36px !important;
    background-position: 0px 50% !important;
    border: 1px solid #fff !important;
    padding: 11px 19px 11px 44px !important;
}
.profile-search .select2-default { 
    color: #a6a6a6 !important; 
}


/* Sourcing v-select */
.v-select .dropdown-toggle {
    border: none !important;
}
.v-select input[type=search] {
    height: auto !important;
    border: 1px solid #e6e6e6 !important;
    background-color: #fff !important;
    font-size: 16px !important;
    line-height: 24px !important;
    padding: 8px 12px !important; 
}
.v-select .dropdown-toggle .open-indicator {
    display: none !important;
}


/* Dead div */
.dead-div {
    pointer-events: none;
    opacity: .5;
}


/* Uploadcare */
.image-preview-single {
  padding: 0;
}
.image-preview-single > img {
  width: 128px;
  height: 96px;
  vertical-align: middle;
  visibility: hidden;
  display: inline-block;
}
.image-preview-multiple ._list {
  padding-top: 20px;
}
.image-preview-multiple ._item {
  padding: 0 0 10px;
  display: inline-block;
  text-align: center;
  vertical-align: top;
  width: 100px;
  word-break: break-word;
  font-size: 12px;
  line-height: normal;
}
.image-preview-multiple ._item img {
  display: block;
  width: 80px;
  height: 80px;
  padding: 0 10px 6px;
}


/* Errors */
.error, .error .select2-choice {
    border-color: #da0 !important;  
}
.error-bits {
    padding: 10px 15px;
}
.error-bits ul {
    list-style: none;
    margin: 0px;
    padding: 0px;
}
.error-bits ul li {
    padding: 5px;
}


/* Tooltips */
.tooltip {
    position: relative;
    display: inline-block;
    cursor: pointer;
}
.tooltip .tooltiptext {
    visibility: hidden;
    width: 250px;
    bottom: 100%;
    left: 50%; 
    margin-left: -80px;
    background-color: black;
    color: #fff;
    text-align: center;
    padding: 7px;
    border-radius: 4px;
    position: absolute;
    z-index: 1;
}
.tooltip { color: #ccc !important; }
.tooltip:hover .tooltiptext,
.tooltip:active .tooltiptext {
    margin: 0 auto;
    visibility: visible;
    font-family: Roboto, Helvetica, Arial, sans-serif;
    font-size: 13px;
    line-height: 18px;
}


/* Employer Wizard */
.highlight-item h2 { 
    font-weight: 500;
}
.highlight-item .thin-short-stop {
    border-color: #CC518F;
}
.button-select {
    border-color: #a6a6a6;
    background-color: #a6a6a6;
    color: #fff !important;
    -webkit-transition: background-color .1s, border-color .1s; transition: background-color .1s, border-color .1s;
}
.button-select:before {
    content: "Select";
}
.button-select:hover { border-color: #8c8c8c; background-color: #8c8c8c; color: #fff !important; }

.selected-item .button-select:before { 
    content: "Selected" !important;
    font-weight: 500;
}
.selected-item .button-select {
    cursor: not-allowed;
}
.highlight-item .button-select {
    border-color: #CC518F;
    background-color: #CC518F;
    color: #fff !important;
    -webkit-transition: background-color .1s, border-color .1s; transition: background-color .1s, border-color .1s;
}
.highlight-item .button-select:hover {
    border-color: #bf4d86;
    background-color: #bf4d86;
    color: #fff !important;
}
li.list-basic:before {    
    font-family: FontAwesome;
    content: '\f00c';
    margin-right: 10px;
    margin-left: -25px;
    color: #ccc;
}
li.list-premium:before {    
    font-family: FontAwesome;
    content: '\f00c';
    margin-right: 10px;
    margin-left: -25px;
    color: #bf4d86;
}


/* New Flow */
.new-flow-wrap {
    position: fixed;
    height: 100%;
}
.new-flow-left {
    position: relative;
    height: 100%;
}
.new-flow-shade {
    position: relative;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,.25);
}
.new-flow-left-footer {
    display: none;
    position: absolute;
    width: 100%;
    left: 0;
    bottom: 0;
}
.new-flow-right {
    position: relative;
    height: 100%;
}
.new-flow-right-content {
    position: absolute;
    padding: 100px;
    width: 100%;
    height: 100%;
    overflow-y: scroll;
}
.new-flow-right-footer {
    position: absolute;
    width: 100%;
    left: 0;
    bottom: 0;
    height: 90px;
    background: #F5F5F5;
}
.new-flow-error ul {
    margin: 0px 0px 0px 1em;
    padding: 0px;
}
.new-flow-error ul li {
    margin: 5px 0;
    padding: 0px;
}
@media (max-width: 1200px) {
    .new-flow-right-content {
        padding: 100px 75px;
    }
}
@media (max-width: 1024px) {
    .new-flow-wrap {
        position: inherit;
        height: auto;
    }
    .new-flow-left {
        width: 100%;
        height: auto;
    }
    .new-flow-shade {
        padding-bottom: 100px;
    }
    .new-flow-right {
        width: 100%;
        height: auto;
    }
    .new-flow-left-footer {
        display: none;
    }
    .new-flow-right-content {
        position: inherit;
        padding: 75px 100px 100px;
    }
    .new-flow-right-footer {
        position: fixed;
    }
}
@media (max-width: 900px) {
    .new-flow-left {
        height: auto;
    }
    .new-flow-shade {
        padding-bottom: 50px;
    }
}
@media (max-width: 600px) {
    .new-flow-left {
        height: auto;
    }
    .new-flow-shade {
        padding-bottom: 0px;
    }
    .new-flow-right-content {
        padding: 75px 20px 100px;
    }
}


/* Pagination */
ul.pagination {
    list-style: none;
    margin: 0; padding: 0;
}
ul.pagination li {
    display: inline-block;
}
ul.pagination li a {
    display: inline-block;
    padding: 11px 19px;
    border: 1px solid #d9d9d9;
    border-radius: 4px;
    color: #a6a6a6;
}
ul.pagination li a:hover {
    text-decoration: none;
    color: #333;
}
ul.pagination li.active a {
    background: #da0;
    border-color: #da0;
    font-weight: bold;
    color: #fff;
}
ul.pagination li a.disabled {
    color: #ccc;
}
ul.pagination li a.disabled:hover {
    background: #f2f2f2;
    color: #ccc;
}


/* Match Results */
.responsive-card {
    border: 1px solid #e6e6e6;
    border-radius: 4px;
}
@media (max-width: 600px) { 
    .responsive-card {
        border-width: 1px 0px;
        border-radius: 0px;
    }
}


/* Styled Checkboxes */
.styled-checkbox input[type=checkbox] {
    display: none !important;
}
.styled-checkbox input[type=checkbox] + span {
    display: inline-block;
    width: 24px;
    height: 24px;
    vertical-align: top;
    background-color: #ECECEC;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.25s;
}
.styled-checkbox input[type=checkbox]:checked + span {
    background-color: #da0;
    background-image: url("/assets/img/v5/icon-check-white.34eded8d1fc3.png?41def3f8b0a5");
    background-size: cover;
    background-position: center center;
}


/* Styled Radio Buttons */
.styled-radiobutton input {
    display: none;
}
.styled-radiobutton input[type=radio] + span {
    display: inline-block;
    width: 24px;
    height: 24px;
    vertical-align: top;
    background-color: #e6e6e6;
    border-radius: 100px;
    cursor: pointer;
    transition: background-color 0.25s;
}
.styled-radiobutton input[type=radio]:checked + span {
    background-color: #da0;
    background-image: url("/assets/img/v5/icon-check-white.34eded8d1fc3.png?41def3f8b0a5");
    background-size: cover;
    background-position: center center;
}


/* Styled Toggles */
.toggle { position: absolute; margin-left: -9999px; visibility: hidden; }
.toggle + span {
    display: block;
    position: relative;
    cursor: pointer;
    outline: none;
    user-select: none;
    padding: 2px;
    width: 44px;
    height: 24px;
    background-color: #e6e6e6;
    border-radius: 100px;
    transition: background-color 0.25s;
}
.toggle + span:before,
.toggle + span:after {
    display: block;
    position: absolute;
    top: 2px;
    left: 2px;
    bottom: 2px;
    content: "";
}
.toggle + span:after {
    height: 20px;
    width: 20px;
    background-color: #fff;
    border-radius: 100%;
    transition: margin 0.15s;
}
.toggle:checked + span {
    background-color: #da0;
}
.toggle:checked + span:after {
    margin-left: 20px;
}


/* Flipper */
.flipper-lr {
    float: left;
    margin-right: 8px;
    margin-left: 0px;
}
@media (max-width: 600px) { 
    .flipper-lr {
        float: right;
        margin-right: 0px;
        margin-left: 8px;
    }
}


/* Squares */
.square-36 {
    display: block;
    width: 36px;
    height: 36px;
}
.square-left {
    float: left;
    margin-right: 4px;
}
.square-right {
    float: right;
    margin-left: 4px;
}
.square {
    background-size: cover;
    background-repeat: no-repeat;
}


/* Messages */
.selectathread {
    background: #f3f3f3;
}


/* V6 Styles */

button.v6-button {
    font-family: Roboto;
}

.v6-button {
    -webkit-appearance: none;
    -moz-appearance: none;
    outline: none;
    display: inline-flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    background: transparent;
    border-width: 1px;
    border-style: solid;
    border-color: transparent;
    border-radius: 100px;
    text-decoration: none !important;
    text-align: center;
    padding: 0px 20px;
    cursor: pointer;
}
.v6-button-28 {
    height: 28px;
    padding: 0px 12px;
}
.v6-button-32 {
    height: 32px;
    padding: 0px 12px;
}
.v6-button-36 {
    height: 36px;
    padding: 0px 16px;
}
.v6-button-40 {
    height: 40px;
}
.v6-button-48 {
    height: 48px;
    padding: 0px 24px;
}
.v6-button-56 {
    height: 56px;
    padding: 0px 28px;
}
.v6-button-white {
    border-color: #fff;
    color: #fff;
}
.v6-button-solid-white {
    border-color: #fff;
    background-color: #fff;
    color: #333;
}
.v6-button-muted {
    border-color: #e6e6e6;
    color: #999;
}
.v6-button-solid-muted {
    border-color: #e6e6e6;
    background-color: #e6e6e6;
    color: #333;
}
.v6-button-solid-light {
    border-color: #f8f8f8;
    background-color: #f8f8f8;
    color: #333;
}
.v6-button-dark {
    border-color: #333;
    color: #333;
}
.v6-button-solid-dark {
    border-color: #333;
    background-color: #333;
    color: #fff;
}
.v6-button-color {
    border-color: #da0;
    color: #da0;
}
.v6-button-solid-color {
    border-color: #da0;
    background-color: #da0;
    color: #fff;
}

.v6-button-toggle input {
    display: none;
}
.v6-button-toggle input:checked + div {
    background-color: #333;
    border-color: #333;
    color: #fff;
}

.v6-circle {
    display: inline-flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    border-radius: 100px;
    padding: 0px;
}
.v6-circle-36 {
    width: 36px;
    height: 36px;
}
.v6-circle-48 {
    width: 48px;
    height: 48px;
}

.v6-vertical-scroll {
    overflow-y: auto; 
    -webkit-overflow-scrolling: touch;
}

.bg-error {
    background-color: #d00;
}
.bg-success {
    background-color: #0b0;
}
.color-error {
    color: #d00;
}

.side-menu-wrap {
    display: none;
    position: fixed;
    top: 0px;
    bottom: 0px;
    left: 0px;
    right: 0px;
    background: rgba(0,0,0,.4);
    z-index: 2500;
}
.side-menu {
    position: fixed;
    top: 0px;
    bottom: 0px;
    width: 400px;
    z-index: 2600;
    overflow-x: auto;
    /*box-shadow: 0px 0px 80px 0px rgba(0,0,0,.2);*/
}
.side-menu-left {
    left: -400px;
    -webkit-transition: left .12s ease-in;
    transition: left .12s ease-in;
}
.side-menu-right {
    right: -400px;
    -webkit-transition: right .12s ease-in;
    transition: right .12s ease-in;
}
.toggle-checkbox {
    display: none !important;
}
#toggle-left-menu:checked ~ .side-menu-wrap-left {
    display: block;
}
#toggle-right-menu:checked ~ .side-menu-wrap-right {
    display: block;
}
#toggle-left-menu:checked ~ .side-menu-left {
    left: 0px;
}
@media (max-width: 600px) {
    #toggle-left-menu:checked ~ .side-menu-left {
        width: 100%;
    }
}
#toggle-right-menu:checked ~ .side-menu-right {
    right: 0px;
}
@media (max-width: 600px) {
    #toggle-right-menu:checked ~ .side-menu-right {
        width: 100%;
    }
}
.v6-nav-list a,
.v6-nav-list label {
    display: flex;
    align-items: center;
    border-bottom: 1px solid #e6e6e6;
    padding: 12px 0px;
}
.avatar {
    display: block;
    background-color: #f8f8f8;
    border-radius: 100px;
    overflow: hidden;                
}
.avatar-36 {
    width: 36px;
    height: 36px;
}
.avatar-80 {
    width: 80px;
    height: 80px;
}
.avatar-100 {
    width: 100px;
    height: 100px;
}
.avatar img {
    width: 100%;
}
header.bg-white .link-white {
    color: #333;
}
header.bg-white .icon-burger { background-position: -36px 0px; }
header.bg-white .icon-search { background-position: -108px 0px; }
header.bg-white .icon-avatar { background-position: -216px -72px; }

/* Sprite Icons */
.icon {
    display: inline-block;
    width: 36px;
    height: 36px;
    border-radius: 4px;
    background-repeat: no-repeat;
    background-image: url("/assets/img/v5/sprite-icon.acf2ce0f6721.png?c9eaffe75781");
    background-size: 360px;
    background-position: 0px 0px;
}
.icon-24 {
    display: inline-block;
    width: 24px;
    height: 24px;
    border-radius: 4px;
    background-repeat: no-repeat;
    background-image: url("/assets/img/v5/sprite-icon.acf2ce0f6721.png?c9eaffe75781");
    background-size: 240px;
    background-position: 0px 0px;
}
.icon-36 {
    display: inline-block;
    width: 36px;
    height: 36px;
    border-radius: 4px;
    background-repeat: no-repeat;
    background-image: url("/assets/img/v5/sprite-icon.acf2ce0f6721.png?c9eaffe75781");
    background-size: 360px;
    background-position: 0px 0px;
}
.icon-108 {
    position: relative;
    width: 108px;
    height: 108px;
    background-size: 1080px;
    background-position: 0px 0px;
}
.icon-burger { background-position: -36px 0px; }
.icon-burger.reverse { background-position: -36px -36px; }
.icon-close { background-position: -72px 0px; }
.icon-search { background-position: -108px 0px; }
.icon-search.reverse { background-position: -108px -36px; }
.icon-office { background-position: -180px 0px; }
.icon-book { background-position: -216px 0px; }
.icon-logout { background-position: -252px 0px; }
.icon-check { background-position: -288px 0px; }
.icon-clock { background-position: -324px 0px; }
.icon-gears { background-position: 0px -72px; }
.icon-info { background-position: 0px -144px; }
.icon-heart { background-position: -36px -72px; }
.icon-bookmark { background-position: -72px -72px; }
.icon-profile { background-position: -108px -72px; }
.icon-job { background-position: -144px -72px; }
.icon-help { background-position: -180px -72px; }
.icon-avatar { background-position: -216px -72px; }
.icon-avatar.reverse { background-position: -216px -108px; }
.icon-star { background-position: -252px -72px; }
.icon-star.reverse { background-position: -252px -108px; }
.icon-group { background-position: -288px -72px; }
.icon-login { background-position: -324px -72px; }
.icon-poll { background-position: -36px -144px; }
.icon-onward { background-position: -72px -144px; }
.icon-share { background-position: -108px -144px; }
.icon-secret { background-position: -144px -144px; }
.icon-small-close { background-position: -180px -144px; }
.icon-small-close.reverse { background-position: -180px -180px; }


.v6-shadow-large {
    box-shadow: 0px 20px 120px 0px rgba(0,0,0,.04);
}





/* End V6 Styles */






/* Special padding */
.padding-40to20 { padding: 40px; }
.padding-80to40 { padding: 80px; }
.padding-80to20 { padding: 80px; }
@media (max-width: 1024px) {
    .padding-40to20 { padding: 40px; }
    .padding-80to40 { padding: 80px; }
    .padding-80to20 { padding: 60px; }
}
@media (max-width: 900px) {
    .padding-40to20 { padding: 20px; }
    .padding-80to40 { padding: 40px; }
    .padding-80to20 { padding: 40px; }
}
@media (max-width: 600px) {
    .padding-40to20 { padding: 20px; }
    .padding-80to40 { padding: 40px; }
    .padding-80to20 { padding: 20px; }
}


/* Large Styles */
@media (max-width: 1024px) {
    .large-hide { display: none !important; }
    .large-show { display: block !important; }
    
    .large-padding-30 { padding: 30px; }
    
    .large-align-center { text-align: center; }
    
    .large-full-center { top: 50%; left: 50%; -webkit-transform: translate(-50%, -50%); -ms-transform: translate(-50%, -50%); transform: translate(-50%, -50%); }
    
    .large-col-1of24 { width: 2.083333333333%; }
    .large-col-2of24 { width: 6.25%; }
    .large-col-3of24 { width: 10.416666666667%; }
    .large-col-4of24 { width: 14.583333333333%; }
    .large-col-5of24 { width: 18.75%; }
    .large-col-6of24 { width: 22.916666666667%; }
    .large-col-7of24 { width: 27.083333333333%; }
    .large-col-8of24 { width: 31.25%; }
    .large-col-9of24 { width: 35.416666666667%; }
    .large-col-10of24 { width: 39.583333333333%; }
    .large-col-11of24 { width: 43.75%; }
    .large-col-12of24 { width: 47.916666666667%; }
    .large-col-13of24 { width: 52.083333333333%; }
    .large-col-14of24 { width: 56.25%; }
    .large-col-15of24 { width: 60.416666666667%; }
    .large-col-16of24 { width: 64.583333333333%; }
    .large-col-17of24 { width: 68.75%; }
    .large-col-18of24 { width: 72.916666666667%; }
    .large-col-19of24 { width: 77.083333333333%; }
    .large-col-20of24 { width: 81.25%; }
    .large-col-21of24 { width: 85.416666666667%; }
    .large-col-22of24 { width: 89.583333333333%; }
    .large-col-23of24 { width: 93.75%; }
    .large-col-24of24 { width: 97.916666666667%; }
    .large-full-width { width: 100%; margin-left: 0px; margin-right: 0px; }
}


/* Medium Styles */
@media (max-width: 900px) {
    .medium-hide { display: none !important; }
    .medium-show { display: block !important; }
    .medium-flex { display: flex !important; }
    .medium-flex-column { flex-direction: column; }
    .medium-inline { display: inline !important; }
    .medium-block { display: block !important; }
    .medium-tr { display: table-row !important; }
    
    .medium-col-1of24 { width: 2.083333333333%; }
    .medium-col-2of24 { width: 6.25%; }
    .medium-col-3of24 { width: 10.416666666667%; }
    .medium-col-4of24 { width: 14.583333333333%; }
    .medium-col-5of24 { width: 18.75%; }
    .medium-col-6of24 { width: 22.916666666667%; }
    .medium-col-7of24 { width: 27.083333333333%; }
    .medium-col-8of24 { width: 31.25%; }
    .medium-col-9of24 { width: 35.416666666667%; }
    .medium-col-10of24 { width: 39.583333333333%; }
    .medium-col-11of24 { width: 43.75%; }
    .medium-col-12of24 { width: 47.916666666667%; }
    .medium-col-13of24 { width: 52.083333333333%; }
    .medium-col-14of24 { width: 56.25%; }
    .medium-col-15of24 { width: 60.416666666667%; }
    .medium-col-16of24 { width: 64.583333333333%; }
    .medium-col-17of24 { width: 68.75%; }
    .medium-col-18of24 { width: 72.916666666667%; }
    .medium-col-19of24 { width: 77.083333333333%; }
    .medium-col-20of24 { width: 81.25%; }
    .medium-col-21of24 { width: 85.416666666667%; }
    .medium-col-22of24 { width: 89.583333333333%; }
    .medium-col-23of24 { width: 93.75%; }
    .medium-col-24of24 { width: 97.916666666667%; }
    .medium-full-width { width: 100%; margin-left: 0px; margin-right: 0px; }
    
    .medium-align-left { text-align: left; }
    .medium-align-center { text-align: center; }
    
    .medium-padding-0 { padding: 0px; }
    .medium-padding-50 { padding: 50px; }
    .medium-padding-30 { padding: 30px; }
    .medium-padding-40 { padding: 40px; }
    .medium-padding-top-0 { padding-top: 0px; }
    .medium-padding-top-20 { padding-top: 20px; }
    .medium-padding-top-25 { padding-top: 25px; }
    .medium-padding-right-0 { padding-right: 0px; }
    
    .medium-padding-sides-20 { padding-left: 20px; padding-right: 20px; }
    
    .medium-padding-16x9 { padding-bottom: 56.25%; }
    
    .medium-no-border { border: none; }
    .medium-border-left { border-left: 1px solid #e6e6e6; }
    .medium-border-bottom { border-bottom: 1px solid #e6e6e6; }
    .medium-dotted-bottom { border-bottom: 1px dotted #e6e6e6; }
    
    .medium-round-top { border-radius: 4px 4px 0px 0px; }
    
    .medium-bg-light-grey { background: #f7f7f7 !important; }
    
    .frame-950 .col { margin-left: 1.041666666667%; margin-right: 1.041666666667%; }
    .frame-950 .medium-col-2of24 { width: 6.25%; }
    .frame-950 .medium-col-8of24 { width: 31.25%; }
    .frame-950 .medium-col-10of24 { width: 39.583333333333%; }
    .frame-950 .medium-col-12of24 { width: 47.916666666667%; }
    .frame-950 .medium-col-14of24 { width: 56.25%; }
    .frame-950 .medium-col-24of24 { width: 97.916666666667%; }
    
    .medium-slice-6of24 { width: 25%; }
    .medium-slice-12of24 { width: 50%; }
    .medium-slice-18of24 { width: 75%; }
    .medium-slice-24of24 { width: 100%; }
    
    .medium-flex-1 { flex: 1; }
    .medium-flex-2 { flex: 2; }
    .medium-flex-3 { flex: 3; }

    .bg-attach { background-attachment: scroll; }
    
    .recently-rated { height: 750px !important; }

    #bg-video { display: none; }
    
    .bg-hero {
        background-image: url("https://ucare.inhersight.com/75576095-7ccd-485b-973f-958deb4a14d5/-/progressive/yes/");
        background-repeat: no-repeat;
        background-position: center center; 
        background-size: cover;
    }
    
}


/* Small Styles */
@media (max-width: 600px) {  
    .frame, .frame-950 { padding-left: 20px; padding-right: 20px; }

    h1, .size-h1 { font-size: 40px; line-height: 45px; }

    .small-hide { display: none !important; }
    .small-show { display: block !important; }
    .small-inline { display: inline !important; }
    .small-block { display: block !important; }
    .small-flex { display: flex !important; }
    .small-li { display: list-item !important; }
    
    /*.size-medium { line-height: 26px; }*/
    .small-size-small { font-size: 13px; line-height: 20px; }
    .small-size-24 { font-size: 24px; line-height: 32px; }
    .small-size-32 { font-size: 32px; line-height: 38px; }
    .small-size-36 { font-size: 36px; line-height: 42px; }
    .small-size-40 { font-size: 40px; line-height: 48px; }
    
    .small-col-1of24 { width: 2.083333333333%; }
    .small-col-2of24 { width: 6.25%; }
    .small-col-3of24 { width: 10.416666666667%; }
    .small-col-4of24 { width: 14.583333333333%; }
    .small-col-5of24 { width: 18.75%; }
    .small-col-6of24 { width: 22.916666666667%; }
    .small-col-7of24 { width: 27.083333333333%; }
    .small-col-8of24 { width: 31.25%; }
    .small-col-9of24 { width: 35.416666666667%; }
    .small-col-10of24 { width: 39.583333333333%; }
    .small-col-11of24 { width: 43.75%; }
    .small-col-12of24 { width: 47.916666666667%; }
    .small-col-13of24 { width: 52.083333333333%; }
    .small-col-14of24 { width: 56.25%; }
    .small-col-15of24 { width: 60.416666666667%; }
    .small-col-16of24 { width: 64.583333333333%; }
    .small-col-17of24 { width: 68.75%; }
    .small-col-18of24 { width: 72.916666666667%; }
    .small-col-19of24 { width: 77.083333333333%; }
    .small-col-20of24 { width: 81.25%; }
    .small-col-21of24 { width: 85.416666666667%; }
    .small-col-22of24 { width: 89.583333333333%; }
    .small-col-23of24 { width: 93.75%; }
    .small-col-24of24 { width: 97.916666666667%; }
    .small-full-width { width: 100%; margin-left: 0px; margin-right: 0px; }
    
    .frame-950 .small-col-2of24 { width: 6.25%; }
    .frame-950 .small-col-4of24 { width: 14.583333333333%; }
    .frame-950 .small-col-8of24 { width: 31.25%; }
    .frame-950 .small-col-12of24 { width: 47.916666666667%; }
    .frame-950 .small-col-20of24 { width: 81.25%; }
    .frame-950 .small-col-22of24 { width: 89.583333333333%; }
    .frame-950 .small-col-24of24 { width: 97.916666666667%; }
    
    .small-slice-6of24 { width: 25%; }
    .small-slice-12of24 { width: 50%; }
    .small-slice-18of24 { width: 75%; }
    .small-slice-24of24 { width: 100%; }
    
    .small-block { display: block !important; }
    
    .small-flex-column { flex-direction: column; }
    .small-flex-stretch { align-items: stretch; }
    .small-flex-column-reverse { flex-direction: column-reverse; }
    
    .small-flex-1 { flex: 1; }
    .small-flex-2 { flex: 2; }
    .small-flex-3 { flex: 3; }
    
    .small-height-normal { min-height: none !important; }
    
    .small-padding-6x4 { padding-bottom: 66%; }
    .small-padding-4x4 { padding-bottom: 100%; }
    
    .small-margin-bottom-25 { margin-bottom: 25px; }
    .small-margin-bottom-40 { margin-bottom: 40px; }
    
    .small-padding-0 { padding: 0px; }
    .small-padding-10 { padding: 10px; }
    .small-padding-20 { padding: 20px; }
    .small-padding-25 { padding: 25px; }
    .small-padding-20 { padding: 20px; }
    .small-padding-40 { padding: 40px; }
    .small-padding-50 { padding: 50px; }
    
    .small-padding-top-0 { padding-top: 0px; }
    .small-padding-top-20 { padding-top: 20px; }
    .small-padding-top-25 { padding-top: 25px; }
    .small-padding-top-50 { padding-top: 50px; }
    .small-padding-top-75 { padding-top: 75px; }
    .small-padding-top-200 { padding-top: 200px; }
    .small-padding-bottom-20 { padding-bottom: 20px; }
    .small-padding-bottom-100 { padding-bottom: 100px; }
    .small-padding-right-20 {padding-right: 20px;}
    
    .small-padding-sides-20 { padding-left: 20px; padding-right: 20px; }
    
    .small-flush-right { padding-right: 0px; margin-right: 0px; }
    .small-flush-left { padding-left: 0px; margin-left: 0px; }
    
    .small-align-left { text-align: left; }
    .small-align-right { text-align: right; }
    .small-align-center { text-align: center; }
    
    .recently-rated { height: 1500px !important; }
    
    .small-no-border-bottom { border-bottom: none !important; }
    .small-no-border-top { border-top: none !important; }
    
    .small-border-top { border-top: 1px solid #e6e6e6; }
    .small-border-bottom { border-bottom: 1px solid #e6e6e6; }
    .small-dotted-bottom { border-bottom: 1px dotted #e6e6e6; }
    .small-border-right { border-right: 1px solid #e6e6e6; }
    
    .small-no-round { border-radius: 0px; }
    
    .small-bg-light-grey { background-color: #f8f8f8; }
    
    .shrink td { display: block; border-left-width: 1px; border-right-style: solid; border-right-width: 1px; width: 100% !important; }
    .shrink .label { text-align: center; padding-bottom: 0px; border-bottom: 0px; }
    .shrink .rating { text-align: center; border-top: 0px; }
    
    .table-shrink td { display: block; border-left: none; border-right: none; width: 100% !important; }
    .table-shrink .label { padding-bottom: 0px; border-bottom: 0px; }
    .table-shrink .rating { text-align: left; border-top: 0px; border-bottom: 0px; padding-left: 0px; }
    
    .scales .scale-frame {
        width: 200px;
        height: 200px;
    }
}


/* Stop the zooming on mobile */
select, textarea, input[type="text"], input[type="password"], input[type="datetime"], input[type="datetime-local"], input[type="date"], input[type="month"], input[type="time"], input[type="week"], input[type="number"], input[type="email"], input[type="url"], input[type="search"], input[type="tel"], input[type="color"] { font-size: 16px; }