.profile-needs-activation {
  color: darkred;
  text-align: center;
  font-size: 1.3em;
  font-weight: bold;
  background: #ddd;
  border-radius: 5px;
  padding: 3px 0;
}

.profile-rejected {
  background-color: #ecc;
  color: #222;
}

.admin-link,
.profile-link {
  color: #D0CECE;
}

.admin-link:hover,
.profile-link:hover {
  color: whitesmoke;
}

.sidebar a {
  color: #555;
  text-decoration: none;
}

.sidebar a:hover {
  color: #999999;
}

.sidebar .dashboard-active {
  color: coral;
}

.sidebar .dashboard-main-link {
  box-sizing: border-box;
  display: inline-block;
  margin-top: 4px;
  margin-bottom: -5px;
  font-size: 14px;
  color: #555;
}

.sidebar .dashboard-sub-link {
  display: inline-block;
  padding: 0 0 0 26px;
  margin-top: 5px;
  margin-bottom: -5px;
}

.sidebar .dashboard-link-group {
  margin-bottom: 0px;
  border-bottom: 1px solid #D0CECE;
  padding: 0;
}

.new_newsfeed,
.new_faq {
  border-bottom: 2px solid #ccc;
  min-height: 48px;
  margin-bottom: 20px;
}

.form_button_row {
  width: 100%;
  height: 20px;
}

.open_form {
  float: right;
  margin: 5px 10px 0 0;
}

.newsfeed_form,
.faq_form {
  display: none;
}

.dashboard-data {
  overflow: auto;
}

.news_date {
  width: 200px;
}

.news_options {
  display: inline-block;
  text-align: center;
  margin: 0 15px;
}

.news-submit {
  float: right;
}

.admin_news_attribute,
.admin_faq_attribute {
  font-weight: bold;
}

.admin_newsitem,
.admin_faq_wrapper {
  box-sizing: border-box;
  padding: 5px;
  width: 100%;
  margin: 8px 0;
  border: 1px solid #ddd;
  border-radius: 3px;
  background: white;
  box-shadow: 0 1px 1px #ccc;
}

.admin_faq_wrapper {
  padding-bottom: 0;
}

.admin_newsitem:hover,
.admin_faq_wrapper:hover {
  background: #FEF5E7;
}

.admin_newsinfo {
  display: inline-block;
  width: 90%;
}

.admin_delete_newsitem,
.admin_delete_faq {
  display: inline-block;
  background: none;
  color: #E74C3C;
  float: right;
}

.admin_delete_newsitem button,
.admin_delete_faq {
  background: none;
  font-size: 20px;
  border: none;
  outline: none !important;
}

.admin_faq_question,
.admin_faq_rank {
  display: inline-block;
  margin: 0;
}

.admin_faq_rank {
  text-align: right;
}

.move-form {
  display: inline-block;
}

.move_up,
.move_down {
  width: 30px;
  background: none;
  border: none;
  padding: 0;
  font-size: 20px;
}

.move_up {
  color: #2ab27b;
}

.move_down {
  color: #2e6da4;
}

.admin_faq_question {
  font-size: 16px;
}

.admin_faq_answer {
  display: none;
  box-sizing: border-box;
  padding: 8px;
  margin: 3px 0 3px 20px;
  border-top: 1px solid #ccc;
}

.log-heading a {
  color: #666;
}

.log-heading a:hover {
  color: coral;
}

.sidebar-divider {
  height: 1px;
  margin: 0 auto 3px;
  padding: 0;
  width: 100%;
  border-bottom: 1px dotted #bbb;
}

.admin-count {
  display: inline-block;
  float: right;
  margin-right: 7px;
  margin-top: 5px;
  color: white;
  height: 20px;
  min-width: 20px;
  background: #7d7d7d;
  text-align: center;
  border-radius: 4px;
}

.needs-action {
  background: coral;
  -webkit-animation-duration: 0.5s;
          animation-duration: 0.5s;
  -webkit-animation: spin 0.6s ease 1;
  animation: spin 0.6s ease 1;
}

.user-photo {
  max-width: 125px;
  max-height: 125px;
  border-radius: 50%;
  margin-top: -15px;
}

.user-profile {
  display: none;
  margin-bottom: 200px;
  margin-top: -30px;
  color: #666;
}

.user-divider {
  height: 1px;
  margin: 15px auto 8px;
  padding: 0;
  width: 100%;
  border-bottom: 1px dotted #bbb;
}

.user-list-description {
  margin-top: -20px;
  font-style: italic;
}

.table-row:nth-of-type(2n+1) {
  background: #f1f1f1;
}

.table-row:hover {
  background: #faf1e3;
}

.count-info {
  display: inline-block;
  margin-bottom: 12px;
  color: #9c9c9c;
}

.download-button {
  margin: 0 2px;
}

.admin-download-row:last-of-type {
  margin-bottom: 250px;
}

.rejection-reason-bg,
.delete-profile-bg,
.change-role-bg {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 3;
  background-color: rgba(0, 0, 0, 0.8);
  height: 100%;
}

.rejection-reason-panel,
.delete-profile-panel,
.change-role-panel {
  max-width: 700px;
  margin: 80px auto;
}

.rejection-reason {
  width: 100%;
  height: 200px;
}

.activate-form,
.override-authentication-form,
.reject-user,
.change-role {
  display: none;
}

.user-profile-button {
  margin-right: 5px;
}

