.md-editor{display:block;border:1px solid #ddd}.md-editor .md-footer,.md-editor>.md-header{display:block;padding:6px 4px;background:#f5f5f5}.md-editor>.md-header{margin:0}.md-editor>.md-preview{background:#fff;border-top:1px dashed #ddd;border-bottom:1px dashed #ddd;min-height:10px;overflow:auto}.md-editor>textarea{font-family:Menlo,Monaco,Consolas,"Courier New",monospace;font-size:14px;outline:0;margin:0;display:block;padding:0;width:100%;border:0;border-top:1px dashed #ddd;border-bottom:1px dashed #ddd;border-radius:0;box-shadow:none;background:#eee}.md-editor>textarea:focus{box-shadow:none;background:#fff}.md-editor.active{border-color:#66afe9;outline:0;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 8px rgba(102,175,233,.6);box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 8px rgba(102,175,233,.6)}.md-editor .md-controls{float:right;padding:3px}.md-editor .md-controls .md-control{right:5px;color:#bebebe;padding:3px 3px 3px 10px}.md-editor .md-controls .md-control:hover{color:#333}.md-editor.md-fullscreen-mode{width:100%;height:100%;position:fixed;top:0;left:0;z-index:99999;padding:60px 30px 15px;background:#fff!important;border:0!important}.md-editor.md-fullscreen-mode .md-footer{display:none}.md-editor.md-fullscreen-mode .md-input,.md-editor.md-fullscreen-mode .md-preview{margin:0 auto!important;height:100%!important;font-size:20px!important;padding:20px!important;color:#999;line-height:1.6em!important;resize:none!important;box-shadow:none!important;background:#fff!important;border:0!important}.md-editor.md-fullscreen-mode .md-preview{color:#252525;overflow:auto}.md-editor.md-fullscreen-mode .md-input:focus,.md-editor.md-fullscreen-mode .md-input:hover{color:#252525;background:#fff!important}.md-editor.md-fullscreen-mode .md-header{background:0 0;text-align:center;position:fixed;width:100%;top:20px}.md-editor.md-fullscreen-mode .btn-group{float:none}.md-editor.md-fullscreen-mode .btn{border:0;background:0 0;color:#b3b3b3}.md-editor.md-fullscreen-mode .btn.active,.md-editor.md-fullscreen-mode .btn:active,.md-editor.md-fullscreen-mode .btn:focus,.md-editor.md-fullscreen-mode .btn:hover{box-shadow:none;color:#333}.md-editor.md-fullscreen-mode .md-fullscreen-controls{position:absolute;top:20px;right:20px;text-align:right;z-index:1002;display:block}.md-editor.md-fullscreen-mode .md-fullscreen-controls a{color:#b3b3b3;clear:right;margin:10px;width:30px;height:30px;text-align:center}.md-editor.md-fullscreen-mode .md-fullscreen-controls a:hover{color:#252525;text-decoration:none}.md-editor.md-fullscreen-mode .md-editor{height:100%!important;position:relative}.md-editor .md-fullscreen-controls{display:none}.md-nooverflow{overflow:hidden;position:fixed;width:100%}
/* ==========================================================================
   $BASE-PICKER
   ========================================================================== */
/**
 * Note: the root picker element should *NOT* be styled more than what’s here.
 */
.picker {
  font-size: 16px;
  text-align: left;
  line-height: 1.2;
  color: #000000;
  position: absolute;
  z-index: 10000;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
/**
 * The picker input element.
 */
.picker__input {
  cursor: default;
}
/**
 * When the picker is opened, the input element is “activated”.
 */
.picker__input.picker__input--active {
  border-color: #0089ec;
}
/**
 * The holder is the only “scrollable” top-level container element.
 */
.picker__holder {
  width: 100%;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

/*!
 * Default mobile-first, responsive styling for pickadate.js
 * Demo: http://amsul.github.io/pickadate.js
 */
/**
 * Note: the root picker element should *NOT* be styled more than what’s here.
 */
/**
 * Make the holder and frame fullscreen.
 */
.picker__holder,
.picker__frame {
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  -webkit-transform: translateY(100%);
      -ms-transform: translateY(100%);
          transform: translateY(100%);
}
/**
 * The holder should overlay the entire screen.
 */
.picker__holder {
  position: fixed;
  transition: background 0.15s ease-out, -webkit-transform 0s 0.15s;
  transition: background 0.15s ease-out, transform 0s 0.15s;
  -webkit-backface-visibility: hidden;
}
/**
 * The frame that bounds the box contents of the picker.
 */
.picker__frame {
  position: absolute;
  margin: 0 auto;
  min-width: 256px;
  max-width: 666px;
  width: 100%;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  filter: alpha(opacity=0);
  -moz-opacity: 0;
  opacity: 0;
  transition: all 0.15s ease-out;
}
@media (min-height: 33.875em) {
  .picker__frame {
    overflow: visible;
    top: auto;
    bottom: -100%;
    max-height: 80%;
  }
}
@media (min-height: 40.125em) {
  .picker__frame {
    margin-bottom: 7.5%;
  }
}
/**
 * The wrapper sets the stage to vertically align the box contents.
 */
.picker__wrap {
  display: table;
  width: 100%;
  height: 100%;
}
@media (min-height: 33.875em) {
  .picker__wrap {
    display: block;
  }
}
/**
 * The box contains all the picker contents.
 */
.picker__box {
  background: #ffffff;
  display: table-cell;
  vertical-align: middle;
}
@media (min-height: 26.5em) {
  .picker__box {
    font-size: 1.25em;
  }
}
@media (min-height: 33.875em) {
  .picker__box {
    display: block;
    font-size: 1.33em;
    border: 1px solid #717171;
    border-top-color: #898989;
    border-bottom-width: 0;
    border-radius: 5px 5px 0 0;
    box-shadow: 0 12px 36px 16px rgba(0, 0, 0, 0.24);
  }
}
@media (min-height: 40.125em) {
  .picker__box {
    font-size: 1.5em;
    border-bottom-width: 1px;
    border-radius: 5px;
  }
}
/**
 * When the picker opens...
 */
.picker--opened .picker__holder {
  -webkit-transform: translateY(0);
      -ms-transform: translateY(0);
          transform: translateY(0);
  background: transparent;
  -ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr=#1E000000,endColorstr=#1E000000)";
  zoom: 1;
  background: rgba(0, 0, 0, 0.32);
  transition: background 0.15s ease-out;
}
.picker--opened .picker__frame {
  -webkit-transform: translateY(0);
      -ms-transform: translateY(0);
          transform: translateY(0);
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
  filter: alpha(opacity=100);
  -moz-opacity: 1;
  opacity: 1;
}
@media (min-height: 33.875em) {
  .picker--opened .picker__frame {
    top: auto;
    bottom: 0;
  }
}

/* ==========================================================================
   $BASE-DATE-PICKER
   ========================================================================== */
/**
 * The picker box.
 */
.picker__box {
  padding: 0 1em;
}
/**
 * The header containing the month and year stuff.
 */
.picker__header {
  text-align: center;
  position: relative;
  margin-top: .75em;
}
/**
 * The month and year labels.
 */
.picker__month,
.picker__year {
  font-weight: 500;
  display: inline-block;
  margin-left: .25em;
  margin-right: .25em;
}
.picker__year {
  color: #999999;
  font-size: .8em;
  font-style: italic;
}
/**
 * The month and year selectors.
 */
.picker__select--month,
.picker__select--year {
  border: 1px solid #b7b7b7;
  height: 2em;
  padding: .5em;
  margin-left: .25em;
  margin-right: .25em;
}
@media (min-width: 24.5em) {
  .picker__select--month,
  .picker__select--year {
    margin-top: -0.5em;
  }
}
.picker__select--month {
  width: 35%;
}
.picker__select--year {
  width: 22.5%;
}
.picker__select--month:focus,
.picker__select--year:focus {
  border-color: #0089ec;
}
/**
 * The month navigation buttons.
 */
.picker__nav--prev,
.picker__nav--next {
  position: absolute;
  padding: .5em 1.25em;
  width: 1em;
  height: 1em;
  box-sizing: content-box;
  top: -0.25em;
}
@media (min-width: 24.5em) {
  .picker__nav--prev,
  .picker__nav--next {
    top: -0.33em;
  }
}
.picker__nav--prev {
  left: -1em;
  padding-right: 1.25em;
}
@media (min-width: 24.5em) {
  .picker__nav--prev {
    padding-right: 1.5em;
  }
}
.picker__nav--next {
  right: -1em;
  padding-left: 1.25em;
}
@media (min-width: 24.5em) {
  .picker__nav--next {
    padding-left: 1.5em;
  }
}
.picker__nav--prev:before,
.picker__nav--next:before {
  content: " ";
  border-top: .5em solid transparent;
  border-bottom: .5em solid transparent;
  border-right: 0.75em solid #000000;
  width: 0;
  height: 0;
  display: block;
  margin: 0 auto;
}
.picker__nav--next:before {
  border-right: 0;
  border-left: 0.75em solid #000000;
}
.picker__nav--prev:hover,
.picker__nav--next:hover {
  cursor: pointer;
  color: #000000;
  background: #b1dcfb;
}
.picker__nav--disabled,
.picker__nav--disabled:hover,
.picker__nav--disabled:before,
.picker__nav--disabled:before:hover {
  cursor: default;
  background: none;
  border-right-color: #f5f5f5;
  border-left-color: #f5f5f5;
}
/**
 * The calendar table of dates
 */
.picker__table {
  text-align: center;
  border-collapse: collapse;
  border-spacing: 0;
  table-layout: fixed;
  font-size: inherit;
  width: 100%;
  margin-top: .75em;
  margin-bottom: .5em;
}
@media (min-height: 33.875em) {
  .picker__table {
    margin-bottom: .75em;
  }
}
.picker__table td {
  margin: 0;
  padding: 0;
}
/**
 * The weekday labels
 */
.picker__weekday {
  width: 14.285714286%;
  font-size: .75em;
  padding-bottom: .25em;
  color: #999999;
  font-weight: 500;
  /* Increase the spacing a tad */
}
@media (min-height: 33.875em) {
  .picker__weekday {
    padding-bottom: .5em;
  }
}
/**
 * The days on the calendar
 */
.picker__day {
  padding: .3125em 0;
  font-weight: 200;
  border: 1px solid transparent;
}
.picker__day--today {
  position: relative;
}
.picker__day--today:before {
  content: " ";
  position: absolute;
  top: 2px;
  right: 2px;
  width: 0;
  height: 0;
  border-top: 0.5em solid #0059bc;
  border-left: .5em solid transparent;
}
.picker__day--disabled:before {
  border-top-color: #aaaaaa;
}
.picker__day--outfocus {
  color: #dddddd;
}
.picker__day--infocus:hover,
.picker__day--outfocus:hover {
  cursor: pointer;
  color: #000000;
  background: #b1dcfb;
}
.picker__day--highlighted {
  border-color: #0089ec;
}
.picker__day--highlighted:hover,
.picker--focused .picker__day--highlighted {
  cursor: pointer;
  color: #000000;
  background: #b1dcfb;
}
.picker__day--selected,
.picker__day--selected:hover,
.picker--focused .picker__day--selected {
  background: #0089ec;
  color: #ffffff;
}
.picker__day--disabled,
.picker__day--disabled:hover,
.picker--focused .picker__day--disabled {
  background: #f5f5f5;
  border-color: #f5f5f5;
  color: #dddddd;
  cursor: default;
}
.picker__day--highlighted.picker__day--disabled,
.picker__day--highlighted.picker__day--disabled:hover {
  background: #bbbbbb;
}
/**
 * The footer containing the "today", "clear", and "close" buttons.
 */
.picker__footer {
  text-align: center;
}
.picker__button--today,
.picker__button--clear,
.picker__button--close {
  border: 1px solid #ffffff;
  background: #ffffff;
  font-size: .8em;
  padding: .66em 0;
  font-weight: bold;
  width: 33%;
  display: inline-block;
  vertical-align: bottom;
}
.picker__button--today:hover,
.picker__button--clear:hover,
.picker__button--close:hover {
  cursor: pointer;
  color: #000000;
  background: #b1dcfb;
  border-bottom-color: #b1dcfb;
}
.picker__button--today:focus,
.picker__button--clear:focus,
.picker__button--close:focus {
  background: #b1dcfb;
  border-color: #0089ec;
  outline: none;
}
.picker__button--today:before,
.picker__button--clear:before,
.picker__button--close:before {
  position: relative;
  display: inline-block;
  height: 0;
}
.picker__button--today:before,
.picker__button--clear:before {
  content: " ";
  margin-right: .45em;
}
.picker__button--today:before {
  top: -0.05em;
  width: 0;
  border-top: 0.66em solid #0059bc;
  border-left: .66em solid transparent;
}
.picker__button--clear:before {
  top: -0.25em;
  width: .66em;
  border-top: 3px solid #ee2200;
}
.picker__button--close:before {
  content: "\D7";
  top: -0.1em;
  vertical-align: top;
  font-size: 1.1em;
  margin-right: .35em;
  color: #717171;
}
.picker__button--today[disabled],
.picker__button--today[disabled]:hover {
  background: #f5f5f5;
  border-color: #f5f5f5;
  color: #dddddd;
  cursor: default;
}
.picker__button--today[disabled]:before {
  border-top-color: #aaaaaa;
}

/* ==========================================================================
   $DEFAULT-DATE-PICKER
   ========================================================================== */

.rxiv-color {
    color: #EE2500;
}
.rxiv-background-color {
    background: #EE2500;
}
.expert-rxiv-title {
    margin-bottom: 0;
    font-weight: 400;
    font-size: 34px;
}
.expert-rxiv-title span {
    font-family: serif;
}
.expert-rxiv-subtitle {
    font-size: 18px;
    color: #6C6C6C;
}

.rxiv-btn {
    padding: 10px;
    width: 100%;
    background: #ccc;
    color: white;
    cursor: pointer;
    border-radius: 4px;
    border:0;
    font-size: 18px;
    line-height: 24px;
    box-shadow: 0 0 0 rgba(0,0,0,0);
    transition: all 0.2s;
    text-decoration: none !important;
    text-align: center;
    display: inline-block;
    box-sizing: border-box;
    position:relative;
    z-index: 5;
    /* font-weight: 600 !important; */
}
.rxiv-btn:hover, .rxiv-btn:focus {
    box-shadow: 1px 4px 4px rgba(0,0,0,.2);
    color: white;
    text-decoration: none;
}
.rxiv-btn--subscribe {
    background: #EE2500;
    color: #fff !important;
}
.rxiv-btn--create {
    background: #0275D8;
    font-size: 16px;
    display: block;
    text-align: center;
}

.rxiv-sidebar--create {
    background: #F3F3F3;
    padding:24px;
    font-size: 16px;
    line-height: 24px;
}

.rxiv-sidebar--create-title {
    text-align: center;
    font-weight: 500;
    font-size: 21px;
    line-height: 25px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}
.rxiv-sidebar--create-title > div {
    display: flex;
    align-items: center;
    margin-bottom: 8px;
}
.rxiv-sidebar--create-title-bullet {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: #EE2500;
    margin-right: 8px;
    margin-left: 8px;
}

.rxiv-back-link {
    font-size: 15px;
}

.job-status-header {
    margin-bottom: 20px;
    padding: 12px 0 0 0;
    background: #edf8fd;
    color: #252525;
    box-shadow:inset 0px 0px 10px #C1E8FA;
}

.job-status-header form {
    display: inherit;
}

.job-status-header form button.disabled {
    color: green;
}

.job-status-header .btn-link {
    margin-bottom: 1px;
    font-size: 13px;
}

.job-progress-row {
    margin-top: 35px;
}

.job-featured-header-items {
    text-align: right;
}

.job-featured-header {
    margin-left: 10px;
    background: #4CAF50;
    padding: 2px 6px;
    border-radius: 2px;
    color: #fff;
}

.job-featured-header.expired {
    background: #F44336;
}

.job-featured-header-payment {
    border-radius: 2px;
    border: 1px solid #226bbf;
    padding: 1px 6px;
}

a.job-featured-header-payment:hover {
    background: #aadff7;
    text-decoration: none;
}

.job-listing-submit-link {
    color: #f57c00;
}

.btn-list-opportunity {
    background: #FF5722;
    color: #fff;
    margin-bottom: 20px;
    margin-top: 8px;
}

.job-post-container form > div {
    margin-bottom: 8px;
}

h1.job-posting-h1 {
    font-weight: 400;
}

.job-post-container h2 {
    color: #727272;
}

.job-post-container h2.job-edit {
    color: #0078b7;
    cursor: pointer;
}

.job-post-container h2 {
    margin-bottom: 11px;
}

.job-post-container h2.job-edit:hover {
    color: #56c6ff;
}

.job-post-container .md-editor {
    border: 0;
}

.job-post-container .md-preview,
.job-post-container textarea {
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    padding: 6px;
    font-size: 14px;
    background: #fff;
    margin-bottom: 20px !important;
}

.job-post-container .md-preview {
    max-width: 738px;
    background: #e1f5fe;
}

.form-job-highlight {
    background: #eee;
    padding: 10px;
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    border-radius: 2px;
}

.job-post-container .turn-to-ac {
    font-size: 14px;
}

.job-post-promotion-actions {
    text-align: center;
}

/** Utility */
.label-saving {
    background: #FFF6B2;
}

.label-error {
    background: #FFB2B2;
}

/** Promotional packages */
.job-package-block {
    color: #fff;
    height: 128px;
    padding: 42px 0;
    text-align: center;
    vertical-align: middle;
    font-size: 38px;
    line-height: 1.2;
    font-weight: 200 !important;
    margin-bottom: 30px;
}

.job-package-extend-days {
    background: #00BCD4;
}

.job-package-featured {
    background: #8BC34A;
    height: 165px;
    padding: 29px 6px;
}

/*Preview styles*/
.job-preview-header {
    margin-bottom: 20px;
    border-bottom: 5px solid #252525;
    padding-bottom: 20px;
}

.job-preview-container {
    background: #f3f3f3;
    padding: 8px;
}

/*Public listing styles*/
.job-listing-salary {
    color: #4CAF50;
    font-weight: bold;
    font-size: 13px;
}

.job-listing-basic-meta {
    border-left: 1px solid #03A9F4;
    line-height: 11px;
    padding-left: 5px;
    margin-left: 5px;
}

/*Public listing sidebar*/
#job-apply {
    margin-bottom: 20px;
}

#job-apply-description {
    display: none;
    padding: 18px 9px;
    background: #fffea3;
    border-bottom: 1px solid #2196F3;
    margin-bottom: 20px;
    color: #131838;
    border-radius: 2px;
    word-wrap: break-word;
}

.show-apply-description {
    display: block !important;
}

/*Search index*/
.job-search-results {
    margin:2px 10px 0 7px;
    color: #717171;}

.search-container {
    margin: 20px 0 40px 0;
}

.job-filter-remove {
    display: inline-block;
    cursor: pointer;
    background: #eee;
    padding: 0 4px;
    margin: 8px 3px 4px 0;
    font-size: 11px;
    color: #fff;
}

.job-salary-remove {
    background: #02b875;
}

.job-search-item {
    margin-bottom: 20px;
    padding: 5px 10px;
    position: relative;
}

.job-search-item-featured {
    background: #eafbea;
    padding: 10px 2px 10px 6px;
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    border-radius: 2px;
}

.job-featured-label {
    position: absolute;
    top: 0;
    right: 10px;
    padding: 2px 6px;
    background: #fff;
    color: #4CAF50;
    font-size: 12px;
}

.job-announce {
    background: #f5f5f5;
    margin-bottom: 40px;
}

.search-item-title {
    font-size: 21px;
    line-height: 1.2em;
    margin-bottom: 4px;
}

.job-listing-inline {
    font-size: 12px;
    color: #444;
    margin-bottom: 1px;
}

.job-listing-inline span {
    margin-right: 10px;
}

.job-search-description {
    color: #444;
    font-size: 14px;
    line-height: 21px;
}

.job-search-date {
    font-size: 12px;
    color: #888;
}

.job-search-item .subjects-navigation {
    margin: 2px 0 0 0;
}

.job-search-item  .subject-item a,
.job-search-item  .subject-item a:visited {
    height: 20px;
    padding: 3px 6px;
    line-height: 27px;
    font-size: 12px;
    margin: 0 3px 6px 0;
}

/**Search sidebar*/

.job-search-nav-list {
    margin-bottom: 40px;
}

.job-show-more {
    cursor: pointer;
    background: #eee;
    font-size: 12px;
    color: #888;
    padding: 2px 4px;
    border-radius: 2px;
    float: right;
    margin-bottom: 5px;
}

.job-show-more:hover {
    background: #e5e5e5;
    color: #252525;
}

#show-fewer-subject-link {
    display: none;
}

#more-subject-aggs-list {
    display: none;
}

