/* http://meyerweb.com/eric/tools/css/reset/
   v2.0 | 20110126
   License: none (public domain)
*/

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}
/*
ol, ul {
  list-style: none;
}*/
blockquote, q {
  quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
  content: '';
  content: none;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
.accordion {
  cursor: pointer;
  padding: 10px 20px 10px 20px;
  width: 100%;
  border: none;
  text-align: left;
  outline: none;
  font-size: 15px;
  transition: 0.2s;
  border-radius: 5px;
  background-color: var(--primary-color);
  color: var(--text-primary);
}

.active, .accordion:hover {
  background-color: var(--primary-color);
  color: var(--text-primary);
  border-radius: 5px;
}

.accordion:after {
  content: '\002B';
  font-weight: 500;
  float: right;
}

.accordion:after:hover {
  color: var(--text-primary);
}

.active:after {
  content: "\2212";
}

.accordion-panel {
  margin: 10px -5px 10px 0px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.1s ease-out;
}

.btn {
  cursor: pointer;
  text-decoration: none;
  text-align: center;
  letter-spacing: .5px;
  -webkit-transition: background-color .2s ease-out;
  transition: background-color .2s ease-out;
  font-family: Roboto, sans-serif;
  font-weight: 300;
  font-size: 14px;
  outline: 0;
  border: none;
  border-radius: var(--border-radius);
  display: inline-block;
  height: 36px;
  line-height: 36px;
  padding: 0 16px;
  vertical-align: middle;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  -webkit-box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 3px 1px -2px rgba(0, 0, 0, 0.12), 0 1px 5px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 3px 1px -2px rgba(0, 0, 0, 0.12), 0 1px 5px 0 rgba(0, 0, 0, 0.2);
  -webkit-user-select: none;
  user-select: none;
  -ms-user-select: none;
}

.btn.info:hover {
  background-color: var(--button-info);
  color: var(--button-info-text);
}
.btn.info { color: var(--button-info-text); }

.btn.success:hover {
  background-color: var(--button-success);
  color: var(--button-success-text);
}
.btn.success { color: var(--button-success-text); }

.btn.danger:hover {
  background-color: var(--button-danger);
  color: var(--button-danger-text);
}
.btn.danger { color: var(--button-danger-text); }

.btn.warning:hover {
  background-color: var(--button-warning);
  color: var(--button-warning-text);
}
.btn.warning { color: var(--button-warning-text); }

.btn.primary {
  color: var(--nav-text-color);
}

.btn-round {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  cursor: pointer;
  display: inline-block;
  box-shadow: 1px 7px 8px 0px rgba(0, 0, 0, 0.3);
  -webkit-box-shadow: 1px 7px 8px 0px rgba(0, 0, 0, 0.3);
  -moz-box-shadow: 1px 7px 8px 0px rgba(0, 0, 0, 0.3);
}

.btn-round i {
  position: relative;
  color: var(--nav-text-color);
  top: 10px;
  left: 11px;
  font-size: 16px;
}

.comment-button {
  margin: 2px 2px 7px 2px;
  padding: 5px;
  color: var(--nav-text-color);
  background-color: var(--primary-color);
  outline: none;
  border: 0px;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  cursor: pointer;

  i {
   color: var(--nav-text-color);
  }
}
.card {
  background-color: var(--card-background);
  padding: 23px;
  margin-left: 10px;
  margin-right: 10px;
  margin-bottom: 10px;
  border: 1px solid transparent;
}

.card:hover {
  border: 1px solid var(--primary-color);
}

.card-image {
  height: 300px;
  width: 260px;
  float: left;
  margin: 10px;
  padding-left: 10px;
  padding-top: 20px;
  position: relative;
  background-image: linear-gradient(var(--background-color), var(--card-gradient));
}

.card-image-footer {
  position: absolute;
  bottom: 5px;
  right: 5px;
  text-align: right;
  margin: 10px;
}
.heatmap {

  display: flex;
  align-items: center;

  .heatmap-container {
    display: grid;
    grid-template-columns: repeat(52, 1fr);
    grid-template-rows: repeat(7, 1fr);
    gap: 2px;
    width: 95vw;
    max-width: 1200px;
    margin: auto;
  }

  .cell {
    aspect-ratio: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-weight: 500;
    background-color: red; /* This will be dynamically changed by JavaScript */
    position: relative;
    cursor: pointer;
  }

  .cell:hover::after {
    content: attr(data-value);
    position: absolute;
    background-color: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 5px;
    border-radius: 3px;
    top: -30px;
    right: 50%;
    transform: translateX(50%);
    white-space: nowrap;
    z-index: 10;
  }

  .day-label {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 100%;
    text-align: center;
    padding: 4px;
    font-size: 0.8em;
  }

}
.unread {
  font-weight: 500;
}

.comment-modal-medium {
  height:80% !important;
  position: relative !important;
  width: 80% !important;
}

.modal-footer-comment {
  border-top: 1px solid var(--modal-line-color);
  position: relative;
  width: 80%;
  margin: auto;
  padding: 0px;
  background-color: var(--modal-background);
  p {
    padding: 10px;
  }
}

@media only screen and (max-width: 600px) {
  .comment-modal-medium {
    width: 98% !important;
    height: 90% !important;
  }

  .modal-footer-comment {
    width: 98%;
  }
}
.cookie_consent {
  background-color: rgba(0,0,0, 0.8);
  color: #fff;
  position: fixed;
  bottom: 0px;
  line-height: 45px;
  width: 100%;
  text-align: center;

  button {
    cursor: pointer;
    text-decoration: none;
    text-align: center;
    -webkit-transition: background-color .2s ease-out;
    transition: background-color .2s ease-out;
    outline: 0;
    border: none;
    border-radius: var(--border-radius);
    display: inline-block;
    padding: 5px;
    margin-left: 10px;
    vertical-align: middle;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    -webkit-box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 3px 1px -2px rgba(0, 0, 0, 0.12), 0 1px 5px 0 rgba(0, 0, 0, 0.2);
    box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 3px 1px -2px rgba(0, 0, 0, 0.12), 0 1px 5px 0 rgba(0, 0, 0, 0.2);
    -webkit-user-select: none;
    user-select: none;
    -ms-user-select: none;
    background-color: #ffffff;
    color: #000000;
  }

  button:hover {
    background-color: var(--button-info);
    color: var(--button-success-text);
  }
}

@media only screen and (max-width: 768px) {
  .cookie_consent {
    line-height: 25px;
  }
}

.cookie_update {
    background-color: rgba(0,0,0, 0.5);
    color: #fff;
    position: fixed;
    text-align: center;
    bottom: 5px;
    left: 5px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    line-height: 36px;
    z-index: 100;
    cursor: pointer;
    box-shadow: 1px 7px 8px 0px rgba(0, 0, 0, 0.3);
   -webkit-box-shadow: 1px 7px 8px 0px rgba(0, 0, 0, 0.3);
    -moz-box-shadow: 1px 7px 8px 0px rgba(0, 0, 0, 0.3);

    a:link, a:visited, a:hover, a:active {
      text-decoration: none;
      color: #fff;
    }
}
.datetime-picker {
  height: 225px;
  padding-left: 5px;
}

.datetime-picker select {
  background-color: var(--card-background);
  border: none;
  font-family: "Roboto";
  font-size: 15px;
  color: var(--text-primary);
  outline: none;
}

.datetime-picker select option {
  background-color: var(--card-background);
  border: none;
  font-family: "Roboto";
  font-size: 15px;
  color: var(--text-primary);
  outline: none;
}

.datetime-picker .datetime-date {
  font-size: 16px;
  width: 30px;
  float: left;
  margin: 2px;
  padding: 2px;
  text-align: center;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.datetime-picker .primary {
  color: var(--nav-text-color) !important;
}

.datetime-picker .datetime-date:hover {
  background-color: var(--modal-header);
  color: var(--modal-header-text);
}
.dropdown {
  position: relative;
  display: inline-block;
}

.dropdown .dropdown-content {
  visibility: hidden;
  position: absolute;
  top: 45px;
  color: var(--text-primary);
  border: 1px solid var(--dropdown-border);
  background-color: var(--dropdown-background);
  width: max-content;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
  z-index: 1;
  opacity: 0;
  transition: all .2s ease-in-out;
  border-radius: 0 0 2px 2px;
  line-height: 36px;
}

.dropdown-content {
  margin-top: 1px;
}

.dropdown hr {
  color: var(--dropdown-hr);
  size: 0.5px;
}

.dropdown:hover .dropdown-content {
  display: block;
  visibility: visible;
  opacity: 1;
  transition: all 0.2s ease-in-out;
}
.editor {
  width: 100%;
  margin: 10px 0px 10px 0px;
}

.editor .editor-button {
  margin: 2px 2px 7px 2px;
  padding: 5px;
  color: var(--text-primary);
  background-color: transparent;
  outline: 1px solid var(--primary-color);
  border-radius: 50%;
  border: none;
  box-shadow: none;
  text-decoration: none;
  width: 36px;
  height: 36px;
  cursor: pointer;
}

.editor .editor-button i {
  color: var(--text-primary);
}

.editor .editor-button:hover,.editor-button:hover i {
  background-color: var(--primary-color);
  color: var(--nav-text-color);
  outline: 1px solid var(--primary-color);
}

.editor .editor-content {
  outline: none;
  border: 1px solid #888;
  padding: 5px 5px 5px 5px;
}

.editor .editor-large {
  min-height: 250px;
}

.editor .editor-small {
  min-height: 60px;
}

.editor li, .editor ol {
  margin: 0px 0px 0px 20px;
}
.floating-container {
  position: fixed;
  width: 70px;
  height: 70px;
  bottom: 30px;
  right: 30px;
  z-index: 50;
  transition: 0.2s;
  outline: 0;
  -webkit-tap-highlight-color: transparent;
}

.floating-container .fab-item {
  margin: auto;
  position: relative;
  display: none;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  /*z-index: 300;*/
  cursor: pointer;
  margin-bottom: 15px;
  box-shadow: 1px 7px 8px 0px rgba(0, 0, 0, 0.3);
  -webkit-box-shadow: 1px 7px 8px 0px rgba(0, 0, 0, 0.3);
  -moz-box-shadow: 1px 7px 8px 0px rgba(0, 0, 0, 0.3);
}

.floating-container .fab-item i {
  position: relative;
  color: var(--nav-text-color);
  top: 13px;
  left: 14px;
}

.floating-container button.fab-item {
  width: 43px;
  height: 43px;
  border: none;
  font-size: 16px;
  outline: none;
}

.floating-container button.fab-item i {
  position: relative;
  color: var(--nav-text-color);
  top: 0px;
  left: 0px;
}

.floating-container:hover, .floating-container:active, .floating-container:focus {
  height: auto;
  padding-bottom: 60px;
  -webkit-tap-highlight-color: transparent;
}

.floating-container:hover .fab-item, .floating-container:active .fab-item, .floating-container:focus .fab-item {
  display: block;
}

.floating-container:hover .fab-item:hover, .floating-container:active .fab-item:hover, .floating-container:focus .fab-item:hover {
  box-shadow: 0 3px 3px 0 rgba(0, 0, 0, 0.14), 0 1px 7px 0 rgba(0, 0, 0, 0.12), 0 3px 1px -1px rgba(0, 0, 0, 0.2);
  -webkit-box-shadow: 0 16px 24px 2px rgba(0, 0, 0, 0.14), 0 6px 30px 5px rgba(0, 0, 0, 0.12), 0 8px 10px -7px rgba(0, 0, 0, 0.2);
  transition: 0.3s ease;
}

.floating-button {
  outline: 0;
  width: 55px;
  height: 55px;
  border-radius: 50%;
  position: fixed;
  bottom: 30px;
  right: 38px;
  cursor: pointer;
  box-shadow: 0 3px 3px 0 rgba(0, 0, 0, 0.14), 0 1px 7px 0 rgba(0, 0, 0, 0.12), 0 3px 1px -1px rgba(0, 0, 0, 0.2);
  -webkit-box-shadow: 0 16px 24px 2px rgba(0, 0, 0, 0.14), 0 6px 30px 5px rgba(0, 0, 0, 0.12), 0 8px 10px -7px rgba(0, 0, 0, 0.2);
}

.floating-button i, .floating-button a {
  color: var(--nav-text-color);
  position: absolute;
  bottom: 20px;
  left: 21px;
  font-size: 16px;
}

.floating-button:hover {
  box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.2);
}
.form-field {
  position: relative;
}

.form-field input:-webkit-autofill,
.form-field input:-webkit-autofill:hover,
.form-field input:-webkit-autofill:focus,
.form-field input:-webkit-autofill:active {
  background-color: var(--background-color) !important;
  -webkit-box-shadow: 0 0 0 1000px var(--background-color) inset;
  box-shadow: 0 0 0 1000px var(--background-color) inset;
  -webkit-text-fill-color: var(--text-primary);
}

.form-field input:-moz-autofill,
.form-field input:-moz-autofill:hover,
.form-field input:-moz-autofill:focus,
.form-field input:-moz-autofill:active {
  box-shadow: 0 0 0 1000px var(--background-color) inset;
  -moz-text-fill-color: var(--text-primary);
}


.form-field small {
  font-size: 0.75em;
}

.form-field input[type='text'], .form-field input[type='password'] {
  width: 100%;
  border: none;
  padding: 2px;
  border-bottom: 1px solid var(--line-color);
  outline: none;
  font-size: 15px;
  color: var(--text-primary);
  background-color: transparent;
  font-family: "Roboto";
  font-weight: 300;
  font-size: 15px;
}

.form-field .input-no-cursor {
  caret-color: transparent;
}

.form-field .label {
  position: absolute;
  left: 2px;
  top: -20px;
  padding: 2px;
  font-size: 0.9em;
  padding-top: 1px;
}

.form-field .label-static {
  font-size: 0.9em;
}

.form-field .label-sticky {
  position: absolute;
  left: 0px;
  top: 0px;
  padding: 2px;
  transition: 0.2s;
  transform: translateX(0px) translateY(-20px);
  font-size: 0.7em;
  padding-top: 1px;
}

.form-field .invalid {
  position: absolute;
  color: #ff0000;
  font-size: 0.75em;
  right: 0px;
  padding-top: 5px;
  font-style: italic;
}

.form-field .counter {
  position: absolute;
  color: var(--text-primary);
  font-size: 0.75em;
  right: 0px;
  padding-top: 5px;
  font-style: italic;
}

.form-field .suggestion {
  position: absolute;
  color: var(--button-info);
  font-size: 0.75em;
  right: 0px;
  padding-top: 5px;
  font-style: italic;
}

.form-field .suffix {
  color: white;
  position: absolute;
  top: 5px;
  padding-left: 5px;
}

.form-field .icon-suffix {
  position: absolute;
  right: 0px;
  top: 0px;
}

.form-field .input-suffix {
  position: absolute;
  right: 0px;
  top: 0px;
}

.form-field .radio-group {
  position: relative;
  padding-left: 25px;
  padding-right: 25px;
  margin-bottom: 12px;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  font-size: 0.75em;
}

.form-field .radio-group input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}

