/* Minification failed. Returning unminified contents.
(2579,19): run-time error CSS1046: Expect comma, found '51'
(2579,24): run-time error CSS1046: Expect comma, found ')'
 */
/*
Version: 3.5.0 Timestamp: Mon Jun 16 19:29:44 EDT 2014
*/
.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(to top, #eee 0%, #fff 50%);
}

html[dir="rtl"] .select2-container .select2-choice {
    padding: 0 8px 0 0;
}

.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(to bottom, #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;
    float: none;
    width: auto;
}

html[dir="rtl"] .select2-container .select2-choice > .select2-chosen {
    margin-left: 26px;
    margin-right: 0;
}

.select2-container .select2-choice abbr {
    display: none;
    width: 12px;
    height: 12px;
    position: absolute;
    right: 45px;
    top: 15px;

    font-size: 1px;
    text-decoration: none;

    border: 0;
    background: url(/IRT/Content/css/config/select2/select2.png) 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 rgb(217, 217, 217) !important;
    border-top: 0;
    border-radius: 0 0 4px 4px;
    -webkit-box-shadow: 0 4px 5px rgba(0, 0, 0, .15);
    box-shadow: none;
}

.select2-drop.select2-drop-above {
    margin-top: -5px !important;
    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-drop-auto-width {
    border-top: 1px solid #aaa;
    width: auto;
}

.select2-drop-auto-width .select2-search {
    padding-top: 4px;
}

.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(to top, #ccc 0%, #eee 60%);
}

html[dir="rtl"] .select2-container .select2-choice .select2-arrow {
    left: 0;
    right: auto;

    border-left: none;
    border-right: 1px solid #aaa;
    border-radius: 4px 0 0 4px;
}

.select2-container .select2-choice .select2-arrow b {
    display: block;
    width: 100%;
    height: 100%;
    background: url(/IRT/Content/css/config/select2/select2.png) no-repeat 0 1px;
}

html[dir="rtl"] .select2-container .select2-choice .select2-arrow b {
    background-position: 2px 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(/IRT/Content/css/config/select2/select2.png) no-repeat 100% -22px;
    background: url(/IRT/Content/css/config/select2/select2.png) no-repeat 100% -22px, -webkit-gradient(linear, left bottom, left top, color-stop(0.85, #fff), color-stop(0.99, #eee));
    background: url(/IRT/Content/css/config/select2/select2.png) no-repeat 100% -22px, -webkit-linear-gradient(center bottom, #fff 85%, #eee 99%);
    background: url(/IRT/Content/css/config/select2/select2.png) no-repeat 100% -22px, -moz-linear-gradient(center bottom, #fff 85%, #eee 99%);
    background: url(/IRT/Content/css/config/select2/select2.png) no-repeat 100% -22px, linear-gradient(to bottom, #fff 85%, #eee 99%) 0 0;
}

html[dir="rtl"] .select2-search input {
    padding: 4px 5px 4px 20px;

    background: #fff url(/IRT/Content/css/config/select2/select2.png) no-repeat -37px -22px;
    background: url(/IRT/Content/css/config/select2/select2.png) no-repeat -37px -22px, -webkit-gradient(linear, left bottom, left top, color-stop(0.85, #fff), color-stop(0.99, #eee));
    background: url(/IRT/Content/css/config/select2/select2.png) no-repeat -37px -22px, -webkit-linear-gradient(center bottom, #fff 85%, #eee 99%);
    background: url(/IRT/Content/css/config/select2/select2.png) no-repeat -37px -22px, -moz-linear-gradient(center bottom, #fff 85%, #eee 99%);
    background: url(/IRT/Content/css/config/select2/select2.png) no-repeat -37px -22px, linear-gradient(to bottom, #fff 85%, #eee 99%) 0 0;
}

.select2-drop.select2-drop-above .select2-search input {
    margin-top: 4px;
}

.select2-search input.select2-active {
    background: #fff url(/IRT/Content/css/config/select2/select2-spinner.gif) no-repeat 100%;
    background: url(/IRT/Content/css/config/select2/select2-spinner.gif) no-repeat 100%, -webkit-gradient(linear, left bottom, left top, color-stop(0.85, #fff), color-stop(0.99, #eee));
    background: url(/IRT/Content/css/config/select2/select2-spinner.gif) no-repeat 100%, -webkit-linear-gradient(center bottom, #fff 85%, #eee 99%);
    background: url(/IRT/Content/css/config/select2/select2-spinner.gif) no-repeat 100%, -moz-linear-gradient(center bottom, #fff 85%, #eee 99%);
    background: url(/IRT/Content/css/config/select2/select2-spinner.gif) no-repeat 100%, linear-gradient(to bottom, #fff 85%, #eee 99%) 0 0;
}

.select2-container-active .select2-choice,
.select2-container-active .select2-choices {
    border: 1px solid #5897fb;
    outline: none;  
}

.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(to 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(to bottom, #fff 0%, #eee 50%);
}

.select2-dropdown-open .select2-choice .select2-arrow {
    background: transparent;
    border-left: none;
    filter: none;
}
html[dir="rtl"] .select2-dropdown-open .select2-choice .select2-arrow {
    border-right: none;
}

.select2-dropdown-open .select2-choice .select2-arrow b {
    background-position: -18px 1px;
}

html[dir="rtl"] .select2-dropdown-open .select2-choice .select2-arrow b {
    background-position: -16px 1px;
}

.select2-hidden-accessible {
    border: 0;
    clip: rect(0 0 0 0);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
    display:none;
}

/* 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);
}

html[dir="rtl"] .select2-results {
    padding: 0 4px 0 0;
    margin: 4px 0 4px 4px;
}

.select2-results ul.select2-result-sub {
    margin: 0;
    padding-left: 0;
}

.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;
    word-break: normal;
    word-wrap: break-word;
    min-height: 1em;

    -webkit-touch-callout: none;
      -webkit-user-select: none;
         -moz-user-select: none;
          -ms-user-select: none;
              user-select: none;
}

.select2-results-dept-1 .select2-result-label { padding-left: 20px }
.select2-results-dept-2 .select2-result-label { padding-left: 40px }
.select2-results-dept-3 .select2-result-label { padding-left: 60px }
.select2-results-dept-4 .select2-result-label { padding-left: 80px }
.select2-results-dept-5 .select2-result-label { padding-left: 100px }
.select2-results-dept-6 .select2-result-label { padding-left: 110px }
.select2-results-dept-7 .select2-result-label { padding-left: 120px }

.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;
    padding-left: 5px;
}

/*
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(/IRT/Content/css/config/select2/select2-spinner.gif) 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 5px 0 0;
    position: relative;
    border: 1px solid rgb(217, 217, 217) !important;
    cursor: text;
    overflow: hidden;
    border-radius: 3px;
    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(to bottom, #eee 1%, #fff 15%);
}

html[dir="rtl"] .select2-container-multi .select2-choices {
    padding: 0 0 0 5px;
}

.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 rgb(217, 217, 217) !important;
    outline: none;
    -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, .3);
    box-shadow: none;
}
.select2-container-multi .select2-choices li {
    float: left;
    list-style: none;
}
html[dir="rtl"] .select2-container-multi .select2-choices li
{
    float: right;
}
.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(/IRT/Content/css/config/select2/select2-spinner.gif) no-repeat 100% !important;
}

.select2-default {
    color: #999 !important;
}

.select2-container-multi .select2-choices .select2-search-choice {
    padding: 5px 18px 5px 8px;
    margin: 3px 0 3px 5px;
    position: relative;
    line-height: 23px;
    cursor: default;
    background-color: rgba(5, 87, 213, 0);
    color: rgb(51, 51, 51);
    border: 1px solid rgb(128, 128, 128);
    border-radius: 30px;   
}

    .select2-container-multi .select2-choices .select2-search-choice:hover {
        border: 1px solid rgb(1,61,152);
        background-color: rgba(5, 87, 213, 0.08);
        color: rgb(1,61,152) !important;
    }
html[dir="rtl"] .select2-container-multi .select2-choices .select2-search-choice
{
    margin: 3px 5px 3px 0;
    padding: 3px 18px 3px 5px;
}
.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(/IRT/Content/css/config/select2/select2.png) right top no-repeat;
}
html[dir="rtl"] .select2-search-choice-close {
    right: auto;
    left: 3px;
}

.select2-container-multi .select2-search-choice-close {
    right: 4px;
    top: 27%;
}

html[dir="rtl"] .select2-container-multi .select2-search-choice-close {
    left: auto;
    right: 2px;
}

.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: #f2f2f2;
    background-image: none;
    border: 1px solid #ddd;
    cursor: default;
}

.select2-container-multi.select2-container-disabled .select2-choices .select2-search-choice {
    padding: 5px 8px;
    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: 2dppx)  {
    .select2-search input,
    .select2-search-choice-close,
    .select2-container .select2-choice abbr,
    .select2-container .select2-choice .select2-arrow b {
        background-image: url(/IRT/Content/css/config/select2/select2.png) !important;
        background-repeat: no-repeat !important;
        background-size: 60px 40px !important;
    }

    .select2-search input {
        background-position: 100% -21px !important;
    }
}

/* line 31, ../sass/_theme.sass */
html, body {
    height: 100%;
}

/* line 33, ../sass/_theme.sass */
body {
    overflow: auto;
    color: #666666;
}

/* line 37, ../sass/_theme.sass */
::selection,
::-moz-selection {
    color: white;
    background: #872175;
}

/* line 42, ../sass/_theme.sass */
h1, h2, h3, tagline {
    text-transform: uppercase;
}

/* line 45, ../sass/_theme.sass */
h1 {
    font-size: 35px;
    color: #569bbe;
    font-weight: bold;
    margin-bottom: 0px;
}

/* line 50, ../sass/_theme.sass */
h2 {
    font-size: 20px;
    font-weight: bold;
}

/* line 53, ../sass/_theme.sass */
h3 {
    font-size: 14px;
    font-weight: bold;
    color: #872175;
}

/* line 57, ../sass/_theme.sass */
h6.hero-text {
    color: #666666;
}

/* line 59, ../sass/_theme.sass */
.tagline {
    font-size: 14px;
    color: #569bbe;
    font-weight: bold;
    margin-bottom: 30px;
}

/* line 64, ../sass/_theme.sass */
label {
    margin-top: 20px;
    color: #666666;
    white-space: normal;
}

/* line 68, ../sass/_theme.sass */
p {
    color: #666666;
}

/* line 71, ../sass/_theme.sass */
a {
    color: #569bbe;
    font-size: 14px;
    font-weight: bold;
    -webkit-transition: all 100ms linear;
    -moz-transition: all 100ms linear;
    -ms-transition: all 100ms linear;
    -o-transition: all 100ms linear;
    transition: all 100ms linear;
}
    /* line 76, ../sass/_theme.sass */
    a:hover {
        color: #0768FD;
        text-decoration:underline
    }
    /* line 78, ../sass/_theme.sass */
    a.white {
        color: white;
    }

/* line 81, ../sass/_theme.sass */
.bottom-border {
    position: absolute;
    bottom: -6px;
    height: 5px;
    background: #e8e8e8;
    border-top: 1px solid #cccccc;
    width: 100%;
    z-index: -2;
}

/* line 91, ../sass/_theme.sass */
.overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.5;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=50)";
    filter: alpha(opacity=50);
    -khtml-opacity: 0.5;
    -moz-opacity: 0.5;
    background: black;
    cursor: pointer;
    z-index: 1002;
}

#lpchat {
    position: fixed;
    right: 0;
    top: 30%;
    padding: 30px 0px 30px 30px;
}
/* line 106, ../sass/_theme.sass */
.help-desk {
    position: fixed;
    z-index: 1003;
    right: 0;
    top: 30%;
    background: #ebf7fc;
    border-left: 5px solid #569bbe;
    padding: 30px;
    width: 345px;
    box-sizing: border-box;
    -webkit-transition: all 100ms linear;
    -moz-transition: all 100ms linear;
    -ms-transition: all 100ms linear;
    -o-transition: all 100ms linear;
    transition: all 100ms linear;
    }
    /* line 117, ../sass/_theme.sass */
    .help-desk.closed {
        right: -345px;
    }


        /* line 119, ../sass/_theme.sass */
        .help-desk.closed .hd-toggle {
            background: #569bbe url(/IRT/Content/images/chat-open.png) no-repeat center center;
        }
    /* line 123, ../sass/_theme.sass */
    .help-desk.open .hd-toggle:before {
        position: relative;
        top: -6px;
        content: "\f00d";
        font-family: FontAwesome;
        font-style: normal;
        font-weight: normal;
        text-decoration: inherit;
    }
    /* line 127, ../sass/_theme.sass */
    .help-desk .hd-toggle {
        background: #569bbe;
        width: 73px;
        height: 70px;
        display: block;
        padding: 15px 9px;
        position: absolute;
        top: 0;
        left: -78px;
        cursor: pointer;
        text-align: center;
        color: white;
        font-size: 3em;
    }
    /* line 141, ../sass/_theme.sass */
    .help-desk .hd-body p {
        margin: 10px 0px;
    }
    /* line 143, ../sass/_theme.sass */
    .help-desk .hd-body .action {
        position: relative;
        border-top: 2px solid #cccccc;
        padding: 25px 0px;
        color: #005b82;
        cursor: pointer;
    }
        /* line 149, ../sass/_theme.sass */
        .help-desk .hd-body .action img {
            position: absolute;
            top: 30%;
            left: 20px;
        }
        /* line 153, ../sass/_theme.sass */
        .help-desk .hd-body .action span {
            margin: 0px 10px 0px 65px;
        }
        /* line 155, ../sass/_theme.sass */
        .help-desk .hd-body .action:hover {
            border-top: 2px solid #569bbe;
            background: white;
        }

/* line 161, ../sass/_theme.sass */
.centered {
    text-align: center;
}

/* line 165, ../sass/_theme.sass */
.m-selection {
    background: white;
}
    /* line 169, ../sass/_theme.sass */
    .m-selection.stuck {
        position: fixed;
        width: 999px;
        height: 77px;
        top: 65px;
        padding: 10px 0;
        z-index: 5;
    }
    /* line 176, ../sass/_theme.sass */
    .m-selection .select2-container, .m-selection button {
        margin-bottom: 10px;
    }

/* line 180, ../sass/_theme.sass */
.item-row {
    padding-top: 20px;
    border: 1px solid #cccccc;
    margin-bottom: 20px;
    cursor: pointer;
    -webkit-transition: all 100ms linear;
    -moz-transition: all 100ms linear;
    -ms-transition: all 100ms linear;
    -o-transition: all 100ms linear;
    transition: all 100ms linear;
}
    /* line 186, ../sass/_theme.sass */
    .item-row:hover {
        background: #ececec;
    }

/* line 189, ../sass/_theme.sass */
.selection-header {
    margin: 20px 0;
}

/* line 192, ../sass/_theme.sass */
.item-addition {
    padding: 30px 0;
    border: 1px solid #cccccc;
}

/* line 196, ../sass/_theme.sass */
.item-collection {
    border-bottom: 1px solid #cccccc;
    padding: 40px 0;
    -webkit-transition: all 100ms linear;
    -moz-transition: all 100ms linear;
    -ms-transition: all 100ms linear;
    -o-transition: all 100ms linear;
    transition: all 100ms linear;
}
    /* line 200, ../sass/_theme.sass */
    .item-collection label {
        margin-top: 0;
    }
    /* line 202, ../sass/_theme.sass */
    .item-collection .close {
        text-align: center;
    }
        /* line 204, ../sass/_theme.sass */
        .item-collection .close i {
            margin-top: 10px;
            font-size: 2em;
            color: #569bbe;
            cursor: pointer;
        }
        /* line 209, ../sass/_theme.sass */
        .item-collection .close h5 {
            color: white;
        }
        /* line 211, ../sass/_theme.sass */
        .item-collection .close .placed-input {
            border: 3px solid white;
            color: white;
        }
        /* line 215, ../sass/_theme.sass */
        .item-collection .close .close i {
            cursor: pointer;
            color: white;
        }
    /* line 218, ../sass/_theme.sass */
    .item-collection .placed-input {
        border: 3px solid #d7e7f0;
        border-radius: 3px;
        padding: 10px 10px;
        color: #569bbe;
    }

/* line 224, ../sass/_theme.sass */
.item-title {
    text-align: center;
}

/* line 226, ../sass/_theme.sass */
.a-countries {
    background: #eeeeee;
}

/* line 230, ../sass/_theme.sass */
.quanity-selection input[type="text"] {
    width: 60%;
    margin: 0 auto;
}
/* line 233, ../sass/_theme.sass */
.quanity-selection i {
    position: absolute;
    font-size: 1em;
    top: 42px;
    padding: 17px;
    cursor: pointer;
    border-radius: 3px;
    background: #569bbe;
    color: white;
}
/* line 242, ../sass/_theme.sass */
.quanity-selection .plus {
    right: 30px;
}
/* line 244, ../sass/_theme.sass */
.quanity-selection .minus {
    left: 30px;
}

/* line 248, ../sass/_theme.sass */
.country-list {
    margin-top: 20px;
    margin-bottom: 20px;
}

/* line 252, ../sass/_theme.sass */
.step-actions {
    margin-top: 40px;
}
/* line 255, ../sass/_theme.sass */
/*.step-actions button:not(:first-child) {
  margin-left: 10px;
}
*/
/* line 259, ../sass/_theme.sass */
.no-label button {
    position: relative;
    top: 41px;
}

/* line 264, ../sass/_theme.sass */
.table-item i {
    color: #569bbe;
    margin-right: 10px;
}

/* line 268, ../sass/_theme.sass */
.required-field {
    position: relative;
}
    /* line 270, ../sass/_theme.sass */
    .required-field label {
        color: #eb402e;
    }
/* line 272, ../sass/_theme.sass */
.required-text {
    position: absolute;
    left: 110%;
    width: 120%;
    top: 25%;
    color: #eb402e;
    font-style: italic;
}
    /* line 280, ../sass/_theme.sass */
    .required-text span i {
        font-size: 2em;
        position: relative;
        top: 5px;
    }

/* line 285, ../sass/_theme.sass */
.error-notification {
    border-top: 4px solid #d91008;
    position: fixed;
    top: -110px;
    background: #eb402e;
    width: 100%;
    color: white;
    padding: 20px 0;
    z-index: 999999;
    -webkit-transition: all 100ms linear;
    -moz-transition: all 100ms linear;
    -ms-transition: all 100ms linear;
    -o-transition: all 100ms linear;
    transition: all 100ms linear;
    text-align: center;
}
    /* line 295, ../sass/_theme.sass */
    .error-notification i {
        font-size: 1.5em;
    }
    /* line 297, ../sass/_theme.sass */
    .error-notification h2 {
        display: inline-block;
        color: white;
    }
    /* line 300, ../sass/_theme.sass */
    .error-notification.expanded {
        top: 0;
    }

/* line 303, ../sass/_theme.sass */
.add-to-order {
    position: relative;
    top: 37px;
}

/* line 1, ../sass/_header.sass */
body > .header {
    padding: 10px 0;
    z-index: 20;
    position: relative;
    background: white;
    top: 0;
    width: 100%;
    -webkit-transition: all 100ms linear;
    -moz-transition: all 100ms linear;
    -ms-transition: all 100ms linear;
    -o-transition: all 100ms linear;
    transition: all 100ms linear;
}
    /* line 9, ../sass/_header.sass */
    body > .header.plus-error {
        top: 83px;
    }
    /* line 11, ../sass/_header.sass */
    body > .header.fixed {
        position: fixed;
    }
        /* line 13, ../sass/_header.sass */
        body > .header.fixed .bottom-border {
            bottom: -5px;
        }
    /* line 15, ../sass/_header.sass */
    body > .header.condensed {
        font-size: 15px;
    }
        /* line 17, ../sass/_header.sass */
        body > .header.condensed .user-wrapper {
            background: none;
        }
        /* line 19, ../sass/_header.sass */
        body > .header.condensed .nav {
            margin-top: 0px;
        }
            /* line 21, ../sass/_header.sass */
            body > .header.condensed .nav li {
                line-height: 20px;
            }
                /* line 23, ../sass/_header.sass */
                body > .header.condensed .nav li:not(.user-wrapper) {
                    margin-top: 0px;
                }

/* line 27, ../sass/_header.sass */
.nav li {
    list-style-type: none;
}

    /* style for helpdesk icon on the navigation bar*/
    .nav li.helpdeskicon {
        position: relative;
        width: 10% !important;
        background-size: cover;
    }
    /* style for user name on the navigation bar*/
    .nav li.usernamecss {
        position: relative;
        width: 30%;
        background: transparent;
    }
        /* Removes the ugly black border (in chrome only) when focus is on username */
        .nav li.usernamecss:focus {
            outline: none !important;
        }
    /* style for helpdesk icon on the navigation bar*/
    .nav li.studyhomecss {
        position: relative;
        width: 18%;
    }

    .nav li.exitstudycss {
        position: relative;
        width: 16%;
    }

    /* line 29, ../sass/_header.sass */
    .nav li:not(.user-wrapper) {
        margin-top: 5px;
    }
    /* line 31, ../sass/_header.sass */
    .nav li a {
        color: #872175;
        font-size: 14px;
        line-height: 65px;
    }

/* line 38, ../sass/_header.sass */
.header .nav li a {
    text-transform: uppercase;
    font-weight: bold;
}
    /* line 41, ../sass/_header.sass */
    .header .nav li a:hover {
        color: #490c36;
    }

/* line 44, ../sass/_header.sass */
.user-wrapper {
    padding: 20px 1px;
    border-radius: 3px;
    background: transparent;
    position: relative;
    color: #569bbe;
    cursor: pointer;
}

@media only screen and (orientation: portrait) {
    .user-wrapper {
        padding: 30px 1px 10px 1px;
        border-radius: 3px;
        background: transparent;
        position: relative;
        color: #569bbe;
        cursor: pointer;
    }
}

/* line 52, ../sass/_header.sass */
@media only screen and (orientation: landscape) {
    .user-wrapper i {
        margin-left: 5px;
    }
}

@media only screen and (orientation: portrait) {
    .user-wrapper i {
        margin-top: 10px;
    }
}


/* line 54, ../sass/_header.sass */
@media only screen and (orientation: landscape) {
    .user-links {
        position: absolute;
        left: -5px;
        /*  top: 65px;   */
        width: 83%;
        background: #569bbe;
        color: white;
        border-radius: 0px 0px 3px 3px;
        -webkit-transition: all 100ms linear;
        -moz-transition: all 100ms linear;
        -ms-transition: all 100ms linear;
        -o-transition: all 100ms linear;
        transition: all 100ms linear;
        opacity: 1;
    }
}

@media only screen and (orientation: landscape) {
    .help-desk {
        position: fixed;
        z-index: 1002;
        right: 0;
        /*top: 7.2em;*/
        background: #ebf7fc;
        border-left: 5px solid #569bbe;
        padding: 30px;
        width: 345px;
        box-sizing: border-box;
        -webkit-transition: all 100ms linear;
        -moz-transition: all 100ms linear;
        -ms-transition: all 100ms linear;
        -o-transition: all 100ms linear;
        transition: all 100ms linear;
    }
}

@media only screen and (orientation: portrait) {
    .help-desk {
        position: fixed;
        z-index: 1002;
        right: 0;
        /*top: 7.2em;*/
        background: #ebf7fc;
        border-left: 5px solid #569bbe;
        padding: 30px;
        width: 345px;
        box-sizing: border-box;
        -webkit-transition: all 100ms linear;
        -moz-transition: all 100ms linear;
        -ms-transition: all 100ms linear;
        -o-transition: all 100ms linear;
        transition: all 100ms linear;
    }
}

@media only screen and (orientation: portrait) {

    .user-links {
        z-index: 9999;
        position: absolute;
        left: -5px;
        top: 65px;
        width: 78%;
        background: #569bbe;
        color: white;
        border-radius: 0px 0px 3px 3px;
        -webkit-transition: all 100ms linear;
        -moz-transition: all 100ms linear;
        -ms-transition: all 100ms linear;
        -o-transition: all 100ms linear;
        transition: all 100ms linear;
        opacity: 1;
    }
}

@media only screen and (orientation: portrait) {
    .nav li a .ul {
        color: #872175;
        font-size: 14px;
        line-height: 25px;
        margin-left: 0;
    }
}

@media only screen and (orientation: portrait) {
    ul {
        margin-left: .1rem;
    }
}


.user-linksLi {
    color: white;
    font-size: 14px;
    font-weight: bold;
}

/* line 65, ../sass/_header.sass */
.user-links li {
    padding: 5px 10px;
}
    /* line 67, ../sass/_header.sass */
    .user-links li:hover {
        background: #3f81a3;
        cursor: pointer;
    }
/* line 70, ../sass/_header.sass */
.user-links.closed {
    opacity: 0;
    top: 0px;
    height: 0%;
    overflow: hidden;
    z-index: -2;
}

/* line 2, ../sass/_buttons.sass */
button, .button {
    border-radius: 3px;
    background: none;
    padding: 14px;
    position: relative;
}
    /* line 7, ../sass/_buttons.sass */
    button .hover, .button .hover {
        position: absolute;
        height: 100%;
        width: 0%;
        top: 0;
        left: 0;
        z-index: 0;
        transition: none;
    }
    /* line 15, ../sass/_buttons.sass */
    button span, .button span {
        position: relative;
        z-index: 3;
        transition: none;
    }
        /* line 19, ../sass/_buttons.sass */
        button span.expanded, .button span.expanded {
            margin-right: 30px;
        }
    /* line 21, ../sass/_buttons.sass */
    button.right, .button.right {
        float: right;
    }
    /* line 23, ../sass/_buttons.sass */
    button.left, .button.left {
        float: left;
    }
    /* line 25, ../sass/_buttons.sass */
    button:focus, .button:focus {
        color: #872175;
        background: white;
    }
    /* line 28, ../sass/_buttons.sass */
    button.white, .button.white {
        border: 3px solid white;
        color: white;
    }
        /* line 32, ../sass/_buttons.sass */
        button.white:hover .hover, .button.white:hover .hover {
            width: 100%;
            background: white;
        }
        /* line 35, ../sass/_buttons.sass */
        button.white:hover span, .button.white:hover span {
            color: #872175;
        }
    /* line 37, ../sass/_buttons.sass */
    button.purple, .button.purple {
        border: 3px solid #872175;
        color: #872175;
    }
        /* line 41, ../sass/_buttons.sass */
        button.purple:hover .hover, .button.purple:hover .hover {
            width: 100%;
            background: #872175;
        }
        /* line 44, ../sass/_buttons.sass */
        button.purple:hover span, .button.purple:hover span {
            color: white;
        }


    button.grey, .button.grey {
        border: 3px solid #808080;
        color: #808080;
        background: #FFFFFF;
    }

        button.grey:hover .hover, .button.grey:hover .hover {
            width: 100%;
            background: #808080;
        }

        button.grey:hover span, .button.grey:hover span {
            color: white;
        }




    /* line 46, ../sass/_buttons.sass */
    button.purple-alt, .button.purple-alt {
        border: 3px solid #872175;
        background: #872175;
        color: white;
    }
        /* line 51, ../sass/_buttons.sass */
        button.purple-alt:hover .hover, .button.purple-alt:hover .hover {
            width: 100%;
            background: white;
        }
        /* line 54, ../sass/_buttons.sass */
        button.purple-alt:hover span, .button.purple-alt:hover span {
            color: #872175;
        }
    /* line 56, ../sass/_buttons.sass */
    button.blue, .button.blue {
        border: 3px solid #569bbe;
        color: #569bbe;
    }
        /* line 60, ../sass/_buttons.sass */
        button.blue:hover .hover, .button.blue:hover .hover {
            width: 100%;
            background: #569bbe;
        }
        /* line 63, ../sass/_buttons.sass */
        button.blue:hover span, .button.blue:hover span {
            color: white;
        }
    /* line 65, ../sass/_buttons.sass */
    button.small, .button.small {
        padding: 0.85rem 2rem;
    }

/* line 69, ../sass/_buttons.sass */
input:not([type="submit"]):not([type="file"]):not(.select2-input):not([type="radio"]) {
    border-radius: 3px;
    height: 50px;
}
/* line 72, ../sass/_buttons.sass */
input:not([type="submit"]):not([type="file"]):not(.select2-input).login-input {
    /*border: none;*/
    background: #d9b3d0;
    color: #872175;
    -webkit-transition: all 100ms linear;
    -moz-transition: all 100ms linear;
    -ms-transition: all 100ms linear;
    -o-transition: all 100ms linear;
    transition: all 100ms linear;
}
    /* line 77, ../sass/_buttons.sass */
    input:not([type="submit"]):not([type="file"]):not(.select2-input).login-input::-webkit-input-placeholder {
        color: #872175;
    }
    /* line 79, ../sass/_buttons.sass */
    input:not([type="submit"]):not([type="file"]):not(.select2-input).login-input:-moz-placeholder {
        color: #872175;
    }
    /* line 81, ../sass/_buttons.sass */
    input:not([type="submit"]):not([type="file"]):not(.select2-input).login-input::-moz-placeholder {
        color: #872175;
    }
    /* line 83, ../sass/_buttons.sass */
    input:not([type="submit"]):not([type="file"]):not(.select2-input).login-input:-ms-input-placeholder {
        color: #872175;
    }
    /* line 85, ../sass/_buttons.sass */
    input:not([type="submit"]):not([type="file"]):not(.select2-input).login-input:focus {
        background: white;
    }
/* line 87, ../sass/_buttons.sass */
input:not([type="submit"]):not([type="file"]):not(.select2-input).primary {
    background: #d7e7f0;
    border: none;
    color: #569bbe;
    -webkit-transition: all 100ms linear;
    -moz-transition: all 100ms linear;
    -ms-transition: all 100ms linear;
    -o-transition: all 100ms linear;
    transition: all 100ms linear;
}
    /* line 91, ../sass/_buttons.sass */
    input:not([type="submit"]):not([type="file"]):not(.select2-input).primary::-webkit-input-placeholder, input:not([type="submit"]):not([type="file"]):not(.select2-input).primary:-moz-placeholder, input:not([type="submit"]):not([type="file"]):not(.select2-input).primary:-ms-input-placeholder {
        color: #569bbe;
    }
    /* line 95, ../sass/_buttons.sass */
    input:not([type="submit"]):not([type="file"]):not(.select2-input).primary.required {
        border: 3px solid #eb402e;
        background: white;
    }
    /* line 99, ../sass/_buttons.sass */
    input:not([type="submit"]):not([type="file"]):not(.select2-input).primary:focus {
        background: white;
        border: 3px solid #569bbe;
    }

/* line 103, ../sass/_buttons.sass */
button.add-item {
    padding: 0.5rem 2rem;
}

/* line 106, ../sass/_buttons.sass */
.spinner {
    position: absolute;
    top: 32px;
    left: 40px;
    width: 20px;
    height: 20px;
    margin: -20px 0 0 -20px;
    border-width: 5px;
    border-style: solid;
    opacity: 0.9;
    border-radius: 20px;
    -webkit-animation: rotate 1s linear infinite;
    -ms-animation: rotate 1s linear infinite;
    -moz-animation: rotate 1s linear infinite;
}

/* line 121, ../sass/_buttons.sass */
.white.loader .spinner {
    border-color: white white rgba(255, 255, 255, 0.5) rgba(255, 255, 255, 0.5);
}

/* line 124, ../sass/_buttons.sass */
.purple.loader .spinner {
    border-color: #872175 #872175 rgba(135, 33, 117, 0.5) rgba(135, 33, 117, 0.5);
}

/* line 127, ../sass/_buttons.sass */
.purple.loader.active .spinner {
    border-color: white white rgba(255, 255, 255, 0.5) rgba(255, 255, 255, 0.5);
}

@-webkit-keyframes rotate {
    /* line 131, ../sass/_buttons.sass */
    0% {
        -webkit-transform: rotate(0deg);
    }
    /* line 133, ../sass/_buttons.sass */
    100% {
        -webkit-transform: rotate(360deg);
    }
}

@-ms-keyframes rotate {
    /* line 136, ../sass/_buttons.sass */
    0% {
        -ms-transform: rotate(0deg);
    }
    /* line 138, ../sass/_buttons.sass */
    100% {
        -ms-transform: rotate(360deg);
    }
}

@-moz-keyframes rotate {
    /* line 131, ../sass/_buttons.sass */
    0% {
        -moz-transform: rotate(0deg);
    }
    /* line 133, ../sass/_buttons.sass */
    100% {
        -moz-transform: rotate(360deg);
    }
}


/* line 141, ../sass/_buttons.sass */
.confirmation-wrapper {
    display: inline-block;
    position: relative;
}

/* line 144, ../sass/_buttons.sass */
.confirmation {
    text-align: center;
    background: #872175;
    position: absolute;
    border-top: 3px solid #490c36;
    top: -100%;
    left: 120%;
    width: 100%;
    padding: 1em 1em 0 1em;
    color: white;
    -webkit-transition: all 100ms linear;
    -moz-transition: all 100ms linear;
    -ms-transition: all 100ms linear;
    -o-transition: all 100ms linear;
    transition: all 100ms linear;
}
    /* line 155, ../sass/_buttons.sass */
    .confirmation.hidden {
        display: none;
    }
    /* line 157, ../sass/_buttons.sass */
    .confirmation p {
        margin-bottom: 0;
        color: white;
    }
    /* line 160, ../sass/_buttons.sass */
    .confirmation:after {
        right: 100%;
        top: 50%;
        border: solid transparent;
        content: " ";
        height: 0;
        width: 0;
        position: absolute;
        pointer-events: none;
        border-color: rgba(135, 33, 117, 0);
        border-right-color: #872175;
        border-width: 30px;
        margin-top: -30px;
    }
    /* line 173, ../sass/_buttons.sass */
    .confirmation .confirmation-buttons {
        margin-top: 20px;
    }

/* line 1, ../sass/_tables.sass */
.table-wrapper {
    position: relative;
    margin-bottom: 20px;
}
    /* line 10, ../sass/_tables.sass */
    .table-wrapper.m-selection-adjust {
        margin-top: 160px;
    }

/* line 14, ../sass/_tables.sass */
.table-head th {
    text-align: left;
    padding: 20px 20px;
    background: #ececec;
}

/* line 19, ../sass/_tables.sass */
.table {
    margin-bottom: 20px;
}
    /* line 21, ../sass/_tables.sass */
    .table tr {
        border-bottom: 1px solid #cccccc;
        cursor: pointer;
    }
        /* line 24, ../sass/_tables.sass */
        .table tr:not(.item-details) {
            -webkit-transition: all 100ms linear;
            -moz-transition: all 100ms linear;
            -ms-transition: all 100ms linear;
            -o-transition: all 100ms linear;
            transition: all 100ms linear;
        }
            /* line 27, ../sass/_tables.sass */
            .table tr:not(.item-details):hover, .table tr:not(.item-details).active {
                background: #ececec;
            }
        /* line 29, ../sass/_tables.sass */
        .table tr button {
            margin-bottom: 0;
        }
    /* line 31, ../sass/_tables.sass */
    .table td {
        padding: 20px 20px;
        vertical-align: middle;
    }
    /* line 34, ../sass/_tables.sass */
    .table .item-details {
        overflow-y: hidden;
        max-height: 100px;
        -webkit-transition: all 100ms linear;
        -moz-transition: all 100ms linear;
        -ms-transition: all 100ms linear;
        -o-transition: all 100ms linear;
        transition: all 100ms linear;
    }
        /* line 39, ../sass/_tables.sass */
        .table .item-details.closed {
            display: none;
            max-height: 0px;
        }

/* line 43, ../sass/_tables.sass */
.new-table-wrapper {
    overflow: hidden;
    height: 60px;
    position: absolute;
    top: 156px;
}
    /* line 49, ../sass/_tables.sass */
    .new-table-wrapper .new-table.fixed {
        position: fixed;
        width: 970px;
        top: 130px;
        z-index: 20;
    }
    /* line 54, ../sass/_tables.sass */
    .new-table-wrapper .new-table tbody {
        opacity: 0;
    }
    /* line 56, ../sass/_tables.sass */
    .new-table-wrapper .new-table tr {
        border-bottom: none;
    }

/* line 1, ../sass/_inputs.sass */
.select2-container {
    width: 100%;
    box-shadow: none;
    margin-bottom: 10px;
    height: 40px;
}
    /* line 7, ../sass/_inputs.sass */
    .select2-container.required .select2-choice {
        border: 3px solid #eb402e;
        background: white;
    }
        /* line 10, ../sass/_inputs.sass */
        .select2-container.required .select2-choice > .select2-chosen {
            color: #eb402e;
        }
        /* line 12, ../sass/_inputs.sass */
        .select2-container.required .select2-choice .select2-arrow {
            background: #eb402e;
        }
    /* line 15, ../sass/_inputs.sass */
    .select2-container .select2-choice {
        border-radius: 3px;
        border: 1px solid #cccccc;
        height: 100%;
        line-height: 40px;
        padding: 0px 12px;
        background: white;
    }

.select2-container-multi {
    border-radius: 3px;
    border: 0px solid #569bbe;
    height: 100%;
    line-height: 43px;
    background: white;
}

/* line 22, ../sass/_inputs.sass */
.select2-container .select2-choice > .select2-chosen {
    height: 100%;
    font-weight: normal;
    color: #000;
}
/* line 26, ../sass/_inputs.sass */
.select2-container .select2-choice .select2-arrow {
    background: #569bbe;
    border-radius: 0px;
    padding: 0px 20px;
}
    /* line 30, ../sass/_inputs.sass */
    .select2-container .select2-choice .select2-arrow:after {
        background: #ffffff;
        position: absolute;
        color: rgb(89, 89, 89);
        z-index: 2;
        top: -20px;
        right: -5px;
        content: "\f0d7";
        font-family: FontAwesome;
        font-style: normal;
        font-weight: normal;
        text-decoration: inherit;
        padding: 19px;
        line-height: 40px;
    }
/* line 40, ../sass/_inputs.sass */
.select2-container.select2-dropdown-open .select2-choice {
    border-radius: 3px 3px 0px 0px;
}

/* line 43, ../sass/_inputs.sass */
.select2-drop {
    border: 1px solid rgb(217, 217, 217) !important;
    border-top: none;
}
    /* line 46, ../sass/_inputs.sass */
    .select2-drop.required {
        display: none !important;
    }

/* line 49, ../sass/_inputs.sass */
.select2-search {
    padding: 5px 3px;
    border-bottom: 3px solid #569bbe;
}
    /* line 53, ../sass/_inputs.sass */
    .select2-search input.select2-input {
        color: #569bbe;
        border: none;
        border-radius: 0px;
        background: none;
        padding: 4px 30px 4px 5px;
    }
    /* line 59, ../sass/_inputs.sass */
    .select2-search:after {
        position: absolute;
        color: rgb(51, 51, 51) !important;
        top: 10px;
        right: 10px;
        content: "\f002";
        font-family: FontAwesome;
        font-style: normal;
        font-weight: normal;
        text-decoration: inherit;
    }

/* line 65, ../sass/_inputs.sass */
.select2-no-results {
    padding: 3px 7px 4px;
}

/* line 68, ../sass/_inputs.sass */
.select2-results {
    font-size: 0.9em;
    color: #569bbe;
    padding: 0px;
    margin: 0px;
    word-break: break-all !important;
}
    /* line 73, ../sass/_inputs.sass */
    .select2-results .select2-highlighted {
        background: #569bbe;
    }

/* line 75, ../sass/_inputs.sass */
input.select2-input.select2-focused {
    box-shadow: none;
}

/* line 85, ../sass/_inputs.sass */
.hover {
    background: #ececec;
    cursor: pointer;
    -webkit-transition: all 100ms linear;
    -moz-transition: all 100ms linear;
    -ms-transition: all 100ms linear;
    -o-transition: all 100ms linear;
    transition: all 100ms linear;
}

/* line 90, ../sass/_inputs.sass */
.styled-checkbox {
    margin: 20px 0px;
}
    /* line 93, ../sass/_inputs.sass */
    .styled-checkbox input {
        position: absolute;
        opacity: 0;
        width: 20px;
        height: 20px;
        cursor: pointer;
        z-index: 99999;
        top: 1px;
        left: 15px;
    }
        /* line 103, ../sass/_inputs.sass */
        .styled-checkbox input + label {
            margin-top: 0;
            position: relative;
            cursor: pointer;
            padding: 0;
        }
            /* line 108, ../sass/_inputs.sass */
            .styled-checkbox input + label:before {
                cursor: pointer;
                content: "";
                margin-right: 10px;
                display: inline-block;
                vertical-align: text-top;
                -webkit-transition: all 500ms linear;
                -moz-transition: all 500ms linear;
                -ms-transition: all 500ms linear;
                -o-transition: all 500ms linear;
                transition: all 500ms linear;
                width: 20px;
                height: 20px;
                border: 1px solid #ccc;
                background: white;
            }
        /* line 119, ../sass/_inputs.sass */
        .styled-checkbox input:hover + label:before {
            border: none;
            fill: #013d98;
            cursor: pointer;
        }
        /* line 123, ../sass/_inputs.sass */
        .styled-checkbox input:checked + label:before {
            background: rgb(7,104,253);
            border: 1px solid #ccc;
            cursor: pointer;
        }
        /* line 130, ../sass/_inputs.sass */
        .styled-checkbox input.disabled + label, .styled-checkbox input[disabled] + label {
            color: #b8b8b8;
        }
            /* line 133, ../sass/_inputs.sass */
            .styled-checkbox input.disabled + label:before, .styled-checkbox input[disabled] + label:before {
                box-shadow: none;
                background: #dddddd;
            }
        /* line 137, ../sass/_inputs.sass */
        .styled-checkbox input:checked + label:after {
            content: "";
            position: absolute;
            left: 6px;
            top: 9px;
            background: white;
            width: 2px;
            height: 2px;
            box-shadow: 2px 0 0 white, 4px 0 0 white, 4px -2px 0 white, 4px -4px 0 white, 4px -6px 0 white;
            -webkit-transform: rotate(45deg);
            -moz-transform: rotate(45deg);
            -ms-transform: rotate(45deg);
            -o-transform: rotate(45deg);
            transform: rotate(45deg);
        }

/* line 147, ../sass/_inputs.sass */
input[type="checkbox"] + label,
input[type="radio"] + label {
    margin-left: 0px;
}

/* line 151, ../sass/_inputs.sass */
.styled-radio {
    margin-bottom: 20px;
}
    /* line 153, ../sass/_inputs.sass */
    .styled-radio label {
        margin-top: 0;
        position: relative;
        display: inline-block;
    }
        /* line 158, ../sass/_inputs.sass */
        .styled-radio label:before {
            content: "";
            display: block;
            position: absolute;
        }
    /* line 164, ../sass/_inputs.sass */
    .styled-radio label {
        padding-left: 30px;
    }
        /* line 166, ../sass/_inputs.sass */
        .styled-radio label:before {
            top: -3px;
            left: 0;
            width: 20px;
            height: 20px;
            border-radius: 50%;
            border: 2px solid #d7e7f0;
            -webkit-transition: all 100ms linear;
            -moz-transition: all 100ms linear;
            -ms-transition: all 100ms linear;
            -o-transition: all 100ms linear;
            transition: all 100ms linear;
        }
        /* line 176, ../sass/_inputs.sass */
        .styled-radio label:before {
            left: 0;
            width: 20px;
            height: 20px;
            border: 3px solid #d7e7f0;
        }

/* line 183, ../sass/_inputs.sass */
input[type="radio"] {
    display: none;
}
    /* line 186, ../sass/_inputs.sass */
    input[type="radio"]:checked + label:before {
        background: #569bbe;
        border: 6px solid #d7e7f0;
    }

/* line 191, ../sass/_inputs.sass */
.append-date input {
    background: white;
    border: 3px solid #569bbe;
    position: relative;
    padding-left: 50px;
    color: #569bbe;
    /*z-index: -1;*/
}
    /* line 198, ../sass/_inputs.sass */
    .append-date input::-webkit-input-placeholder, .append-date input:-moz-placeholder, .append-date input:-ms-input-placeholder {
        color: #569bbe;
    }
/* line 202, ../sass/_inputs.sass */
.append-date:before {
    position: absolute;
    z-index: 99999;
    left: 15px;
    width: 48px;
    background: none !important;
    height: 38px;
    color: rgb(51, 51, 51) !important;
    line-height: 38px;
    text-align: center;
    top: 43px;
    content: "\f073";
    font-family: FontAwesome;
    font-style: normal;
    font-weight: normal;
    text-decoration: inherit;
    border-right: 1px solid #ccc !important;
}


.append-dateIcon input {
    background: white;
    border: 1px solid #ccc;
    position: relative;
    padding-left: 50px;
    color: #000;
}
    /* line 198, ../sass/_inputs.sass */
    .append-dateIcon input::-webkit-input-placeholder, .append-date input:-moz-placeholder, .append-date input:-ms-input-placeholder {
        color: #569bbe;
    }
/* line 202, ../sass/_inputs.sass */
.append-dateIcon:before {
    position: absolute;
    z-index: 1;
    left: 0px;
    width: 48px;
    background: none;
    height: 39px;
    color: rgba(0, 0, 0, 0.54) !important;
    line-height: 38px;
    text-align: center;
    top: 1px;
    content: "\f133";
    font-family: 'FontAwesome',"Helvetica Neue", "Helvetica",Arial, sans-serif;
    font-style: normal;
    font-weight: normal;
    text-decoration: inherit;
    border-right: 1px solid #ccc !important;
}

/* line 1, ../sass/_datePicker-custom.sass */
#dp-popup.dp-popup {
    background: #569bbe;
    width: 220px;
    border-radius: 3px;
}
    /* line 5, ../sass/_datePicker-custom.sass */
    #dp-popup.dp-popup h2 {
        color: white;
        padding: 7px 0px;
    }
    /* line 8, ../sass/_datePicker-custom.sass */
    #dp-popup.dp-popup .dp-nav-prev-year,
    #dp-popup.dp-popup .dp-nav-next-year,
    #dp-popup.dp-popup .dp-nav-prev-month,
    #dp-popup.dp-popup .dp-nav-next-month {
        color: white;
        position: relative;
        top: 7px;
    }
    /* line 15, ../sass/_datePicker-custom.sass */
    #dp-popup.dp-popup .weekday,
    #dp-popup.dp-popup .weekend {
        background: white;
        color: #569bbe;
    }
    /* line 19, ../sass/_datePicker-custom.sass */
    #dp-popup.dp-popup .jCalendar {
        border: none;
        background: white;
        font-size: 13px;
        width: 216px;
    }
        /* line 24, ../sass/_datePicker-custom.sass */
        #dp-popup.dp-popup .jCalendar thead {
            border-bottom: 1px solid #569bbe;
            border-collapse: separate;
            border-spacing: 5px 5px;
        }
        /* line 28, ../sass/_datePicker-custom.sass */
        #dp-popup.dp-popup .jCalendar .dp-hover {
            background: #569bbe;
            color: white;
            cursor: pointer;
        }

@media (max-width: 619px) {
    /* line 6, ../sass/_query.sass */
    .header .nav li.user-wrapper i {
        display: none;
    }
    /* line 11, ../sass/_query.sass */
    .header.condensed .nav li:not(.user-wrapper) {
        margin-top: 0px;
    }
}
/* line 1, ../sass/_footer.sass */
.footer {
    clear: both;
    height: 60px;
    padding-top: 10px;
}
    /* line 5, ../sass/_footer.sass */
    .footer .nav {
        margin-left: 0;
    }
        /* line 7, ../sass/_footer.sass */
        .footer .nav li {
            float: left;
            margin-right: 20px;
        }
            /* line 10, ../sass/_footer.sass */
            .footer .nav li a {
                line-height: 50%;
                font-weight: normal;
                font-size: 10px;
            }
                /* line 14, ../sass/_footer.sass */
                .footer .nav li a:hover {
                    color: #490c36;
                }
    /* line 16, ../sass/_footer.sass */
    .footer .copyright {
        font-size: 10px;
        padding-top: 10px;
    }

    .footer .contactus {
        font-size: 10px;
        text-align: left !important;
    }

    .footer .copyrightlogon {
        font-size: 10px;
        text-align: right !important;
    }

    .footer .privacy {
        font-size: 10px;
        text-align: right !important;
    }

/* line 10, ../sass/screen.sass */
html, body {
    height: 100%;
}

/* line 14, ../sass/screen.sass */
.hero {
    padding-top: 56px;
}
    /* line 17, ../sass/screen.sass */
    .hero .hero-text {
        margin-bottom: 25px;
    }

/* line 20, ../sass/screen.sass */
.login-difficulty {
    margin: 40px 0px;
}
    /* line 22, ../sass/screen.sass */
    .login-difficulty a {
        font-weight: normal;
        /*font-size: 0.8em;*/ /* sets the font size for having difficulty*/
    }
    /* line 25, ../sass/screen.sass */
    .login-difficulty i {
        margin-left: 10px;
    }

/* line 30, ../sass/screen.sass */
#home .hero {
    background: url(/IRT/Content/images/login-bg.jpg) no-repeat center center fixed;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
}
    /* line 37, ../sass/screen.sass */
    #home .hero .hero-text {
        color: #666666;
    }
/* line 40, ../sass/screen.sass */
#home .footer {
    background: white;
    height: 60px;
}

/* line 47, ../sass/screen.sass */
#interior .hero, #outer .hero {
    background-color: #fafafa;
    *zoom: 1;
    filter: progid:DXImageTransform.Microsoft.gradient(gradientType=0, startColorstr='#FFFAFAFA', endColorstr='#FFFFFFFF');
    background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #fafafa), color-stop(100%, #ffffff));
    background-image: -webkit-linear-gradient(top, #fafafa 0%, #ffffff 100%);
    background-image: -moz-linear-gradient(top, #fafafa 0%, #ffffff 100%);
    background-image: -o-linear-gradient(top, #fafafa 0%, #ffffff 100%);
    background-image: linear-gradient(top, #fafafa 0%, #ffffff 100%);
}

/* line 53, ../sass/screen.sass */
.footer {
    background: #eeeeee;
    height: 60px;
}

/* line 58, ../sass/screen.sass */
#outer .hero {
    min-height: 100%;
    height: auto !important;
    height: 100%;
    margin: 0 auto -60px;
}
/* line 63, ../sass/screen.sass */
#outer .container {
    padding-top: 150px;
    height: auto !important;
    height: 100%;
    margin: 0 auto -60px;
}
    /* line 68, ../sass/screen.sass */
    #outer .container.plus-padding {
        padding-top: 240px;
    }
    /* line 70, ../sass/screen.sass */
    #outer .container:after {
        content: "";
        display: block;
    }

/* line 75, ../sass/screen.sass */
#interior .container {
    padding-top: 145px;
    padding-bottom: 50px;
    min-height: 100%;
}
    /* line 79, ../sass/screen.sass */
    #interior .container.plus-padding {
        padding-top: 240px;
    }
    /* line 81, ../sass/screen.sass */
    #interior .container:after {
        content: "";
        display: block;
    }