.job-search-nav-list li {
    margin-bottom: 3px;
}

.job-search-nav-list li a {
    padding: 3px 10px;
    line-height: 1.5;
    color: #888;
}

.job-search-nav-list .badge {
    float: right;
    background: #eee;
    color: #717171;    text-shadow: none;
}

.search-highlight {
    background: #ffff88;
    font-weight: bold;
}


@media (min-width: 767px) {
    .job-search-item-featured {
        padding: 10px;
    }

    .job-search-item-featured .job-search-item-meta {
        margin-left: 5px !important;
    }

    .job-featured-label {
        right: 0;
    }

    .job-search-nav-list h3 {
        padding-left: 10px;
    }
}

@media (min-width: 980px) {
    .ask-an-expert-title {
        margin-top: -30px;
    }
}

@media (max-width: 768px) {
    .ask-an-expert-title {
        margin-top: 40px;
    }
}

/** on profile edit */
.user-subject-item, .user-subject-item-edit {
    float: left;
    position: relative;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
    padding: 18px 5px;
    border-radius: 2px;
    margin: 5px;
    width: 195px;
    text-align: center;
    background: #30A5ED;
    color: #FFF;
    font-weight: 200;
    font-size: 15px;
}

.user-subject-item-edit {
    background: #F1F1F1;
    color: #999;
    cursor: pointer;
    border: 3px dashed #ddd;
    padding: 15px 2px;
}