.form-field .radio-group input:checked ~ .checkmark {
  box-shadow: inset 0 0 0 3px var(--primary-color);
  border: 0px solid var(--primary-color);
  height: 18px;
  width: 18px;
}

.form-field .radio-group input:checked ~ .checkmark:after {
  display: block;
}

.form-field .radio-group .checkmark {
  position: absolute;
  top: -2px;
  left: 0;
  height: 15px;
  width: 15px;
  border-radius: 50%;
  border: 1px solid var(--primary-color);
//  transition: .15s ease;
}

.form-field .radio-group .checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

.form-field .radio-group .checkmark:after {
  top: 9px;
  left: 9px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

.form-field .switch {
  position: relative;
  display: inline-block;
  width: 40px;
  height: 14px;
}

.form-field .switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.form-field .switch input:checked + .slider:before {
  -webkit-transform: translateX(19px);
  -ms-transform: translateX(19px);
  transform: translateX(19px);
  background-color: var(--primary-color);
}

.form-field .switch .slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #9e9e9e;
  -webkit-transition: .2s;
  transition: .2s;
}

.form-field .switch .slider:before {
  border: 1px solid var(--primary-color);
  position: absolute;
  content: "";
  height: 20px;
  width: 20px;
  left: 0px;
  bottom: -4px;
  background-color: var(--text-primary);
  -webkit-transition: .4s;
  transition: .4s;
}

