@charset "UTF-8";
html, body, p, h1, h2, h3, h4, h5, hr, ul, ol {
  margin: 0; padding: 0;
}
:focus {
  outline: none;
}
body {
  font-family: 'Open Sans', sans-serif;
  font-size: 16px;
  color: #111;
}
a {
  text-decoration: none;
  color: #0080ca;
}
  a:hover {
    text-decoration: underline;
    color: #005a8f;
  }
#mainwrap {
  display: block;
  width: 100%;
  max-width: 100%;
  min-height: 100vh;
  background-color: #eee;
}
#layout1 {
  width: 100%;
  min-height: 100vh;
  display: grid;
  grid-template-columns: auto 200px minmax(500px, 800px) minmax(250px, 300px) minmax(250px, 300px) auto;
  grid-template-rows: 60px auto;
  grid-column-gap: 10px;
}
  #pageTitle {
    grid-column: 3 / -1;
    grid-row: 1 / 2;
    font-size: 24px;
    box-sizing: border-box;
    line-height: 60px;
    color: #777;
  }
  #nav {
    grid-column: 1 / 3;
    grid-row: 1 / 3;
    background-color: #0080ca;
    color: #fff;
    font-size: 18px;
    line-height: 36px;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    padding: 60px 0 0 0;
  }
    #nav ul {
      list-style: none;
    }
      #nav ul li a {
        color: #fff;
        display: block;
        box-sizing: border-box;
        width: 100%;
        padding: 5px 65px 5px 15px;
        text-decoration: none;
      }
        #nav ul li a:hover {
          background-color: rgba(0, 0, 0, 0.1);
        }
        #nav ul li a i {
          margin-right: 5px;
          width: 20px;
        }
  #main {
    grid-column: 3 / 4;
    grid-row: 2;
  }
  #side1 {
    grid-column: 4 / 5;
    grid-row: 2;
  }
  #side2 {
    grid-column: 5 / 6;
    grid-row: 2;
  }
  #main, #side1, #side2 {
    display: flex;
    flex-direction: column;
  }
  .contentblock {
    box-sizing: border-box;
    margin-bottom: 15px;
  }
    .contentblock h1 {
      font-size: 20px;
      font-weight: normal;
      color: #777;
    }
    .contentblock h2 {
      font-size: 18px;
      font-weight: normal;
    }
    .contentblock p {
      display: block;
      padding: 10px 0;
    }
#page_Dashboard .link_dashboard,
#page_Videos .link_videos,
#page_Playlists .link_playlists,
#page_Notes .link_notes,
#page_Tasks .link_tasks,
#page_Schedule .link_schedule,
#page_Comments .link_comments,
#page_Files .link_files,
#page_Links .link_links
  { background-color: rgba(255, 255, 255, 0.2); }

#pagecover {
  width: 100%;
  min-height: 100vh;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  position: fixed;
  z-index: 90;
  display: none;
}
#overlay {
  max-width: 1000px;
  margin:5vh auto;
  max-height: 80vh;
  background-color: #fff;
  position: relative;
  box-shadow: 3px 3px 10px rgba(0, 0, 0, 0.5);
  z-index: 100;
  overflow-y: auto;
  padding: 25px;
}
  #overlay h1 {
    font-size: 18px;
  }
  #overlay h2 {
    font-size: 16px;
  }

#delete_entity_button {
  border: none;
  background-color: #f2750f;
  display: inline-block;
  font-size: 13px;
  color: #fff;
  font-weight: bold;
  padding: 0 15px;
  line-height: 26px;
  vertical-align:bottom;
}
  #delete_entity_button:hover {
    text-decoration: none;
    background-color: #c24619;
  }
#form_edit.form_edit_Series .series {
  display: block !important;
}
#form_edit.form_edit_Video .video {
  display: block !important;
}
#form_edit.form_edit_Note .note {
  display: block !important;
}
#form_edit.form_edit_Task .task {
  display: block !important;
}
#form_edit.form_edit_File .file {
  display: block !important;
}
#form_edit.form_edit_Link .link {
  display: block !important;
}
#form_edit.form_edit_Comment .comment {
  display: block !important;
}
#form_edit .for_all {
  display: block !important;
}
#form_edit .form_edit_section {
  display: none;
}
#form_edit input[type='text'],
#form_edit input[type='number'],
#form_edit input[type='date'],
#form_edit select,
#form_edit textarea {
  font-family: 'Open Sans', sans-serif;
  font-size: 16px;
  color: #000;
}
.form_edit_section {
  display: block;
  box-sizing: border-box;
  margin-bottom: 15px;
}
  .form_edit_section.halfwidth {
    width: 45%;
  }
  .form_edit_section.fullwidth label,
  .form_edit_section.halfwidth label,
  .quick_create_form label,
  .search_start_form label {
    color: #666;
    display: block;
  }
  .form_edit_section.fullwidth input,
  .form_edit_section.halfwidth input,
  .form_edit_section select,
  .quick_create_form input[type="text"],
  .search_start_form input[type="text"] {
    width: 100%;
    font-size: 22px !important;
    line-height: 36px;
    border: 0 solid;
    border-bottom:1px solid #666;
    color: #666 !important;
  }
  .form_edit_section select {
    padding: 3px;
  }
    .form_edit_section select option {
      font-size: 14px;
    }
    .form_edit_section.fullwidth input:focus,
    .form_edit_section.halfwidth input:focus,
    .form_edit_section select:focus,
    .quick_create_form input[type="text"]:focus,
    .search_start_form input[type="text"]:focus {
      border-color: #0080ca;
      color: #000 !important;
      border-bottom-width: 2px;
      margin-bottom: -1px;
    }
  .form_edit_section.fullwidth textarea {
    width: 100%;
    border: 1px solid #666;
    padding: 5px;
    min-height: 200px;
    color: #666 !important;
    resize: vertical;
    box-sizing: border-box;
  }
    .form_edit_section.fullwidth textarea:focus {
      border-color: #0080ca;
      border-width: 2px;
      padding: 4px;
      color: #000 !important;
    }