/* line 85, ../sass/screen.sass */
.error-account .footer {
    position: absolute;
    bottom: 0;
    width: 100%;
}

/* line 90, ../sass/screen.sass */
.cf:before,
.cf:after {
    content: " ";
    display: table;
}

/* line 95, ../sass/screen.sass */
.cf:after {
    clear: both;
}

/* line 98, ../sass/screen.sass */
.cf {
    *zoom: 1;
}

/* line 101, ../sass/screen.sass */
.study {
    background: #eeeeee;
    margin-bottom: 20px;
    padding-top: 20px;
}

/* line 106, ../sass/screen.sass */
.hub {
    background: white;
    text-align: center;
    margin-bottom: 60px;
    padding: 20px 0px;
}

.hide {
    visibility: hidden;
}

.submit-Dlg {
    padding: 1em;
    background-color: white;
    border: 1px solid #CCC;
}

    .submit-Dlg input {
        font-family: FontAwesome;
    }

    .submit-Dlg b {
        font-weight: bold;
    }

    .submit-Dlg p {
        margin-top: 0.9em;
        margin-bottom: 0.9em;
    }

    .submit-Dlg select[multiple] {
        width: 100%;
        height: 8em;
    }

    .submit-Dlg h2 {
        margin-top: 0.4em;
    }