.form-field .switch .slider.round {
  border-radius: 34px;
}

.form-field .switch .slider.round:before {
  border-radius: 50%;
}

.form-field textarea {
  width: 100%;
  height: 150px;
  padding: 10px 10px;
  margin-top: 10px;
  box-sizing: border-box;
  border: 1px solid var(--primary-color);
  border-radius: 4px;
  resize: vertical;
  outline: none;
  font-size: 15px;
  color: var(--text-primary);
  background-color: transparent;
  font-family: "Roboto";
  font-weight: 300;
  font-size: 15px;
  display: none;
}

.form-field textarea.long {
  height: 300px;
}

/* custom select */

.form-field .custom-select {
  position: relative;
}

.form-field .custom-select select {
  display: none;
}

.form-field .select-selected {
  border-bottom: 1px solid var(--line-color) !important;
  color: var(--text-primary) !important;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.form-field .select-selected:after {
  position: absolute;
  content: "";
  top: 28px;
  right: 10px;
  width: 0;
  height: 0;
  border: 6px solid transparent;
  border-color: var(--text-primary) transparent transparent transparent;
}

.form-field .select-selected.select-arrow-active:after {
  border-color: transparent transparent var(--text-primary) transparent;
  top: 22px;
}

.form-field .select-items div, .form-field .select-selected {
  color: var(--nav-text-color);
  padding: 10px 8px;
  border: 1px solid transparent;
  border-color: transparent transparent rgba(0, 0, 0, 0.25) transparent;
  cursor: pointer;
}

.form-field .select-items {
  position: absolute;
  background-color: var(--primary-color);
  top: 100%;
  left: 0;
  right: 0;
  z-index: 99;
  border-radius: 0px 0px 2px 2px;
}

.form-field .select-hide {
  display: none;
}

.form-field .select-items div:hover, .form-field .same-as-selected {
  background-color: var(--secondary-color);
}

.form-field input[type=file]::file-selector-button {
  cursor: pointer;
  text-decoration: none;
  text-align: center;
  letter-spacing: .5px;
  -webkit-transition: background-color .2s ease-out;
  transition: background-color .2s ease-out;
  font-size: 14px;
  outline: 0;
  border: none;
  border-radius: 2px;
  display: inline-block;
  height: 36px;
  line-height: 36px;
  padding: 0 16px;
  vertical-align: middle;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  -webkit-user-select: none;
  user-select: none;
  -ms-user-select: none;
  background-color: var(--primary-color);
  color: var(--nav-text-color);
}

.form-field input[type=file]::file-selector-button:hover {
    opacity: 0.75;
}

.form-field input[type=file] {
  width: 100%;
  max-width: 100%;
  padding: 5px;
  color: var(--text-primary);
  border-bottom: 1px solid var(--line-color);
}

.inline-input {
  width: 100%;
  border: none;
  outline: none;
  font-size: 15px;
  color: var(--text-primary);
  background-color: transparent;
  font-family: "Roboto";
  font-weight: 300;
  font-size: 15px;
}

.file-content {
  padding: 15px;
}
body {
  font-family: Roboto, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  font-weight: 300;
  font-size: 15px;
  background-color: var(--background-color);
  background-image: linear-gradient(var(--background-color), var(--background-color-alt));
  background-attachment: fixed;
  color: var(--text-primary);
}

h5 {
  font-size: 1.6rem;
  color: var(--text-primary);
  font-weight: 400;
  padding-bottom: 5px;
}

h6 {
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--text-primary);
  padding-bottom: 5px;
}

