@font-face {
  font-family: "Lato-Regular";
  src: url("fonts/Lato-Regular.ttf"); }
@font-face {
  font-family: "Lato-Light";
  src: url("fonts/Lato-Light.ttf"); }
@font-face {
  font-family: "Lato-Bold";
  src: url("fonts/Lato-Bold.ttf"); }
@font-face {
  font-family: "Nitti";
  src: url("fonts/Nitti.otf"); }
@font-face {
  font-family: Helvetica Neue;
  font-weight: 300;
  src: url("fonts/Helvetica Neue Light.otf") format("truetype"); }
@font-face {
  font-family: Helvetica Neue;
  font-weight: 500;
  src: url("fonts/Helvetica Neue Medium.otf") format("truetype"); }
@font-face {
  font-family: Helvetica Neue;
  font-weight: 700;
  src: url("fonts/Helvetica Neue Bold.otf") format("truetype"); }
@font-face {
  font-family: Helvetica Neue;
  font-weight: 900;
  src: url("fonts/Helvetica Neue Heavy.otf") format("truetype"); }
/* COLORS */
body, html, #container {
  height: 100%;
  width: 100%;
  margin: 0px;
  padding: 0px;
  font-family: Lato-Regular; }

input, textarea {
  font-family: Lato-Regular;
  outline: none;
  border: none; }