.submit-Dlg {
    height: 300px;
    overflow: auto;
}

.ko-grid {
    margin-bottom: .1em;
    margin-right: .1rem;
    border: 1px solid #569bbe;
    background-color: white;
    min-width: 500px;
}

    .ko-grid th {
        text-align: left;
        background-color: #569bbe;
        color: White;
    }

    .ko-grid td, th {
        padding: 0.4em;
    }

    .ko-grid tr:nth-child(odd) {
        background-color: #d7e7f0;
    }

.ko-grid-pageLinks {
    margin-bottom: 1em;
}

    .ko-grid-pageLinks a {
        padding: 0.5em;
    }

        .ko-grid-pageLinks a.selected {
            background-color: #569bbe;
            color: white;
        }

.divResponse {
    -moz-border-radius: 10px;
    -webkit-border-radius: 10px;
    border-radius: 10px;
    border: 3px solid;
    padding: 10px 10px 10px 10px;
    border-color: #872175;
}

#dimmer {
    background: #000;
    opacity: 0.5;
    position: fixed; /* important to use fixed, not absolute */
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: none;
    z-index: 9999; /* may not be necessary */
}

#devicescan {
    background: #000;
    opacity: 0.5;
    position: fixed; /* important to use fixed, not absolute */
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: none;
    z-index: 9999; /* may not be necessary */
}