ul {
  padding-left: 20px;
  line-height: 1.5;
}

@media only screen and (max-width: 768px) {
  body {
    font-size: 12px;
  }
  h6 {
    font-size: 1.0rem;
  }
  h5 {
    font-size: 1.2rem;
  }
}

@-moz-document url-prefix() {
  html {
    scrollbar-width: none;
    background-color: var(--background-color);
    background-image: linear-gradient(var(--background-color), var(--background-color-alt));
    background-attachment: fixed;
  }
}

html {
  scrollbar-width: none;
  -ms-overflow-style: none;
  overflow-y: scroll;
  background-color: var(--background-color);
  background-image: linear-gradient(var(--background-color), var(--background-color-alt));
  background-attachment: fixed;
}

html::-webkit-scrollbar {
  width: 0px;
  background: transparent;
}

small { font-size: 0.75em; }
b { font-weight: 500; }
strong { font-weight: 500; }


.text-invert {
  color: var(--background-color);
  background-color: var(--text-primary);
}

.logo {
  background-image: var(--logo);
  background-repeat: no-repeat;
  background-size: contain;
  width: 658px;
  height: 120px;
  margin: 0 auto;
}

@media only screen and (max-width: 768px) {
  .logo {
    background-image: var(--logo);
    background-repeat: no-repeat;
    background-size: contain;
    width: 329px;
    height: 60px;
    margin: 0 auto;
  }
}

.hr { border-top: 1px solid var(--line-color); border-bottom: 0px; }

.shadow {
  webkit-box-shadow: 0 8px 17px 2px rgba(0, 0, 0, 0.14), 0 3px 14px 2px rgba(0, 0, 0, 0.12), 0 5px 5px -3px rgba(0, 0, 0, 0.2);
  box-shadow: 0 8px 17px 2px rgba(0, 0, 0, 0.14), 0 3px 14px 2px rgba(0, 0, 0, 0.12), 0 5px 5px -3px rgba(0, 0, 0, 0.2);
}

.drop-shadow, .tags-input .tag-suggestions:not(:empty) {
  box-shadow: 1px 7px 8px 0px rgba(0, 0, 0, 0.3);
  -webkit-box-shadow: 1px 7px 8px 0px rgba(0, 0, 0, 0.3);
  -moz-box-shadow: 1px 7px 8px 0px rgba(0, 0, 0, 0.3);
}

.heavy-shadow {
  -webkit-box-shadow: 0 16px 24px 2px rgba(0, 0, 0, 0.14), 0 6px 30px 5px rgba(0, 0, 0, 0.12), 0 8px 10px -7px rgba(0, 0, 0, 0.2);
  box-shadow: 0 16px 24px 2px rgba(0, 0, 0, 0.14), 0 6px 30px 5px rgba(0, 0, 0, 0.12), 0 8px 10px -7px rgba(0, 0, 0, 0.2);
}

.danger {
  color: var(--danger-text);
  background-color: var(--danger);
}

.success {
  color: var(--success-text);
  background-color: var(--success);
}

.warning {
  color: var(--warning-text);
  background-color: var(--warning);
}

.info {
  color: var(--info-text);
  background-color: var(--info);
}

.primary {
  color: var(--text-primary);
  background-color: var(--primary-color);
}

.text-primary { color: var(--text-primary); }

.text-secondary { color: var(--text-secondary); }

.text-warning { color: var(--warning); }

#main_container {
  padding-top: 55px;
  margin: 0 auto;
  max-width: 1280px;
  width: 96%;
}

a:link, a:visited, a:hover, a:active {
  text-decoration: none;
  color: var(--link-color);
}

.center { margin: 0 auto; }
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }
.right { float: right; }
.left { float: left; }

.responsive {
  max-width: 100%;
  height: auto;
}
.pointer { cursor: pointer; }
.row { margin-bottom: 20px; }

.row::after {
  content: "";
  display: table;
  clear: both;
}

[class*="col-"] {
  width: 100%;
  float: left;
}

[class*="col-"]::before {
  content: "\200B";
}