.user-subject-item-edit:hover {
    box-shadow: inset 2px 5px 20px #ddd;
}

.user-subject-item .subject-primary-selected {
    position: absolute;
    top: 5px;
    right: 5px;
    font-size: 17px;
}

/** start modal dialog */
#subject-server-message {
    color: red;
    font-weight: 200;
}

.subjects-modal form {
    margin: 0;
}

.subjects-modal .input-subject-search {
    float: right;
    margin-right: 10px;
    height: 15px;
    margin-top: 3px;
    font-size: 13px;
    font-weight: 200;
}

.subjects-modal .input-subject-search i {
    font-size: 12px;
    position: relative;
    top: -4px;
}

.subjects-modal .input-subject-search input {
    height: 16px;
}

.subjects-modal .modal-header {
    display: none;
    border-bottom: 1px solid #ddd;
    background: #F5F5F5;
}

.subject-modal-title .modal-icon {
    font-size: 19px;
    margin-right: 2px;
}

.subjects-modal .modal-header h3 {
    color: #0088C9;
    text-align: left;
    font-weight: 400;
}

.subjects-modal-body {
    height: 250px;
    overflow-y: auto;
}

.subjects-modal-sidebar {
    display: none !important;
    font-size: 15px;
}

.subject-primary-selected {
    color: orange !important;
}