/* CONSTANTS */
/* TRANSITIONS */
/* MEDIA QUERIES */
/* COMMON */
.green {
  color: #74BF6E !important; }

.yellow {
  color: #f5a623 !important; }

.blue {
  color: #4a90e2 !important; }

.red {
  color: #D66A78 !important; }

.blue-background {
  background: #4a90e2 !important; }

.red-background {
  background: #D66A78 !important;
  color: #fff; }

.nonclickable {
  pointer-events: none;
  cursor: default; }

.link, .left-sidebar .sidebar-top .label {
  font-size: 10px;
  margin-top: 10px;
  text-align: center;
  color: #999;
  text-decoration: none;
  transition: 100ms color ease-in-out;
  cursor: pointer;
  -webkit-transition: 100ms color ease-in-out; }
  .link.selected, .left-sidebar .sidebar-top .selected.label {
    color: #4a90e2; }
  .link:hover, .left-sidebar .sidebar-top .label:hover {
    color: #4A90E2; }

.error-text {
  color: #D66A78;
  margin: 10px 0; }

.hidden {
  opacity: 0;
  pointer-events: none; }

.center {
  display: flex;
  flex-direction: column;
  align-items: center; }

/* ONBOARDING */
.filter-onboarding {
  opacity: 1;
  position: absolute;
  top: 140px;
  padding-left: 40px;
  padding-right: 40px;
  text-align: center;
  color: #7d7d7d;
  font-size: 13px;
  font-family: "Lato-Regular"; }

.blank-search {
  margin-top: 50px;
  width: 100%;
  text-align: center;
  color: #7d7d7d;
  font-size: 13px;
  font-family: "Lato-Regular"; }

.content-items > .blank-search {
  margin-top: 20px; }

.browse-body > .blank-search {
  margin-top: 45px; }

.blank-search a {
  cursor: pointer;
  -webkit-transition: color 0.3s ease-in-out;
  -moz-transition: color 0.3s ease-in-out;
  -ms-transition: color 0.3s ease-in-out;
  -o-transition: color 0.3s ease-in-out;
  transition: color 0.3s ease-in-out; }

.blank-search .blank-item-img {
  cursor: pointer; }

.blank-search a:hover {
  text-decoration: none; }

.blank-subtitle {
  color: #bbb; }

.blank-container {
  width: 300px;
  margin: 20px auto;
  border-top: 1px solid #ddd;
  border-bottom: 1px solid #ddd; }

.blank-item {
  position: relative;
  margin: 15px 0px;
  height: 60px; }

.blank-item > .blank-item-img,
.blank-item > .blank-item-info {
  display: inline-block; }

.blank-item-img > img {
  position: absolute;
  padding: 10px;
  top: 0;
  left: 20px;
  width: 40px;
  border-radius: 40px;
  opacity: 1;
  -webkit-transition: opacity 0.3s ease-in-out;
  -moz-transition: opacity 0.3s ease-in-out;
  -ms-transition: opacity 0.3s ease-in-out;
  -o-transition: opacity 0.3s ease-in-out;
  transition: opacity 0.3s ease-in-out; }

.blank-item-img > img.dark {
  opacity: 0; }

.blank-item:hover img.light {
  opacity: 0; }

.blank-item:hover img.dark {
  opacity: 1; }

.blank-item-info {
  margin-top: 5px; }

.blank-item > a.blank-item-info {
  display: inline-block;
  text-decoration: none;
  color: #4a90e2;
  height: 60px;
  text-align: left;
  position: absolute;
  top: 0;
  left: 80px;
  padding: 10px 0px 10px 10px; }

/* RIGHT SIDEBAR */
.right-sidebar {
  float: right;
  height: 100%;
  border-left: 2px solid #f3f3f3;
  display: flex;
  flex-direction: column; }
  @media (max-width: 1000px) {
    .right-sidebar {
      position: absolute;
      top: 120px;
      width: calc(100% - 2px);
      height: calc(100% - 132px);
      background: rgba(255, 255, 255, 0.95);
      padding-top: 10px;
      opacity: 0;
      z-index: 10;
      pointer-events: none; }
      .right-sidebar.open {
        pointer-events: all;
        opacity: 1; }
      .right-sidebar .title,
      .right-sidebar hr {
        display: none; } }
  @media (min-width: 1000px) {
    .right-sidebar {
      width: 300px; } }
  .right-sidebar .title {
    text-align: center;
    margin-top: 20px;
    font-size: 12px;
    color: #545454; }
  .right-sidebar .filter-modes-container {
    display: flex;
    flex-direction: row;
    max-width: 200px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 20px;
    margin-bottom: 15px; }
  .right-sidebar .filter-mode-buttons {
    cursor: pointer;
    flex: 1 1 50px;
    width: 50px;
    text-align: center;
    font-size: 11px;
    color: #a8a8a8;
    text-transform: uppercase;
    cursor: pointer; }
    .right-sidebar .filter-mode-buttons.selected {
      color: #4a90e2; }
    .right-sidebar .filter-mode-buttons:hover {
      color: #4a90e2; }

/* FILTER CIRCLES */
.filter-circles {
  flex: 1;
  overflow-y: scroll;
  padding-bottom: 50px; }
  .filter-circles .more {
    font-size: 11px;
    position: absolute;
    bottom: 0px;
    right: 0;
    width: 300px;
    height: 40px;
    padding-top: 10px;
    text-align: center;
    color: #4a90e2;
    background: #fff;
    pointer-events: none;
    opacity: 0;
    -webkit-transition: 0.5s opacity ease-in-out;
    -moz-transition: 0.5s opacity ease-in-out;
    -ms-transition: 0.5s opacity ease-in-out;
    -o-transition: 0.5s opacity ease-in-out;
    transition: 0.5s opacity ease-in-out; }
    .filter-circles .more .down-indicator {
      position: absolute;
      top: 20px;
      right: 140px;
      background: #4a90e2;
      display: block;
      width: 10px;
      height: 10px;
      margin: 5px;
      transform: rotate(225deg);
      -moz-transform: rotate(225deg);
      -ms-transform: rotate(225deg);
      -o-transform: rotate(225deg);
      -webkit-transform: rotate(225deg); }
      .filter-circles .more .down-indicator:after {
        content: "";
        position: absolute;
        left: 1px;
        top: 1px;
        width: 10px;
        height: 10px;
        background: #fff; }
  .filter-circles.show-more {
    padding-left: 15px; }
    .filter-circles.show-more .more {
      opacity: 1; }
    .filter-circles.show-more:hover > .more {
      opacity: 0; }

.browse-circle-container {
  margin: auto;
  margin-top: 20px;
  margin-bottom: 0px;
  text-align: center;
  position: relative;
  clear: both;
  cursor: pointer;
  pointer-events: auto; }
  .browse-circle-container .browse-circle {
    position: absolute;
    top: 50%;
    left: 50%;
    background-color: #4a90e2;
    width: 100px;
    height: 100px;
    border-radius: 100px;
    transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    box-sizing: content-box;
    border: 0px solid #4a90e2;
    pointer-events: none;
    -webkit-transition-duration: 0.3s;
    -webkit-transition-property: border;
    -webkit-transition-timing-function: ease-in-out; }
  .browse-circle-container .browse-circle-1 {
    opacity: 0.2; }
  .browse-circle-container .browse-circle-2 {
    opacity: 0.5; }
  .browse-circle-container .browse-circle-3 {
    opacity: 1; }
  .browse-circle-container:hover .browse-circle {
    -webkit-transition-duration: 0.3s;
    -webkit-transition-property: border;
    -webkit-transition-timing-function: ease-in-out; }
  .browse-circle-container:hover .browse-circle-1 {
    border: 0; }
  .browse-circle-container:hover .browse-circle-2 {
    border: 5px solid #4a90e2 !important; }
  .browse-circle-container:hover .browse-circle-3 {
    border: 10px solid #4a90e2 !important; }
  .browse-circle-container .browse-circle-number,
  .browse-circle-container .browse-circle-title {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    color: #fff;
    text-transform: capitalize;
    pointer-events: none; }
  .browse-circle-container .browse-circle-title {
    font-size: 13px;
    margin-top: -18px;
    font-family: Lato-Light; }
  .browse-circle-container .browse-circle-number {
    opacity: 0.8;
    font-size: 9px;
    margin-top: 3px;
    font-family: Lato-Light; }

/* LEFT SIDEBAR */
.left-sidebar {
  float: left;
  width: 200px;
  background: #F8F8F8;
  height: 100%;
  display: flex; }
  @media (max-width: 1000px) {
    .left-sidebar {
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      width: 100%;
      height: 50px;
      flex-direction: row; } }
  @media (min-width: 1000px) {
    .left-sidebar {
      float: left;
      width: 200px;
      height: 100%;
      flex-direction: column; } }
  .left-sidebar .sidebar-top {
    display: flex; }
    .left-sidebar .sidebar-top .label {
      color: #000; }
      .left-sidebar .sidebar-top .label:hover {
        color: #000; }
    .left-sidebar .sidebar-top.actions .link, .left-sidebar .sidebar-top.actions .label {
      margin-left: 50px;
      text-align: left;
      cursor: pointer; }
    .left-sidebar .sidebar-top.actions .delete {
      color: #D66A78; }
    .left-sidebar .sidebar-top img {
      width: 30px;
      height: auto;
      opacity: 0.1;
      margin-left: auto;
      cursor: pointer; }
    @media (max-width: 1000px) {
      .left-sidebar .sidebar-top {
        margin: 10px 65px;
        width: calc(100% - 130px);
        flex-direction: row; }
        .left-sidebar .sidebar-top .link, .left-sidebar .sidebar-top .label {
          margin-right: 15px;
          margin-left: 0px !important; } }
    @media (min-width: 1000px) {
      .left-sidebar .sidebar-top {
        justify-content: center;
        flex-direction: column;
        margin-top: 30px; }
        .left-sidebar .sidebar-top img,
        .left-sidebar .sidebar-top .menu-container {
          display: none; } }
  .left-sidebar hr {
    border-bottom: 1px solid #D7D7D7;
    border-top: none;
    width: 50%;
    margin-top: 10px;
    margin-bottom: 0px; }
    @media (max-width: 1000px) {
      .left-sidebar hr {
        display: none; } }
  .left-sidebar .sidebar-bottom {
    display: flex;
    margin-top: auto;
    margin-bottom: 30px; }
    @media (max-width: 1000px) {
      .left-sidebar .sidebar-bottom {
        flex-direction: row;
        display: none; } }
    @media (min-width: 1000px) {
      .left-sidebar .sidebar-bottom {
        justify-content: center;
        flex-direction: column; } }
  @media (max-width: 1000px) {
    .left-sidebar .sidebar-dropdown-button {
      flex: 1;
      text-align: right;
      margin-top: 20px;
      margin-right: 65px; } }
  @media (min-width: 1000px) {
    .left-sidebar .sidebar-dropdown-button {
      display: none; } }

/* CENTER MAIN VIEW */
.center-container {
  height: 100%; }
  @media (max-width: 1000px) {
    .center-container {
      margin-top: 50px;
      height: calc(100% - 60px);
      padding-top: 10px; } }
  .center-container .search-wrapper {
    display: flex;
    flex-direction: column;
    max-width: 1000px;
    margin: 0 auto;
    margin-top: 10px; }
    @media (min-width: 1000px) {
      .center-container .search-wrapper {
        padding: 0 20px; } }
  .center-container .item-wrapper {
    display: flex;
    flex-direction: column;
    margin: 0 auto;
    margin-top: 10px; }
    .center-container .item-wrapper .item-container {
      overflow-y: auto;
      height: calc(100% - 70px); }
      .center-container .item-wrapper .item-container .item-container-inner {
        padding-left: 20px;
        padding-right: 20px; }

/* SEARCH BAR */
.searchbar {
  display: flex;
  margin-bottom: 30px;
  border-bottom: 1px dashed #bdbdbd;
  height: 80px;
  flex: 0 0 40px;
  height: 50px; }
  @media (max-width: 1000px) {
    .searchbar {
      margin-left: 70px;
      margin-right: 65px; } }
  @media (min-width: 1000px) {
    .searchbar {
      margin-left: 15px;
      margin-right: 15px; } }
  .searchbar input {
    width: 100%;
    background: none; }
  .searchbar .buttons {
    margin-left: auto; }
  .searchbar .filter-button {
    color: #4a90e2; }
    @media (min-width: 1000px) {
      .searchbar .filter-button {
        display: none !important; } }
  .searchbar .link, .searchbar .left-sidebar .sidebar-top .label, .left-sidebar .sidebar-top .searchbar .label {
    display: inline-block;
    cursor: pointer;
    line-height: 40px;
    margin-top: 0;
    margin-left: 15px; }

/* ITEM-CONTAINER */
/* ITEM */
.item {
  position: relative;
  flex-shrink: 0;
  min-height: 40px;
  flex-wrap: wrap;
  max-width: 1000px;
  display: flex;
  flex-direction: row;
  margin: auto;
  margin-bottom: 15px;
  padding-top: 5px;
  border-bottom: 1px solid transparent;
  /* different hover styles based on width */ }
  @media (max-width: 1000px) {
    .item {
      margin-right: 50px; } }
  .item.selected {
    background: #EFF5FC !important; }
    @media (max-width: 1000px) {
      .item.selected .item-body {
        border-bottom: 1px solid;
        border-color: #4a90e2 !important; } }
    @media (min-width: 1000px) {
      .item.selected {
        border-bottom: 1px solid;
        border-color: #4a90e2 !important; } }
  .item.selecting a {
    pointer-events: none; }
  .item.reminder > .item-body {
    border-color: #f5a623; }
  .item:hover {
    background: #f0f0f0;
    /* different hover styles based on width */ }
    .item:hover .item-body-row > img {
      opacity: 1; }
    @media (max-width: 1000px) {
      .item:hover .item-body {
        border-bottom: 1px solid #d7d7d7; }
      .item:hover.article > .item-body {
        border-color: #AB4AFF; }
      .item:hover.book > .item-body {
        border-color: #A65330; }
      .item:hover.file > .item-body {
        border-color: #61CF3C; }
      .item:hover.forum > .item-body {
        border-color: #60AFFF; }
      .item:hover.image > .item-body {
        border-color: #52CACF; }
      .item:hover.job > .item-body {
        border-color: #EF46DA; }
      .item:hover.movie > .item-body {
        border-color: #7AC4C6; }
      .item:hover.place > .item-body {
        border-color: #FF4A5F; }
      .item:hover.product > .item-body {
        border-color: #F5B247; }
      .item:hover.profile > .item-body {
        border-color: #3079B4; }
      .item:hover.property > .item-body {
        border-color: #15A822; }
      .item:hover.qa > .item-body {
        border-color: #F48024; }
      .item:hover.recipe > .item-body {
        border-color: #FF924A; }
      .item:hover.repository > .item-body {
        border-color: #008080; }
      .item:hover.song > .item-body {
        border-color: #3ED676; }
      .item:hover.video > .item-body {
        border-color: #F02F2F; }
      .item:hover.wiki > .item-body {
        border-color: #87A7D5; }
      .item:hover.selecting > .item-body {
        border-color: #4a90e2; } }
    @media (min-width: 1000px) {
      .item:hover {
        border-bottom: 1px solid #d7d7d7; }
        .item:hover .item-body {
          border-bottom: 1px solid transparent; }
        .item:hover.article {
          border-color: #AB4AFF; }
        .item:hover.book {
          border-color: #A65330; }
        .item:hover.file {
          border-color: #61CF3C; }
        .item:hover.forum {
          border-color: #60AFFF; }
        .item:hover.image {
          border-color: #52CACF; }
        .item:hover.job {
          border-color: #EF46DA; }
        .item:hover.movie {
          border-color: #7AC4C6; }
        .item:hover.place {
          border-color: #FF4A5F; }
        .item:hover.product {
          border-color: #F5B247; }
        .item:hover.profile {
          border-color: #3079B4; }
        .item:hover.property {
          border-color: #15A822; }
        .item:hover.qa {
          border-color: #F48024; }
        .item:hover.recipe {
          border-color: #FF924A; }
        .item:hover.repository {
          border-color: #008080; }
        .item:hover.song {
          border-color: #3ED676; }
        .item:hover.video {
          border-color: #F02F2F; }
        .item:hover.wiki {
          border-color: #87A7D5; }
        .item:hover.selecting {
          border-color: #4a90e2; } }
  .item .title-container {
    margin-top: 10px;
    font-size: 12px; }
    .item .title-container.no-title:hover > .hint {
      display: inline-block; }
    .item .title-container .title {
      display: inline-block;
      font-family: Lato-Bold;
      text-decoration: none;
      color: #333;
      cursor: pointer; }
    .item .title-container .hint {
      display: none;
      color: #aaa;
      cursor: pointer;
      margin-left: 0.5em; }
  .item .item-body {
    padding-bottom: 15px;
    border-bottom: 1px solid #D7D7D7; }
    @media (max-width: 1000px) {
      .item .item-body {
        width: calc(100% - 70px); } }
    @media (min-width: 1000px) {
      .item .item-body {
        width: calc(100% - 80px); } }
  .item .item-body-row {
    display: flex;
    flex-direction: row;
    justify-content: space-between; }
    .item .item-body-row > img {
      width: 17px;
      height: 4px;
      margin-right: 7px;
      padding: 10px;
      padding-top: 15px;
      padding-bottom: 5px;
      cursor: pointer;
      opacity: 0; }
    .item .item-body-row .item-tags {
      display: flex;
      flex-direction: row;
      margin-right: 10px; }
  .item .item-icon {
    width: 65px;
    position: relative; }
    @media (max-width: 1000px) {
      .item .item-icon {
        width: 70px; } }
    .item .item-icon > img {
      width: 30px;
      position: absolute;
      top: 0;
      bottom: 0;
      margin: auto;
      z-index: 2; }
      @media (max-width: 1000px) {
        .item .item-icon > img {
          margin-left: 20px;
          margin-right: 20px; } }
      @media (min-width: 1000px) {
        .item .item-icon > img {
          margin-left: 10px;
          margin-right: 20px; } }

/* MENUS */
.menu-container .menu-overlay {
  position: fixed;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 100; }
.menu-container .menu {
  position: absolute;
  top: 20px;
  right: 60px;
  width: 100px;
  background: #f0f0f0;
  box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.3);
  padding-top: 5px;
  padding-left: 12px;
  padding-right: 12px;
  padding-bottom: 11px;
  z-index: 101; }
  .menu-container .menu.small {
    width: 70px; }
  .menu-container .menu hr {
    border-bottom: 1px solid #D7D7D7;
    border-top: none;
    width: 100%;
    margin-top: 5px; }
  .menu-container .menu .menu-item {
    opacity: 0.7;
    color: #222;
    font-size: 10px;
    margin-top: 6px;
    cursor: pointer;
    text-decoration: none;
    display: block; }
    .menu-container .menu .menu-item:hover {
      opacity: 1; }
    .menu-container .menu .menu-item.device {
      margin-top: 12px; }
    .menu-container .menu .menu-item.disabled {
      cursor: auto;
      opacity: 1; }

/* MODALS */
.modal-container {
  position: fixed;
  display: flex;
  align-items: center;
  justify-content: center;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.2);
  z-index: 999; }
  .modal-container .modal {
    display: flex;
    flex-direction: column;
    width: 400px;
    background: #FFFFFF;
    box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.3);
    max-height: calc(100% - 60px); }
  .modal-container .header {
    background: #4a90e2;
    padding-left: 20px;
    padding-right: 20px;
    padding-top: 10px;
    padding-bottom: 10px;
    font-size: 12px;
    display: flex;
    min-height: 17px; }
    .modal-container .header .label {
      flex-shrink: 0;
      padding-top: 2px;
      display: inline-block;
      color: #fff;
      opacity: 0.7;
      margin-right: 10px;
      vertical-align: middle; }
    .modal-container .header .title {
      flex-grow: 1;
      padding-top: 2px;
      display: inline-block;
      color: #fff;
      overflow: hidden;
      text-overflow: ellipsis;
      white-space: nowrap;
      vertical-align: middle; }
    .modal-container .header .close {
      flex-shrink: 0;
      margin-left: 10px;
      display: inline-block;
      float: right;
      cursor: pointer; }
      .modal-container .header .close div {
        padding-top: 5px;
        font-size: 9px;
        color: #FFFFFF;
        opacity: 0.7; }
        .modal-container .header .close div:hover {
          opacity: 1; }
  .modal-container .input {
    display: flex;
    flex-direction: row;
    border-bottom: 1px solid #4a90e2; }
    .modal-container .input input {
      flex: 1;
      outline: 0;
      border: 0;
      width: calc(100% - 40px);
      font-size: 13px;
      padding: 20px; }
  .modal-container .positive {
    color: #dfdfdf;
    font-size: 10px;
    float: right;
    text-align: right;
    padding: 14px;
    margin-top: 4px; }
    .modal-container .positive.active {
      text-decoration: none;
      color: #4a90e2; }
  .modal-container .share-field {
    flex: 1;
    overflow-x: auto;
    white-space: nowrap;
    padding-left: 15px; }
    .modal-container .share-field input {
      padding-left: 5px; }
    .modal-container .share-field .email {
      display: inline-block;
      margin: 15px 0px;
      font-size: 13px;
      padding: 5px;
      color: #4a90e2;
      border-radius: 5px; }
      .modal-container .share-field .email:after {
        content: ","; }
    .modal-container .share-field .no-recipient {
      font-size: 12px;
      color: #787878;
      padding: 20px;
      padding-right: 0px; }
  .modal-container .body {
    flex: 1;
    overflow-y: auto;
    height: 300px; }
    .modal-container .body .selected {
      background: #EFF5FC; }
  .modal-container .body-text {
    padding: 20px;
    font-size: 12px; }
    .modal-container .body-text select {
      outline: 0;
      background: 0;
      border: 0;
      border-bottom: 1px solid #d7d7d7;
      padding: 0px 5px;
      margin: 0px 5px;
      padding-bottom: 1px;
      overflow: hidden; }
  .modal-container .tag, .modal-container .type, .modal-container .autocomplete {
    border-bottom: 1px solid #dfdfdf;
    padding: 10px 20px;
    color: #424242; }
  .modal-container .tag span {
    font-size: 13px; }
  .modal-container .tag img {
    opacity: 0.7;
    cursor: pointer;
    padding: 7px;
    float: right;
    display: inline-block;
    width: 10px;
    height: 10px; }
    .modal-container .tag img:hover {
      opacity: 1; }
  .modal-container .autocomplete {
    cursor: pointer;
    padding-top: 12px;
    padding-bottom: 12px;
    border-bottom: 1px solid #dfdfdf; }
    .modal-container .autocomplete .name {
      color: #424242;
      font-size: 13px;
      display: block; }
    .modal-container .autocomplete .subtitle {
      color: #969696;
      font-size: 10px;
      margin-top: 3px; }
  .modal-container .type {
    cursor: pointer;
    font-size: 13px; }
    .modal-container .type.current {
      line-height: 24px;
      color: #4a90e2;
      background: #dfdfdf; }
    .modal-container .type img {
      cursor: pointer;
      padding: 7px;
      float: right;
      display: inline-block;
      width: 10px;
      height: 10px; }
  .modal-container .dropzone {
    border: 1px dashed #666666;
    padding: 20px;
    text-align: center;
    margin-top: 20px;
    height: 50px;
    width: calc(100% - 44px); }
    .modal-container .dropzone > div {
      margin-top: 10px; }
  .modal-container .buttons {
    padding: 15px 20px;
    width: calc(100% - 40px);
    height: 32px; }
    .modal-container .buttons a {
      text-decoration: none; }
    .modal-container .buttons .button {
      padding: 10px;
      background: #4a90e2;
      text-transform: uppercase;
      font-size: 10px;
      color: rgba(255, 255, 255, 0.7);
      cursor: pointer; }
      .modal-container .buttons .button.centered {
        position: absolute;
        left: 50%;
        transform: translate(-50%);
        text-align: right; }
      .modal-container .buttons .button:hover {
        background: #3669A5;
        color: white; }
    .modal-container .buttons .button:first-child {
      float: left; }
    .modal-container .buttons .button:last-child {
      float: right; }
  .modal-container textarea {
    padding: 20px;
    resize: none;
    height: 260px; }

/* Login and Register */
.page {
  border-top: 7px solid #4a90e2;
  width: 100%;
  margin: auto;
  padding-top: 5%; }
  .page .undecorated {
    text-decoration: none; }
  .page .title {
    margin-bottom: 30px;
    font-size: 20px;
    padding: 20px;
    font-size: 16px; }
  .page .logo-splitter {
    padding-top: 30px;
    border-bottom: #dfdfdf; }
  .page .logo {
    margin-left: 0px;
    padding: 0px; }
    .page .logo img {
      margin: 0 auto;
      float: none;
      display: block;
      width: 20px;
      height: auto; }
  .page .centered {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    padding: 0px 30px; }
    .page .centered input {
      font-size: 1em; }
    .page .centered .field {
      margin: 10px 30px;
      width: 60%;
      padding: 10px 0px;
      border-bottom: 1px solid #dfdfdf; }
    .page .centered .field-small {
      margin: 10px 30px;
      width: 60%;
      padding: 10px 0px; }
      .page .centered .field-small > input {
        padding-bottom: 10px;
        padding-right: 5px;
        border-bottom: 1px solid #dfdfdf;
        -webkit-transition: border-bottom 0.3s;
        -moz-transition: border-bottom 0.3s;
        -ms-transition: border-bottom 0.3s;
        -o-transition: border-bottom 0.3s;
        transition: border-bottom 0.3s; }
        .page .centered .field-small > input:focus {
          border-bottom: 1px solid #4a90e2; }
      .page .centered .field-small > input[type=checkbox] {
        height: 12px;
        width: 12px; }
    .page .centered .button {
      margin-top: 30px;
      display: block;
      padding: 20px 20px;
      text-transform: uppercase;
      cursor: pointer;
      line-height: 0.1em;
      font-size: 0.7em;
      vertical-align: middle;
      background: #4a90e2;
      color: #FFFFFF;
      text-align: center; }
      .page .centered .button.fixed {
        width: 200px;
        margin-top: 15px; }
      .page .centered .button:hover {
        background: #3669A5; }
  .page .button-skip {
    margin-top: 30px;
    display: block;
    text-transform: uppercase;
    cursor: pointer;
    line-height: 0.1em;
    font-size: 0.7em;
    vertical-align: middle;
    color: #787878;
    text-align: center;
    width: 140px;
    padding: 20px;
    text-decoration: none; }
    .page .button-skip:hover {
      color: #424242; }
  .page hr {
    border-top: none;
    width: 300px;
    margin-top: 40px;
    margin-bottom: 50px;
    border-color: #7c7c7c;
    border-width: 1px; }

/* External Pages */
.page-prompts {
  border-top: 7px solid #4a90e2;
  width: 100%;
  text-align: center;
  font-weight: 300; }
  .page-prompts .logo {
    margin-left: 0px;
    padding: 0px;
    width: 100%; }
    .page-prompts .logo img {
      margin: 0 auto;
      float: none;
      display: block;
      width: 20px;
      height: auto; }
  .page-prompts .center {
    padding-top: 30px;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: auto;
    width: 80%; }
    .page-prompts .center .message {
      font-size: 14px;
      line-height: 22px; }
  .page-prompts .header {
    font-size: 1.2em;
    font-weight: 500;
    color: #222; }
  .page-prompts .header-text {
    margin: 20px;
    line-height: 1.2em; }
  .page-prompts .success-text, .page-prompts .error-text {
    margin-bottom: 20px;
    line-height: 1.2em;
    padding: 10px;
    background: #fff;
    font-size: 0.7em;
    color: #222; }
    .page-prompts .success-text:empty, .page-prompts .error-text:empty {
      display: none; }
  .page-prompts .error-text {
    color: #D66A78 !important; }
  .page-prompts a {
    text-decoration: none; }
  .page-prompts hr {
    border-top: none;
    width: 40%;
    margin-top: 30px;
    margin-bottom: 50px;
    border-color: #7c7c7c; }
  .page-prompts input {
    background: rgba(0, 0, 0, 0.2);
    margin: 20px;
    padding: 20px;
    text-align: center;
    border-radius: 5px; }
    .page-prompts input::-webkit-input-placeholder {
      color: rgba(255, 255, 255, 0.6);
      font-style: italic; }
    .page-prompts input:-moz-placeholder {
      color: rgba(255, 255, 255, 0.6);
      font-style: italic; }
    .page-prompts input::-moz-placeholder {
      color: rgba(255, 255, 255, 0.6);
      font-style: italic; }
    .page-prompts input:-ms-input-placeholder {
      color: rgba(255, 255, 255, 0.6);
      font-style: italic; }
  .page-prompts .horizontal-buttons {
    display: flex; }
    .page-prompts .horizontal-buttons > .button {
      flex: 1;
      font-weight: 500; }
  .page-prompts .button {
    margin-top: 50px;
    display: block;
    padding: 20px 20px;
    text-transform: uppercase;
    cursor: pointer;
    line-height: 0.1em;
    font-size: 0.7em;
    vertical-align: middle;
    background: #4a90e2;
    color: #FFFFFF;
    text-align: center;
    width: 140px; }
    .page-prompts .button:hover {
      background: #3669A5; }
  .page-prompts .button-skip {
    margin-top: 10px;
    display: block;
    text-transform: uppercase;
    cursor: pointer;
    line-height: 0.1em;
    font-size: 0.7em;
    vertical-align: middle;
    color: #787878;
    text-align: center;
    width: 140px;
    padding: 20px; }
    .page-prompts .button-skip:hover {
      color: #424242; }
  .page-prompts .tutorial-image {
    margin-top: 10px;
    margin-bottom: 30px;
    width: 100%;
    height: auto;
    max-width: 500px; }

/*# sourceMappingURL=styles.css.map */