.divider {
  content: " ";
  border-top: 1px solid var(--line-color);
}

.footer {
  padding: 10px;
  margin-top: 20px;
  border-top: 1px solid var(--line-color);
  text-align: center;
}

.object_header {
  padding-top: 5px;
  font-style: italic;
  font-size: 17.5px;
}

@media only screen and (max-width: 600px) {
  .hide-on-small {
    display: none;
  }
  .show-on-small {
    display: block;
  }
}

@media only screen and (min-width: 600px) {
  .hide-on-medium {
    display: none;
  }
  .show-on-small {
    display: none;
  }
  .col-s-1 {
    width: 8.33%;
  }
  .col-s-2 {
    width: 16.66%;
  }
  .col-s-3 {
    width: 25%;
  }
  .col-s-4 {
    width: 33.33%;
  }
  .col-s-5 {
    width: 41.66%;
  }
  .col-s-6 {
    width: 50%;
  }
  .col-s-7 {
    width: 58.33%;
  }
  .col-s-8 {
    width: 66.66%;
  }
  .col-s-9 {
    width: 75%;
  }
  .col-s-10 {
    width: 83.33%;
  }
  .col-s-11 {
    width: 91.66%;
  }
  .col-s-12 {
    width: 100%;
  }
  #main_container {
    width: 90%;
    padding-left: 0px;
    padding-right: 0px;
  }
}

@media only screen and (min-width: 1024px) {
  .hide-on-medium {
    display: inline;
  }
  .show-on-small {
    display: none;
  }
  .col-1 {
    width: 8.33%;
  }
  .col-2 {
    width: 16.66%;
  }
  .col-3 {
    width: 25%;
  }
  .col-4 {
    width: 33.33%;
  }
  .col-5 {
    width: 41.66%;
  }
  .col-6 {
    width: 50%;
  }
  .col-7 {
    width: 58.33%;
  }
  .col-8 {
    width: 66.66%;
  }
  .col-9 {
    width: 75%;
  }
  .col-10 {
    width: 83.33%;
  }
  .col-11 {
    width: 91.66%;
  }
  .col-12 {
    width: 100%;
  }
}

.tab-line {
  display: none !important;
}

.tab-loading-burst {
  display: none !important;
}

sup {
  vertical-align: super;
  font-size: smaller;
}

.search_field input[type='text'] {
  border: none;
  margin-top: 8px;
  margin-right: 10px;
  outline: none;
  border-bottom: 1px solid var(--line-color);
  font-size: 15px;
  color: var(--text-primary);
  height: 26px;
  background-color: transparent;
  font-family: Roboto, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  font-weight: 300;
  font-size: 15px;
  width: 50%;
}

.search_field button {
  outline: 0;
  border: none;
  text-decoration: none;
  text-align: center;
  background-color: transparent;
  color: var(--link-color);
}

.search_field .label {
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  font-size: 0.90em;
}

.search_field .label input[type=checkbox] {
  accent-color: var(--primary-color);
  width: 18px;
  height: 18px;
  cursor: pointer;
}

.invalid {
  color: #ff0000;
}

.responsive_content {
  img {
    max-width: 100%;
    height: auto;
  }
}

.link-color {
  color: var(--link-color);
}

.file-icon {
  height: 20px;
  width: 20px;
  margin-bottom: -5px;
  -webkit-filter: grayscale(1) invert(0);
  filter: grayscale(1) invert(0);
  margin-right: 5px;
}

.file-icon-dark {
  height: 20px;
  width: 20px;
  margin-bottom: -5px;
  -webkit-filter: grayscale(1) invert(1);
  filter: grayscale(1) invert(1);
  margin-right: 5px;
}
div.preview {
  height: 230px;
  width: 230px;
  overflow: hidden;
  margin: 10px;
  display: block;
  position: relative;
  float: left;
  cursor: pointer;
}

div.preview-125 {
  height: 130px;
  width: 130px;
  overflow: hidden;
  margin: 10px;
  display: block;
  position: relative;
  float: left;
  cursor: pointer;
}

div.card-preview-125 {
  height: 130px;
  width: 130px;
  overflow: hidden;
  margin: 10px;
  cursor: pointer;
}

div.preview .image-preview {
  height: 200px;
  width: 200px;
  object-fit: cover;
}

div.preview-125 .image-preview {
  height: 125px;
  width: 125px;
  object-fit: cover;
}

img.lightbox {
  cursor: pointer;
}

.img-thumb {
  height: 100px;
  width: 100px;
}

.img-tiny {
  height: 50px;
  width: 50px;
  margin: 10px 10px 0px 0px;
}

.img-hover:hover {
  -webkit-box-shadow: 0px 0px 25px 15px rgba(0,0,0,0.70);
  -moz-box-shadow: 0px 0px 25px 15px rgba(0,0,0,0.70);
  box-shadow: 0px 0px 25px 15px rgba(0,0,0,0.70);
}