.action_button {
  border: none;
  background-color: #0080ca;
  color: #fff;
  font-weight: bold;
  padding: 0 15px;
  line-height: 26px;
  font-size: 13px;
}
  .action_button:hover {
    background-color: #005a8f;
  }
.quick_create_form,
.search_filter_box,
.changelog_box,
.linked_items_box {
  display: block;
  background-color: #fff;
  border: 1px solid #ccc;
  padding: 10px;
  padding-bottom: 12px;
}
  .quick_create_form input[type="submit"],
  .search_start_form input[type="submit"] {
    margin-top: 8px;
  }
  .quick_create_form h1,
  .quick_create_form h2,
  .search_filter_box h1,
  .search_filter_box h2,
  .changelog_box h1,
  .changelog_box h2,
  .linked_items_box h1,
  .linked_items_box h2 {
    color: #666;
  }

.entitylisting {
  list-style: none;
}
  .entitylisting .has_incomplete_tasks {
    color: red;
  }
  .entitylisting a {
    color: #0080ca;
  }
    .entitylisting a:hover {
      color: #005a8f;
    }
.entity_family_members a {
  color: #555;
}
  .entity_family_members a:hover {
    color: #ed3700;
  }
.content_meta {
  margin-bottom: 8px;
}
.entitylisting .scheduling_date,
.content_meta_text .scheduling_date {
  color: #6924e0;
}
.content_meta_text p {
  font-size: 14px;
  padding: 2px 0;
}
.content_meta_starstatus {
  font-size: 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
.starred .starUnstarred {
  display: none;
}
  .starUnstarred {
    color:#ccc;
  }
    .starUnstarred:hover {
      color:#aaa;
    }
.unstarred .starStarred {
  display: none;
}
  .starStarred {
    color:orange;
  }
    .starStarred:hover {
      color:#aaa;
    }
.uncompleted .completedComplete {
  display: none;
}
  .completedUncomplete {
    color: #ccc;
  }
    .completedUncomplete:hover {
      color:#aaa;
    }
.completed .completedUncomplete {
  display: none;
}
  .completedComplete {
    color:green;
  }
    .completedComplete:hover {
      color: #aaa;
    }
.linkingToggle .linked {
  color: green;
}
  .linkingToggle.linked .unlinked {
    display: none;
  }
.linkingToggle .unlinked {
  color: #999;
}
  .linkingToggle.unlinked .linked {
    display: none;
  }

.strikethrough {
  text-decoration: line-through;
  font-style: italic;
}
.flex_spacing_inbetween {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
.list_item_heading {
  /**/
}
  .list_item_heading .edit_shortcut {
    font-size: 14px;
    display: none;
  }
  .list_item_heading a {
  }
  .entitylisting li:hover .edit_shortcut {
    display: block;
  }
.week_heading {
  background-color: #bbb;
  color: #fff;
  padding: 4px 5px;
  margin: 10px 0;
}
.listview_created_meta {
  font-size: 12px;
  padding: 2px 0 !important;
  font-style: italic;
  color: #666;
}
.listBox {
  color: #333;
}
  .listBox .title_and_button {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
  }
    .listBox .title_and_button h1 {
      padding-bottom: 5px;
    }
  .listBox .scheduling_date {
    font-size: 13px;
  }
.listBox.box_none {
}
.listBox.box_full,
.content_content {
  display: block;
  background-color: #fff;
  border: 1px solid #ccc;
  padding: 10px;
  padding-bottom: 12px;
}
  .listBox.box_full ul li:not(:last-child) {
    padding-bottom: 8px;
    border-bottom: 1px solid #eee;
    margin-bottom: 8px;
  }
.listBox.box_individual ul li {
  display: block;
  background-color: #fff;
  border: 1px solid #ccc;
  margin-bottom: 5px;
  padding: 10px;
}
.entity_family_members {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  font-size: 12px;
  color: #444;
}
.entitylisting .smaller_text {
  font-size: 14px;
}
    #searchresults .smaller_text {
      font-size: 12px;
      line-height: 16px;
      margin-bottom: 2px;
      color: #333;
    }
.entitylisting .snippet {
  max-height: 100px;
  overflow: hidden;
  position: relative;
}
  .entitylisting .snippet:before {
    content:'';
    width:100%;
    height:100%;
    position:absolute;
    left:0;
    top:0;
    background:linear-gradient(transparent 60px, #fff);
  }
.search_results_list {
  list-style: none;
}
#searchresults li {
  line-height: 32px;
  padding: 0 8px;
  border: 1px solid #ccc;
  border-radius: 2px;
  margin-bottom: 2px;
}

#linked_items_list {
  display: grid;
  grid-template-columns: 1fr minmax(20px, 40px) 1fr;
  grid-gap: 8px;
}
  #linked_items_list .link {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  #linked_items_list .entity {
    background-color: #fff;
    border: 1px solid #ccc;
    padding: 10px;
  }