/* Table */
.subject-primary {
    font-size: 16px;
    color: #CCC;
}

.subject-primary:hover {
    color: #C2AE7C;
    cursor: pointer;
}

.subject-list-row div {
    margin-right: 3px;
    display: inline-block;
}

.subject-list-row div.subject-item-type {
    margin-right: 0;
}

.subject-list-row:hover {
    background: #DFF0FC;
}

.subject-checkbox {
    vertical-align: super;
}

td.subject-item-type {
    color: #aaa;
    font-size: 12px;
    vertical-align: middle;
}

.subject-item-new {
    color: #fff;
    background: #2196F3;
    padding: 2px 4px;
    font-size: 12px;
    border-radius: 2px;
}

.subject-item-description {
    color: #888;
    font-size: 12px;
    padding-left: 22px;
}

@media (min-width: 540px) {
    .subjects-modal .modal-header {
        display: block;
    }
}

@media (min-width: 768px) {
    .subjects-modal {
        width: 95% !important;
        left: 15px  !important;
        margin-left: 0px !important;
    }

    .subjects-modal-sidebar {
        display: block !important;
        background: #F5F5F5;
        border-right: 1px solid #ddd;
        padding: 15px;
        height: 255px;
        overflow-y: auto;
    }

    .subjects-modal-sidebar h5 {
        font-weight: 400;
        color: #888;
    }

    .subjects-modal-sidebar #no-primary-selected {
        color: #F7871C;
    }

    .subjects-modal-sidebar #no-primary-selected .icon-warning-sign {
        color: #727272;
    }

    .subjects-modal-sidebar #sidebar-primary-selection {
        display: none;
    }

    .subjects-modal-sidebar p, .subjects-modal-sidebar h5 {
        padding: 1px 3px;
    }

    .subjects-sidebar-filter p:hover, .subjects-sidebar-filter p.active {
        background: #e1e1e1;
        cursor: pointer;
    }
}

@media (min-width: 980px) {
    .subjects-modal {
        width: 960px !important;
        left: 50%  !important;
        margin-left: -480px !important;
    }
    .subjects-modal-body, .subjects-modal-sidebar  {
        height: 350px;
    }
}

@media (min-width: 1200px) {
    .subjects-modal-body, .subjects-modal-sidebar  {
        height: 400px;
    }
}

.show-institution-list {
    z-index: 2000 !important;
}

.show-institution-list .ajax-search-item-left {
    margin-top: 4px;
    padding: 3px 4px;
    background: #0088c9;
    color: #fff;
    font-size: 13px;
    font-weight: 300;
    text-align: center;
    -webkit-font-smoothing: antialiased;
    border-radius: 2px;
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
}