.image-row {
  .image-container
  {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .image-column {
    flex: 1;
    margin: 10px;
    display: flex;
    flex-direction: column;
    padding: 20px;
    text-align: center;
  }
  .image-content {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .image-title {
    margin-top: auto;
    text-align: center;
    padding: 10px;
  }
  @media (max-width: 768px) { .image-column { flex: 1 1 100%; padding: 0px; margin: 0px 0px 10px 0px; } }
}
.lightbox-modal {
  display: none;
  position: fixed;
  z-index: 500;
  left: 0;
  top: 0px;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.7);
}

.lightbox-modal .modal-header {
  text-align: center;
  font-size: 1.2rem;
  font-weight: 300;
  //background-color: rgba(0, 0, 0, 1);
  background-color: var(--nav-background-color);
  color: var(--nav-text-color);
  margin-top:25px;

  padding: 15px;
  top: 0px;
  position: fixed;
  transform: translate(-50%, -50%);
  left: 50%;
  z-index: 100;
  width: 100%;

}

.lightbox-modal .close {
  color: var(--nav-text-color);
  position: fixed;
  top: 3px;
  right: 25px;
  font-size: 35px;
  font-weight: 300;
  z-index: 101;
}

.lightbox-modal .modal-content {
  position: relative;
  background-color: #fefefe;
  margin: auto;
  padding: 0;
  width: 90%;
  height: 100%;
  max-width: 1200px;
  background-color: transparent;
  top: 55px;
}

.lightbox-modal .close:hover,
.lightbox-modal .close:focus {
  color: #eee;
  text-decoration: none;
  cursor: pointer;
}
.ellipsis-menu {
  display: none;
  position: absolute;
  top: 48px;
  left: 2px;
  right: 2px;
  z-index: 100;
  padding: 10px;
  color: var(--nav-text-color);
  border: 1px solid var(--dropdown-border);
  background-color: var(--dropdown-background);
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
  line-height: 45px;
  border-radius: 0px 0px 2px 2px;

  a:link, a:visited, a:hover, a:active {
    text-decoration: none;
    color: var(--nav-text-color);
  }

}

.modal {
  display: none;
  position: fixed;
  z-index: 200;
  padding-top: 100px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  animation: fadeIn 0.25s forwards;
}

.do_not_animate { animation: unset; }

.modal .close {
  color: var(--modal-header-text);
  float: right;
  font-size: 18px;
}

.modal .close:hover,
.modal .close:focus {
  color: #000;
  text-decoration: none;
  cursor: pointer;
}

.modal .modal-header {
  padding: 10px 16px 10px 16px;
  background-color: var(--modal-header);
  color: var(--modal-header-text);
  font-size: 17.5px;
  /* border-radius: 0px 0px 0px 0px; */
}

.modal .modal-body {
  padding: 10px 16px 10px 16px;
  overflow: hidden;
}

.modal .modal-body p {
  padding: 10px 0px 10px 0px;
  line-height: 1.5;
}

.modal .modal-body pre {
  max-height: 400px;
}

.modal .modal-footer {
  border-top: 1px solid var(--modal-line-color);
  border-width: thin;
  padding: 10px 16px 10px 16px;
  min-height: 30px;
}

.modal .modal-footer-search {
  border-top: 1px solid var(--modal-line-color);
  /*-webkit-animation-name: animatetop;
  -webkit-animation-duration: 0.1s;
  //-webkit-animation-delay: 0.1s;
  animation-name: animatetop;
  animation-duration: 0.1s;
  //animation-delay: 0.1s;*/
  position: relative;
  width: 80%;
  margin: auto;
  padding: 0px;
  background-color: var(--modal-background);
  p {
    padding: 10px;
  }
}

.modal .modal-content {
  background-color: var(--modal-background);
  margin: auto;
  padding: 0;
  /* border: 1px solid var(--modal-border); */
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
  /*-webkit-animation-name: animatetop;
  -webkit-animation-duration: 0.1s;
  animation-name: animatetop;
  animation-duration: 0.1s;*/
  /*border-radius: 2px;*/
}

.modal .modal-medium {
  width: 55%;
}

.modal .modal-small {
  width: 40%;
}

.modal .modal-large {
  width: 90%;
}

@media only screen and (max-width: 768px) {
  .modal .modal-medium {
    width: 95%;
  }
  .modal .modal-small {
    width: 95%;
  }
  .modal .modal-large {
    width: 95%;
  }
}

@-webkit-keyframes animatetop {
  0% {
    transform: scale(0);
  }
  100% {
    transform: scale(1);
  }
}

@keyframes animatetop {
  0% {
    transform: scale(0);
  }
  100% {
    transform: scale(1);
  }
}

@keyframes fadeIn { to { opacity: 1; } }

.nav {
  background-color: var(--nav-background-color);
  color: var(--nav-text-color);
  line-height: 45px;
  height: 45px;
  position: fixed;
  top: 0px;
  width: 100%;
  font-size: 15px;
  z-index: 100;
}

.nav a, .nav span {
  display: block;
  text-decoration: none;
  color: var(--nav-text-color);
  padding-right: 14px;
  padding-left: 14px;
}

.nav span, .nav span:hover {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.nav a:hover, .nav span:hover {
  background-color: var(--nav-highlight-color);
  color: var(--nav-text-color);
}

.nav a:link, .nav a:visited, .nav a:hover {
  color: var(--nav-text-color);
}

.nav .brand {
  background-color: var(--nav-brand-background-color);
  padding-left: 24px;
  padding-right: 24px;
}

.nav .brand-icon {
  vertical-align: middle;
  max-height: 30px;
  font-size: 0;
  max-width: 100px;
}

.nav .icon {
  display: none;
}

.nav .right {
  float: right;
}

.nav .profile {
  display: inline-block;
  background-color: var(--nav-brand-background-color);
  border-radius: 50%;
  vertical-align: middle;
  text-align: center;
  text-decoration: none;
  height: 35px;
  line-height: 37px;
  margin-top: 5px;
  margin-left: 5px;
}

.nav .profile:hover, .nav .brand:hover {
  background-color: var(--nav-hover-brand-color);
}

.nav .search input {
  border: none;
  margin-top: 8px;
  margin-right: 10px;
  outline: none;
  font-size: 15px;
  color: var(--nav-text-color);
  height: 26px;
  border-radius: 1px;
  font-family: "Roboto";
  font-weight: 300;
  font-size: 15px;
}

.nav .search button {
  outline: 0;
  border: none;
  text-decoration: none;
  text-align: center;
  background-color: transparent;
  color: var(--nav-text-color);
}

.notification {
  visibility: hidden;
  border-radius: 0px;
  position: fixed;
  z-index: 300;
  left: 10px;
  bottom: 10px;
}

.show {
  visibility: visible;
 /* -webkit-animation: fadein 0.5, fadeout 1.5s 3.5s;*/
 /* animation: fadein 0.5s, fadeout 1.5s 3.5s;*/
}

.hide {
  visibility: visible;
  -webkit-animation: fadeout 1.5s 4.5s;*/
  animation: fadeout 1.5s 4.5s;*/
}

.notification-entry {
  font-size: 17px;
  min-width: 125px;
  padding: 10px 25px 10px 25px;
  margin-bottom: 10px;
  border-radius: 0px;
}

@-webkit-keyframes fadein {
  from {
    bottom: 0;
    opacity: 0;
  }
  to {
    bottom: 10px;
    opacity: 1;
  }
}

@keyframes fadein {
  from {
    bottom: 0;
    opacity: 0;
  }
  to {
    bottom: 10px;
    opacity: 1;
  }
}

@-webkit-keyframes fadeout {
  from {
    bottom: 10px;
    opacity: 1;
  }
  to {
    bottom: 0;
    opacity: 0;
  }
}

@keyframes fadeout {
  from {
    bottom: 10px;
    opacity: 1;
  }
  to {
    bottom: 0;
    opacity: 0;
  }
}
.pagination { text-align: center; }
.pagination .page, .pagination .first, .pagination .last, .pagination .next, .pagination .prev {
  display: inline-block;
  color: var(--text-primary);
  outline: 1px solid var(--primary-color);
  border-radius: 50%;
  vertical-align: middle;
  text-align: center;
  text-decoration: none;
  height: 35px;
  width: 35px;
  line-height: 37px;
  margin-top: 5px;
  margin-left: 5px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.pagination .page:hover, .pagination .first:hover, .pagination .last:hover, .pagination .next:hover, .pagination .prev:hover {
  background-color: var(--primary-color);
  color: var(--nav-text-color);
  outline: 1px solid var(--primary-color);
}

.pagination .page:hover a, .pagination .first:hover a, .pagination .last:hover a, .pagination .next:hover a, .pagination .prev:hover a {
  background-color: var(--primary-color);
  color: var(--nav-text-color);
  outline: 1px solid var(--primary-color);
}

.pagination .current {
  display: inline-block;
  background-color: var(--primary-color);
  color: var(--nav-text-color);
  border-radius: 50%;
  vertical-align: middle;
  text-align: center;
  text-decoration: none;
  height: 35px;
  width: 35px;
  line-height: 37px;
  margin-top: 5px;
  margin-left: 5px;
}
.panel {
  padding: 23px;
  margin-left: 10px;
  margin-right: 10px;
  margin-bottom: 10px;
  border-radius: 5px;
}
:root {
  --primary-color: #1E90FF;
  --secondary-color: #7e90bc;
  --background-color: #1b1f23;
  --background-color-alt: #3c454e;
  --text-primary: #eeeeee;
  --text-secondary: #eeeeee;
  --button-info: #78bef8;
  --button-success: #93d093;
  --button-danger: #d59191;
  --button-warning: #ffe69a;
  --button-primary: #1E90FF;
  --button-info-text: #ffffff;
  --button-success-text: #ffffff;
  --button-danger-text: #ffffff;
  --button-warning-text: #ffffff;
  --button-primary-text: #ffffff;
  --success: #a5d8a5;
  --danger: #dca3a3;
  --warning: #ffecb3;
  --info: #90caf9;
  --success-text: #ffffff;
  --danger-text: #ffffff;
  --warning-text: #ffffff;
  --info-text: #ffffff;
  --card-background: #313940;
  --card-gradient: #3c454e;
  --modal-header: #00366b;
  --modal-header-text: #ffffff;
  --modal-border: #6f6f6f;
  --modal-background: #313940;
  --modal-line-color: rgba(0,0,0,.1);
  --dropdown-background: #003b75;
  --dropdown-border: #002e5b;
  --dropdown-hr: #00509e;
  --nav-text-color: #eeeeee;
  --nav-background-color: #002e5b;
  --nav-highlight-color: #002447;
  --nav-brand-background-color: #003b75;
  --nav-hover-brand-color: #0055a8;
  --table-row-hover: #313940;
  --line-color: #999999;
  --logo: url(/onlinecollector_logo_dark.png);
  --border-radius: 0px;
  --link-color: #3399CC;
}
.search-selected {
    background-color: var(--primary-color);
    color: var(--nav-text-color);
    border-radius: 5px;
    padding: 5px 3px 5px 7px;
    margin-right: 5px;
    margin-bottom: 5px;

    button {
      background-color: transparent;
      border: none;
      cursor: pointer;
      margin-left: 5px;
      color: var(--nav-text-color);
    }

}

.search-div {
  border-bottom: 1px solid var(--line-color);
  line-height: 30px;
  padding-bottom: 3px;
}

.label {
  left: 2px;
  top: -20px;
  padding: 2px 2px 2px 5px;
  font-size: 0.9em;
}
table {
  border-collapse: collapse;
  width: 100%;
  color: var(--text-primary);
}

tr {
  border-bottom: 1px solid var(--line-color);
}

tr.selected {
  background-color: var(--table-row-hover);
  transition: 0.3s ease;
}

table.striped tr:nth-child(even) {
  background-color: var(--table-row-hover);
}

table.hover tr:hover {
  background-color: var(--table-row-hover);
  transition: 0.3s ease;
}

table.hover th {
  font-size: 0.9em;
  font-weight: 300;
  background-color: var(--modal-header);
  color: var(--modal-header-text);
  line-height: 10px;
  vertical-align: middle;
}

th, td {
  padding: 15px;
  text-align: left;
}

.td-icon {
  width: 100px;
}

table.inline {
  border-collapse: collapse;
  color: var(--text-primary);
  width: auto;
}

table.inline tr {
  border: none;
}

table.inline th, table.inline td {
  padding: 5px;
}

table.compact {
  border-collapse: collapse;
  color: var(--text-primary);
  width: 100%;
  tr {
    border: none;
  }

  th, td {
    padding: 5px;
  }
}

table.no_border_last_row tr:last-child {
  border: none;
}

@media only screen and (max-width: 768px) {
  td.hide-on-small {
    display: none;
  }
}
.tablink {
  background-color: transparent;
  color: var(--text-primary);
  float: left;
  outline: none;
  cursor: pointer;
  padding: 10px 20px 10px 20px;
  margin-right: 5px;
  margin-top: 5px;
  font-size: 15px;
  width: 100%;
  border-radius: 2px;
  border: 1px solid var(--primary-color);
}

.tablink-active {
  border: 1px solid var(--primary-color);
  background-color: var(--primary-color);
  color: var(--nav-text-color);
}

@media only screen and (min-width: 600px) {
  .tabbuttongroup {
    display: flex;
    justify-content: space-between;
    margin: 0 auto;
    padding: 10px 0px;
  }
}

.tabcontent {
  display: none;
}

@media only screen and (max-width: 600px) {
  .tabbuttongroup:after {
    content: "\00a0";
  }
}
.tags-input {
  display: inline-block;
  position: relative;
  border-radius: 4px;
  padding: 5px;
  width: 99%;
  margin-bottom: 15px;
}

.tags-input ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.tags-input ul:nth-child(1) li {
  display: inline-block;
  background-color: var(--primary-color);
  color: var(--nav-text-color);
  border-radius: 2px;
  padding: 5px 10px;
  margin-right: 5px;
  margin-bottom: 5px;
}

.tags-input input[type="text"] {
  border: none;
  outline: none;
  padding: 5px;
  font-size: 14px;
  width: 100%;
  background-color: transparent;
  border-bottom: 1px solid #888;
}

.tags-input input[type="text"]:focus {
  outline: none;
}

.tags-input input[type="text"]::placeholder {
  opacity: 1;
}

.tags-input input[type="text"]::-ms-input-placeholder {
}

.tags-input .delete-button {
  background-color: transparent;
  border: none;
  cursor: pointer;
  margin-left: 5px;
  color: var(--nav-text-color);
}

.tags-input .tag-suggestions {
  position: absolute;
  z-index: 2;
  width: 100%;
  background-color: var(--background-color);
  background-color: transparent;
}

.tags-input .tag-suggestions li {
  padding-top: 5px;
  padding-bottom: 5px;
  padding-left: 5px;
  cursor: pointer;
  color: var(--nav-text-color);
  background-color: var(--primary-color);
  border: 1px solid transparent;
  border-color: transparent transparent rgba(0, 0, 0, 0.25) transparent;
}

.tags-input .tag-suggestions li:last-child {
  border-radius: 0px 0px 2px 2px;
}

.tags-input .tag-suggestions li:hover {
  background-color: var(--primary-color);
  color: var(--nav-text-color);
}
.task-row {
  display: table;
  width: 100%;
}

.task-row > * {
  display: table-row;
}

.task-row .task-icon {
  display: table-cell;
  width: 30px;
  padding: 8px 5px 8px 5px;
  text-align: center;
  border-left: var(--line-color) solid 1px;
  border-top: var(--line-color) solid 1px;
  border-bottom: var(--line-color) solid 1px;
}

.task-row .task-title {
  display: table-cell;
  border: var(--line-color) solid 1px;

  input {
    border: none;
    padding: 7px;
    outline: none;
    color: var(--text-primary);
    background-color: transparent;
    font-family: "Roboto";
    font-weight: 300;
    font-size: 15px;
    width: 90%;
  }
}

.task-row .task-status {
  display: table-cell;
  border-top: var(--line-color) solid 1px;
  border-bottom: var(--line-color) solid 1px;
  border-right: var(--line-color) solid 1px;
  padding: 7px;
  width: 150px;
  cursor: pointer;
}

.task-row .task-remove {
  display: table-cell;
  width: 30px;
  padding: 8px 5px 8px 5px;
  text-align: center;
  border-top: var(--line-color) solid 1px;
  border-right: var(--line-color) solid 1px;
  border-bottom: var(--line-color) solid 1px;
}

.task-row .task-comment {
  display: table-cell;
  width: 60px;
  padding: 8px 5px 8px 5px;
  text-align: center;
  border-top: var(--line-color) solid 1px;
  border-right: var(--line-color) solid 1px;
  border-bottom: var(--line-color) solid 1px;
}

.task-row .custom-select {
  position: relative;
}

.task-row .custom-select select {
  display: none;
}

.task-row .select-selected {
  color: #eee;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.task-row .select-selected:after {
  position: absolute;
  content: "";
  top: 5px;
  right: 10px;
  width: 0;
  height: 0;
  border: 6px solid transparent;
  border-color: var(--text-primary) transparent transparent transparent;
}

.task-row .select-selected.select-arrow-active:after {
  border-color: transparent transparent var(--text-primary) transparent;
  top: 0px;
}

.task-row .select-items div, .form-field .select-selected {
  color: #ffffff;
  padding: 10px 8px;
  border: 1px solid transparent;
  border-color: transparent transparent rgba(0, 0, 0, 0.25) transparent;
  cursor: pointer;
}

.task-row .select-items {
  position: absolute;
  top: 100%;
  margin-top: 15px;
  left: 0;
  right: 0;
  z-index: 99;
  -webkit-box-shadow: 0px 0px 25px 15px rgba(0,0,0,0.70);
  -moz-box-shadow: 0px 0px 25px 15px rgba(0,0,0,0.70);
  box-shadow: 0px 0px 25px 15px rgba(0,0,0,0.70);
}

.task-row .select-hide {
  display: none;
}

.task-row .select-items div:hover, .task-line .same-as-selected {
  background-color: #003b75;
}

@media only screen and (max-width: 768px) {
  .task-row .task-icon {
    display: none;
  }
  .task-row .task-title input {
    font-size: 0.75em;
  }
  .task-row .custom-select {
    font-size: 0.75em;
  }
}

.task-danger {
  color: #eee;
  background-color: #dca3a3;
}

.task-success {
  color: #eee;
  background-color: var(--success);
}

.task-warning {
  color: #eee;
  background-color: #19a2a2;
}

.task-info {
  color: #eee;
  background-color: #90caf9;
}

.task-primary {
  color: var(--text-primary);
  background-color: var(--primary-color);
}

.task-cancelled {
  color: #eee;
  background-color: #bbb;
}

.task-detail {
  padding: 5px 5px 5px 5px;
  display: none;
  animation: fadeIn 0.25s;
}

@keyframes fadeIn {
  0% { opacity: 0; }
  100% { opacity: 1; }
}
/*



*/