@-webkit-keyframes spin {
  0% {
    background: #7d7d7d;
  }

  50% {
    height: 16px;
    width: 16px;
    font-size: 12px;
  }

  100% {
    -webkit-transform: rotate(360deg);
    background: coral;
  }
}

@keyframes spin {
  0% {
    background: #7d7d7d;
  }

  50% {
    height: 16px;
    width: 16px;
    font-size: 12px;
  }

  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
    background: coral;
  }
}

.info-panel {
  margin-top: 8px;
}

.users-table,
.log-table,
.publications-table {
  font-size: 12px;
}

.user-search {
  margin-left: 10px;
  width: 300px;
}

.search-output {
  display: none;
  position: absolute;
  z-index: 3;
  background: white;
  box-sizing: border-box;
  width: 100%;
  margin: 5px auto;
  padding: 5px 0;
  border-radius: 5px;
  border: 1px solid #bbb;
  border-right: 2px solid #ddd;
  box-shadow: 0 1px 5px #000;
}

.search-thead {
  border: none;
}

.css_override {
  margin-bottom: 10px;
}

.page-instructions {
  margin: 3px 0 0 0;
  font-size: 0.9em;
}

.page-editor {
  margin-bottom: 200px;
}

@media (max-width: 1024px) {
  .close_form {
    margin: 5px 0;
  }

  .admin_data {
    max-width: 730px;
    margin-right: 0;
  }

  .timezoneinfo {
    width: 100%;
  }

  .perpage {
    width: 40%;
  }
}

.dashboard_success,
.dashboard_fail {
  position: absolute;
  box-sizing: border-box;
  padding: 15px;
  top: 0;
  right: 0;
  left: 0;
  margin: 0 auto;
  opacity: 1;
  min-height: 35px;
  min-width: 200px;
  max-width: 350px;
  z-index: 9;
  color: #333;
  font-weight: bold;
  text-align: center;
  border-radius: 5px;
  -webkit-animation: alertfade 1s 2s forwards;
          animation: alertfade 1s 2s forwards;
}

@-webkit-keyframes alertfade {
  0% {
    opacity: 100%;
  }

  100% {
    opacity: 0;
  }
}

@keyframes alertfade {
  0% {
    opacity: 100%;
  }

  100% {
    opacity: 0;
  }
}

.dashboard_success {
  background: #a2eeb0;
  border: 3px solid #4ac55f;
}

.dashboard_fail {
  background: pink;
  border: 3px solid red;
}

.user-page-data {
  margin-top: 8px;
  margin-bottom: 150px;
}

.finish-profile {
  margin-top: 10px;
  padding: 0 10px;
}

a {
  color: coral;
  font-weight: bold;
}

.open-photo-selector {
  margin-top: 5px;
}

.photo-name {
  margin-left: 15px;
}

.registration-buttons {
  border-top: 2px dotted #D0CECE;
  border-bottom: none;
  border-left: none;
  border-right: none;
  box-shadow: none;
  border-radius: 0;
}

.university-list-wrapper,
.specific-interest-list-wrapper,
.publisher-list-wrapper {
  margin-left: 15px;
}

.university-list,
.specific-interest-list,
.publisher-list {
  position: absolute;
  z-index: 200;
  margin-top: -5px;
  padding: 10px;
  overflow: auto;
  display: none;
  max-height: 250px;
  border: 1px solid #ddd;
  background: white;
  box-shadow: 0 3px 12px #000;
}

.output-heading {
  font-size: 12px;
  text-align: center;
  font-weight: bold;
}

.uni-search-output,
.si-search-output,
.publisher-search-output {
  padding: 2px 0;
}

.search-result:hover {
  font-weight: bold;
  cursor: pointer;
  cursor: hand;
}

.remove-interest-button {
  background: none;
  border: none;
  color: red;
}

.interest {
  border: 1px solid #aaa;
  border-radius: 3px;
  margin-top: 2px;
  margin-bottom: 4px;
  padding: 3px 5px 0 0;
  font-size: 12px;
}

.interest:hover {
  background: #eee;
}

.interest-break {
  margin-bottom: 15px;
}

.interest-number {
  font-size: 18px;
  margin: 0;
}

.section-title,
label {
  color: #777;
  font-weight: bold;
}

.panel-heading-input {
  margin-top: 6px;
}

.dashboard-publication {
  border-radius: 5px;
  padding: 0 0 7px;
  margin: 4px 6%;
  border: 1px solid #ddd;
}

.dashboard-publication:hover {
  background: #eeeeee;
}

.open-new-publication,
.open-new-appearance {
  margin-top: 5px;
}

.dashboard-publication-description {
  font-size: 85%;
  margin-top: 10px;
  margin-left: 10px;
  white-space: pre-wrap;
}

.dashboard-publication-delete {
  color: darkred;
  background: none;
  border: none;
  float: right;
  margin-top: 5px;
  font-size: 1.3em;
}

.dashboard-publication-delete:hover {
  color: red;
}

.dashboard-publication-tag {
  font-style: italic;
}

.dashboard-publication-tag:before {
  content: " - ";
  margin: 0 10px;
}

.admin-profile-media,
.admin-profile-publication {
  white-space: pre-wrap;
  border: 1px solid #000;
  margin-bottom: 4px;
  border-radius: 4px;
  padding: 5px;
}

.change-page-heading {
  margin-top: 5px;
  border: 1px solid #aaa;
  padding: 3px 5px;
  border-radius: 5px;
  background: #eee;
}