#kittrackingconfirm {
    background: #000;
    opacity: 0.5;
    position: fixed; /* important to use fixed, not absolute */
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: none;
    z-index: 9999; /* may not be necessary */
}

.validationMessage {
    position: relative;
    color: #e20000;
    font-size: 13px;
    font-style: normal;
    font-family: Proxima Nova, Noto Sans, Helvetica, Arial, sans-serif;
}

.ui-dialog {
    overflow: hidden;
    position: absolute;
    left: 0;
    padding: .2em;
    outline: 0;
}

    .ui-dialog .ui-dialog-title {
        float: left;
        margin: 0.1em 0;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
        width: 90%;
        height: 22px;
        padding-top: 4px;
        color:#333333 !important;
    }

.ui-widget-header {
    background-color: rgba(0, 0, 0, 0);
    border: 0px solid #000000;
    color: #569BBE;
    font-weight: bold;
}

.ui-widget-shadow {
    border-radius: 8px;
    margin: -8px 0 0 -8px;
    opacity: 0.3;
    padding: 8px;
}

@media only screen and (orientation: portrait) {
    ul.nav {
        line-height: 0;
    }
}

.ui-front {
    z-index: 1005 !important; /* The default is 100. !important overrides the default. */
}

#studyselection {
    min-height: 450px;
}

#wcMessage {
    min-height: 45px;
}

.fa-question-circle-right:after {
    content: "\f059";
    margin-left: 10px;
    padding: 2px;
    border: 1px solid #569bbe;
    background: #569bbe;
    color: white;
}

.groupBox {
    border-collapse: collapse;
    table-layout: fixed;
    width: 100%;
}

    .groupBox tr {
        border-bottom: 1px solid #ddd;
        vertical-align: top;
    }

    

    .groupBox th,
    .groupBox td {
        vertical-align: top;
        padding: .625em;
        text-align: left;
    }

    .groupBox div {
        margin-top: 0;
    }

        .groupBox div span {
            padding-bottom: 5px;
        }

    .groupBox th {
        border-bottom: 1px solid #ddd;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

.inputWithIcon input[type=text] {
    padding-left: 40px;
}

.inputWithIcon {
    position: relative;
}

    .inputWithIcon i {
        position: absolute;
        left: 0;
        top: 8px;
        padding: 9px 8px;
        color: #569bbe;
        transition: .3s;
        content: "\f073";
    }
.groupBox .inputWithIcon i {
    top: 3px;
    font-family: 'FontAwesome',"Helvetica Neue", "Helvetica",Arial, sans-serif;
    color: rgb(51 51 51);
}
.styled-checkbox-groupbox {
    position: relative;
}
    /* line 93, ../sass/_inputs.sass */
    .styled-checkbox-groupbox input {
        position: absolute;
        opacity: 1;
        width: 20px;
        height: 20px;
        cursor: pointer;
        top: 1px;
        left: 0px;
        margin-top: 0px;
    }
        /* line 103, ../sass/_inputs.sass */
        .styled-checkbox-groupbox input + label {
            margin-top: 0px;
            cursor: pointer;
            padding: 0;
        }
            /* line 108, ../sass/_inputs.sass */
            .styled-checkbox-groupbox input + label:before {
                cursor: pointer;
                content: "";
                margin-right: 10px;
                display: inline-block;
                vertical-align: text-top;
                -webkit-transition: all 500ms linear;
                -moz-transition: all 500ms linear;
                -ms-transition: all 500ms linear;
                -o-transition: all 500ms linear;
                transition: all 500ms linear;
                width: 20px;
                height: 20px;
                background: white;
            }
        /* line 119, ../sass/_inputs.sass */
        .styled-checkbox-groupbox input:hover + label:before {
            border: none;
            background: none;
            cursor: pointer;
        }
        /* line 123, ../sass/_inputs.sass */
        .styled-checkbox-groupbox input:checked + label:before {
            background: none;
            border: 2px solid #569bbe;
            cursor: pointer;
        }
        /* line 130, ../sass/_inputs.sass */
        .styled-checkbox-groupbox input.disabled + label, .styled-checkbox-groupbox input[disabled] + label {
            color: #b8b8b8;
        }
            /* line 133, ../sass/_inputs.sass */
            .styled-checkbox-groupbox input.disabled + label:before, .styled-checkbox-groupbox input[disabled] + label:before {
                box-shadow: none;
                background: #dddddd;
            }
        /* line 137, ../sass/_inputs.sass */
        .styled-checkbox-groupbox input:checked + label:after {
            content: "";
            position: absolute;
            left: 6px;
            top: 9px;
            background: white;
            width: 2px;
            height: 2px;
            box-shadow: 2px 0 0 white, 4px 0 0 white, 4px -2px 0 white, 4px -4px 0 white, 4px -6px 0 white;
            -webkit-transform: rotate(45deg);
            -moz-transform: rotate(45deg);
            -ms-transform: rotate(45deg);
            -o-transform: rotate(45deg);
            transform: rotate(45deg);
        }


/*EPRO Changes*/
.bc-grey {
    background-color: #ececec;
}

.center-align-text {
    text-align: center;
}

.text-grey {
    color: #B1B1B1 !important;
}

.padding-bottom-header {
    padding-bottom: 15px;
}

.patient-icon {
    float: left;
    vertical-align: baseline;
    margin-top: 4px;
}

.patient-number {
    float: left;
    margin-left: 5px;
}

/* File upload changes*/
.file-upload {
    border-radius: 3px;
    height: 35px !important;
    padding-top: 5px;
    background: #fff;
    font-size: 11pt;
    color: #569bbe;
    font-weight: bold;
}

button.primary, .button.primary {
    border: 1px solid rgba(255, 255, 255, 0) !important;
    color: #fff ;
    background: rgb(5, 87, 213) ;
    box-shadow: rgba(130, 130, 130, 0.32) 0px 4px 8px 0px;
    padding: 4px 16px;
    min-height: 40px ;
    min-width: 64px;
    gap: 8px;
    border-radius: 4px;
}

    button.primary:hover .hover, .button.purple:hover .hover {
        background-color: rgb(1, 61, 152) !important;
        box-shadow: rgba(130, 130, 130, 0.32) 0px 4px 8px 0px, rgba(0, 0, 0, 0.04) 0px 4px 16px 0px !important;
        color: rgb(255, 255, 255) !important;
        border: 1px solid rgba(255, 255, 255, 0) !important;
    }

.sso-heading {
    font-size: 24px;
    font-weight: 400;
    line-height: 1.5;
    letter-spacing: -0.02rem;
    color: rgb(0, 0, 0);
    font-family: "Proxima Nova", "Noto Sans", Helvetica, Arial, sans-serif;
}
.sso-input {
    gap: 8px;
    color: rgb(51, 51, 51);
    border: 1px solid rgb(217, 217, 217);
    border-radius: 4px;
    background-color: rgb(255, 255, 255);
    min-width: 40px;
    min-height: 40px;
    padding-top: 4px;
    padding-left: 12px;
    padding-bottom: 4px;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    align-self: stretch;
    line-height: 150%;
    font-size: 16px;
    font-family: "Proxima Nova", Helvetica, Arial, Verdana, Tahoma, sans-serif;
    font-style: normal;
    font-weight: 400;
    letter-spacing: 0.32px;
}
.sso-text {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
    letter-spacing: -0.02rem;
    color: rgb(0, 0, 0);
    font-family: "Proxima Nova", "Noto Sans", Helvetica, Arial, sans-serif;
}	
