.collage {
  position: relative;
  cursor: default;
}

.collage-tile {
  position: absolute;
  overflow: hidden;
  box-sizing: border-box;
}
.collage-tile img {
  position: absolute;
}
.collage-tile:hover .delete-button {
  display: block;
}

.slider-control .track {
  position: absolute;
  height: 3px;
  background-color: white;
}
.slider-control .thumb {
  position: absolute;
  width: 12px;
  height: 12px;
  -moz-border-radius: 5px;
  -webkit-border-radius: 5px;
  border-radius: 5px;
  background-color: white;
}

.zoom-slider {
  position: absolute;
  background-color: #0073C5;
  width: 200px;
  height: 40px;
  opacity: 0.75;
}
.zoom-slider::before {
  display: block;
  content: "";
  background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAICAYAAADwdn+XAAAAWklEQVR4nJ3MwQ2AIAxG4QeJTiETybZ2I5iCC17EqGlF/G9N+j1Xa0XbHGUBEhCKxKw+Ab6DAdJxfws8cJsZuQUM/Bo5Ax1sRvwAViNuWrcRfF0oErP/iWluB8UwIwHL0g+OAAAAAElFTkSuQmCC");
  width: 16px;
  height: 8px;
  position: relative;
  top: -8px;
  left: 100px;
}

.no-hover-effects .collage-tile:hover .delete-button {
  display: none;
}

.tile-topmost {
  z-index: 100;
}

.stand-in {
  position: absolute;
  cursor: url(/assets/hand.cur), move;
}

.collage .delete-button {
  display: none;
  width: 16px;
  height: 16px;
  background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAVUlEQVR4nOWSQQ7AIAgEx/5vPwsPbE9eLIrVi0k5bpjJhlAAzOxmca5V8HCBJCSlWdqgAhE4FLj7S9LmaYN2OYKHgugG04Je7c9HrHCvPkCB37/y9jzYIR7jJni5uQAAAABJRU5ErkJggg==");
  position: absolute;
  right: 0;
  top: 0;
}
.collage .delete-button:hover {
  background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAV0lEQVR4nO2SOQ4AIQwDDe/1c/zfUCAaNhCOhmJTRpmRZSWZGSQZDiefgo8LSIJkuAsTNMADpwJJH0m/DxP0xx48FXgdLAtGsbdLbPAoPgCk/5VrBzdTAE9NKJtIZ5/CAAAAAElFTkSuQmCC");
}

.corner-tl {
  display: none;
  position: absolute;
  z-index: 101;
  background-image: url("/assets/corners.png");
  background-position: 0 0;
  width: 11px;
  height: 11px;
}

.corner-tr {
  display: none;
  position: absolute;
  z-index: 101;
  background-image: url("/assets/corners.png");
  background-position: -11px 0;
  width: 11px;
  height: 11px;
}

.corner-bl {
  display: none;
  position: absolute;
  z-index: 101;
  background-image: url("/assets/corners.png");
  background-position: 0 -11px;
  width: 11px;
  height: 11px;
}

.corner-br {
  display: none;
  position: absolute;
  z-index: 101;
  background-image: url("/assets/corners.png");
  background-position: -11px -11px;
  width: 11px;
  height: 11px;
}

.zoom-mask {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}

.ghost {
  opacity: 0.7;
}

.album-page .photo-tile label, .notification-dialog .notification .notification-snippet {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.button-reset, .front-page .account-buttons .login-button, .front-page .account-buttons .signup-button, .list-item-dialog .more-options-row button, .wall-message .wall-message-button-bar button, .notification-dialog .notification-bar button, .top-bar .notif-button {
  background-color: transparent;
  font: inherit;
  padding: 0;
  margin: 0;
}

.custom-scrollbar::-webkit-scrollbar, .master-page .side-bar::-webkit-scrollbar {
  width: 8px;
}
.custom-scrollbar::-webkit-scrollbar-thumb, .master-page .side-bar::-webkit-scrollbar-thumb {
  background: #c1c1c1;
  border-radius: 16px;
}
.custom-scrollbar::-webkit-scrollbar-track, .master-page .side-bar::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 16px;
}

body {
  margin: 0;
  font-family: "Ubuntu", "Segoe UI", Tahoma, Geneva, Verdana, Helvetica, sans-serif;
  font-size: 15px;
  overflow-y: scroll;
  position: relative;
  -webkit-text-size-adjust: none;
  overscroll-behavior: none;
}
body.no-scroll {
  overflow: hidden;
}

#app-body {
  min-height: 100vh;
}

h1, h2, h3, h4 {
  color: #333;
  font-family: "Ubuntu", "Segoe UI Semibold", "Ubuntu", "Segoe UI", Tahoma, Geneva, Verdana, Helvetica, sans-serif;
  font-weight: 500;
}

a {
  color: #0769ad;
}

input {
  font-family: "Ubuntu", "Segoe UI", Tahoma, Geneva, Verdana, Helvetica, sans-serif;
}

input[type=text], input[type=password] {
  -webkit-appearance: none;
  border: solid 1px #b3b3b3;
  border-radius: 0;
  padding: 4px 0 4px 7px;
  font-size: 14px;
  outline: none;
}
input[type=text]:focus, input[type=password]:focus {
  border-color: #aaa;
}

textarea {
  -webkit-appearance: none;
  border: solid 1px #b3b3b3;
  border-radius: 0;
  font-size: 14px;
  padding: 4px 0 4px 7px;
  outline: none;
  font-family: "Ubuntu", "Segoe UI", Tahoma, Geneva, Verdana, Helvetica, sans-serif;
}

.radio-group {
  display: inline-block;
}
.radio-group .radio-button {
  display: inline-block;
}
.radio-group .radio-button.focused-radio label {
  outline: dashed 1px #aaa;
}
.radio-group.vertical-layout {
  display: block;
}
.radio-group.vertical-layout .radio-button {
  margin-top: 5px;
  display: block;
}
.radio-group input[type=radio] {
  width: 0;
  height: 0;
  opacity: 0;
  -moz-appearance: none;
}
.radio-group input[type=radio] + label {
  color: inherit;
  font-size: inherit;
  padding-right: 3px;
}
.radio-group input[type=radio] + label:before {
  font-family: "Font Awesome 5 Pro";
  display: inline-block;
  content: "\f111";
  margin-right: 5px;
  padding-right: 1px;
  padding-left: 1px;
}
.radio-group input[type=radio]:checked + label:before {
  content: "\f192";
}

input[type=checkbox] {
  opacity: 0;
  width: 0;
  height: 0;
  margin: 0;
  display: list-item;
  -moz-appearance: none;
}
input[type=checkbox] + label {
  color: inherit;
  font-size: inherit;
}
input[type=checkbox] + label:before {
  font-family: "Font Awesome 5 Pro";
  display: inline-block;
  content: "\f0c8";
  margin-right: 5px;
  padding-right: 1px;
  padding-left: 1px;
}
input[type=checkbox]:checked + label:before {
  content: "\f14a";
}
input[type=checkbox]:focus + label:before {
  color: #0073C5;
}

::-webkit-input-placeholder {
  font-family: "Ubuntu", "Segoe UI", Tahoma, Geneva, Verdana, Helvetica, sans-serif;
  font-size: 12px;
  color: #999;
}

:-ms-input-placeholder {
  font-family: "Ubuntu", "Segoe UI", Tahoma, Geneva, Verdana, Helvetica, sans-serif;
  font-size: 12px;
  color: #999;
}

button {
  background-color: #e6e6e6;
  color: #2D3239;
  border: none;
  padding: 8px 24px 8px 24px;
  font-family: "Ubuntu", "Segoe UI", Tahoma, Geneva, Verdana, Helvetica, sans-serif;
  font-size: 14px;
}
button:hover {
  background-color: #d9d9d9;
}
button.default-button {
  background-color: #0073C5;
  border-color: #0073C5;
  color: white;
}
button.default-button:hover {
  background-color: #0082df;
}
button.default-button:focus {
  outline-color: white;
}
button:focus {
  outline-offset: -3px;
  outline-style: dashed;
  outline-color: #aaa;
  outline-width: 1px;
}
button::-moz-focus-inner {
  border: 0;
}

.vanish-screen {
  transform: scale(0.7, 0.7);
  transform-origin: 50vw 50vh;
  opacity: 0.1;
  transition-duration: 500ms;
  transition-property: transform, opacity;
}

img.emoji {
  height: 1.6em;
  width: 1.6em;
  margin: 0 0.05em 0 0.1em;
  vertical-align: -0.4em;
}

.emoji-picker {
  display: inline-block;
  width: 245px;
  min-height: 80px;
  background-color: #fff;
  border: solid 1px #ccc;
  position: absolute;
  z-index: 1001;
  margin-top: -6px;
  padding: 15px;
  border: none;
  box-shadow: 0px 1px 3px #666;
}
.emoji-picker:before, .emoji-picker:after {
  bottom: 100%;
  left: 63px;
  border: solid transparent;
  content: " ";
  height: 0;
  width: 0;
  position: absolute;
  pointer-events: none;
}
.emoji-picker:after {
  border-color: rgba(255, 255, 255, 0);
  border-bottom-color: #fff;
  border-width: 14px;
  margin-left: -14px;
}
.emoji-picker:before {
  border-color: rgba(204, 204, 204, 0);
  border-bottom-color: #ccc;
  border-width: 15px;
  margin-left: -15px;
}
.emoji-picker .emoji-picker-close:hover {
  color: #666;
}
.emoji-picker input[type=text] {
  font-size: 13px;
  border: solid 1px #ccc;
  padding: 4px 3px 3px 7px;
  margin-bottom: 5px;
  box-sizing: border-box;
  width: 100%;
}
.emoji-picker .emoji-list {
  font-size: 16px;
  height: 250px;
  overflow-y: scroll;
}
.emoji-picker .emoji-list img.emoji {
  padding: 1px;
  border: solid 1px #fff;
  border-radius: 3px;
}
.emoji-picker .emoji-list img.emoji:hover {
  border-color: #0769ad;
}
.emoji-picker .emoji-list::-webkit-scrollbar {
  width: 10px;
}
.emoji-picker .emoji-list::-webkit-scrollbar-thumb {
  background-color: #ccc;
  border-radius: 20px;
}
.emoji-picker .emoji-list::-webkit-scrollbar-thumb:hover {
  background-color: #aaa;
}
.emoji-picker .emoji-list::-webkit-scrollbar-track {
  background-color: #eee;
  border-radius: 20px;
}
.emoji-picker .emoji-list::-webkit-scrollbar-track:hover {
  background-color: #e9e9e9;
}

.hidden {
  display: none !important;
}

.page-button-panel .dropdown .dropdown-button, .outline-button {
  font-size: 13px;
  padding: 6px 15px 6px 15px;
  border: solid 1px #aaa;
  border-radius: 3px;
  background-color: transparent;
  color: #2D3239;
}
.page-button-panel .dropdown .dropdown-button:hover, .outline-button:hover {
  background-color: transparent;
}

.small-button {
  font-size: 14px;
  padding: 7px 24px 8px 24px;
}

.twin-buttons .first-button {
  margin-right: 0;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
.twin-buttons .second-button {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  border-left: none;
  margin-left: 0;
}
.twin-buttons button.depressed {
  box-shadow: inset 0px 0px 3px 0px #ccc;
  background-color: #eee;
}

.toggle {
  position: relative;
  display: inline-block;
  width: 40px;
  height: 23px;
  box-sizing: border-box;
}
.toggle .toggle-slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  transition: 0.4s;
  border-radius: 23px;
}
.toggle .toggle-slider:before {
  border-radius: 50%;
  position: absolute;
  content: "";
  height: 17px;
  width: 17px;
  left: 3px;
  bottom: 3px;
  background-color: white;
  transition: 0.4s;
}
.toggle input {
  opacity: 0;
  width: 0;
  height: 0;
}
.toggle input:checked + .toggle-slider {
  background-color: #0073C5;
}
.toggle input:checked + .toggle-slider:before {
  transform: translateX(17px);
}
.toggle input:focus + .toggle-slider {
  box-shadow: 0 0 1px #0073C5;
}

.calendar {
  cursor: default;
  display: inline-block;
  background-color: white;
  padding: 5px;
}
.calendar .cal-header {
  display: table;
  width: 100%;
  margin: 5px 0px 5px 0px;
}
.calendar .cal-header .month-header {
  display: table-cell;
  text-align: center;
  vertical-align: middle;
}
.calendar .cal-left-arrow, .calendar .cal-right-arrow {
  font-size: 18px;
  display: table-cell;
}
.calendar .cal-left-arrow i, .calendar .cal-right-arrow i {
  border: solid 1px transparent;
  padding-right: 6px;
  padding-left: 6px;
}
.calendar .cal-left-arrow i:hover, .calendar .cal-right-arrow i:hover {
  border-color: #999;
}
.calendar .cal-left-arrow i:active, .calendar .cal-right-arrow i:active {
  border-color: #ddd;
}
.calendar .cal-right-arrow {
  text-align: right;
}
.calendar table {
  border-collapse: separate;
  border-spacing: 0;
}
.calendar thead {
  border-bottom: 1px solid #ddd;
}
.calendar th {
  color: #666;
  font-weight: normal;
}
.calendar td {
  text-align: right;
  padding: 2px 6px 2px 6px;
  border: solid 1px transparent;
}
.calendar.date-selection-enabled td:hover {
  background-color: #dfdfdf;
}
.calendar.date-selection-enabled td.cal-selected {
  background-color: orange;
}
.calendar.date-selection-enabled td.cal-selected:hover {
  background-color: orange;
}
.calendar .cal-dim {
  color: #aaa;
}
.calendar .cal-today {
  border: 1px solid orange;
}
.calendar .cal-footer {
  text-align: center;
  margin-top: 3px;
}
.calendar .cal-footer button {
  font-size: 11px;
  padding-top: 2px;
  padding-bottom: 2px;
  background-color: transparent;
  border: solid 1px #bbb;
  border-radius: 3px;
}

.dropdown {
  display: inline-block;
}
.dropdown .dropdown-button {
  color: #2D3239;
  line-height: normal;
  outline-offset: 3px;
  background-color: transparent;
  padding: 3px 8px 3px 8px;
  cursor: pointer;
}
.dropdown .dropdown-button i {
  margin-left: 7px;
}

.popup-menu {
  font-size: 15px;
  text-align: left;
  line-height: normal;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.15);
  background-color: white;
  border: solid 1px #e6e6e6;
  color: #2D3239;
  z-index: 999;
  position: absolute;
  cursor: default;
  outline: 0;
}
.popup-menu .popup-menu-item {
  padding: 10px 14px 11px 20px;
}
.popup-menu .popup-menu-item.popup-menu-item-highlight {
  background-color: #c5e7ff;
}

.data-grid {
  border-collapse: collapse;
  border: none;
  font-size: 14px;
  color: #2D3239;
  outline-offset: -1px;
  width: 100%;
}
.data-grid thead tr {
  border-top: none;
}
.data-grid th {
  padding: 6px 20px 6px 0;
  text-transform: uppercase;
  text-align: left;
  outline-offset: -1px;
}
.data-grid td {
  max-width: 300px;
  padding: 6px 20px 6px 0;
  overflow: hidden;
  text-overflow: ellipsis;
  outline-offset: -1px;
}
.data-grid td:first-child {
  width: 1%;
}
.data-grid tr {
  border-top: none;
  border-bottom: solid 1px #DDD;
}
.data-grid tr:nth-child(odd) {
  background: transparent;
}
.data-grid tr:nth-child(even) {
  background: transparent;
}
.data-grid a {
  text-decoration: none;
  margin-left: 1px;
}
.data-grid .checkbox-cell {
  white-space: nowrap;
}
.data-grid .checkbox-cell input[type=checkbox] + label:before {
  margin-right: 0;
  margin-left: 10px;
}
.data-grid .data-grid-icon {
  display: inline-block;
}
.data-grid .data-grid-icon.data-grid-icon-failure::after {
  display: inline-block;
  color: firebrick;
  margin-right: 5px;
  position: relative;
  top: 2px;
  font-family: "Fabric MDL2";
  font-size: 16px;
  content: "\e783";
}
.data-grid .data-grid-icon.data-grid-icon-success::after {
  display: inline-block;
  color: forestgreen;
  margin-right: 5px;
  position: relative;
  top: 2px;
  font-family: "Fabric MDL2";
  font-size: 16px;
  content: "\e930";
}
.data-grid .data-grid-icon.data-grid-icon-center {
  text-align: center;
  width: 100%;
}
.data-grid .data-grid-cell0 {
  font-size: 15px;
}
.data-grid .data-grid-cell0 a {
  color: #000;
}
.data-grid .data-grid-cell1 {
  display: inline-block;
  width: 50%;
  color: #8a8a8c;
}
.data-grid .data-grid-cell2 {
  display: inline-block;
  text-align: right;
  width: 50%;
  color: #8a8a8c;
}

.breadcrumbs {
  margin-top: 10px;
  margin-bottom: 15px;
  font-size: 15px;
}
.breadcrumbs .crumb {
  display: inline-block;
  margin-right: 5px;
}
.breadcrumbs .crumb a {
  text-decoration: none;
}
.breadcrumbs .crumb-separator {
  display: inline-block;
  margin-right: 10px;
  margin-left: 5px;
}

.image-tray {
  border: 1px solid #E2E3EA;
  margin-top: 3px;
  margin-bottom: 5px;
  padding: 5px;
  overflow: hidden;
}
.image-tray .image-thumbnail-holder {
  display: inline-block;
  position: relative;
  padding: 5px;
}
.image-tray .image-thumbnail {
  width: 75px;
  height: 75px;
  overflow: hidden;
  display: inline-block;
  vertical-align: top;
}
.image-tray .background-for-delete-button {
  position: absolute;
  display: inline-block;
  width: 10px;
  height: 10px;
  top: 5px;
  right: 5px;
  background-color: white;
}
.image-tray .delete-thumbnail {
  font-size: 20px;
  position: absolute;
  top: -4px;
  right: 1px;
  color: #666;
  display: inline-block;
  cursor: default;
}
.image-tray .delete-thumbnail:hover {
  color: #444;
}

.loading-animation {
  display: inline-block;
}
.loading-animation .spinner {
  text-align: center;
  color: #888;
  font-size: 28px;
}
.loading-animation .message {
  color: #555;
  text-align: center;
}
.loading-animation.medium-loading-animation {
  display: block;
  margin-top: 30px;
}
.loading-animation.medium-loading-animation .spinner {
  font-size: 52px;
}
.loading-animation.medium-loading-animation .message {
  margin-top: 20px;
  font-size: 18px;
}
.loading-animation.large-loading-animation {
  display: block;
  margin-top: 100px;
}
.loading-animation.large-loading-animation .spinner {
  font-size: 62px;
}
.loading-animation.large-loading-animation .message {
  margin-top: 20px;
  font-size: 22px;
}

.combo-box {
  font-size: 12px;
}
.combo-box .combo-prompt {
  margin-top: 7px;
  margin-bottom: 5px;
}
.combo-box .combo-rect {
  box-sizing: border-box;
  width: 100%;
  border: 1px solid #b3b3b3;
  display: inline-block;
  background-color: white;
}
.combo-box .combo-rect input[type=text].combo-textbox {
  width: calc(100% - 30px);
  box-sizing: border-box;
  border: none;
  padding: 4px 0 4px 7px;
  outline: none;
}
.combo-box .combo-rect input[type=text].combo-textbox::-ms-clear {
  display: none;
}
.combo-box.select-only input {
  cursor: default;
}
.combo-box .combo-focus-style {
  border-color: #aaa;
}
.combo-box .combo-chevron {
  display: inline-block;
  width: 25px;
  text-align: center;
  cursor: default;
  color: #666;
}
.combo-box .combo-chevron:hover {
  color: #000;
}
.combo-box .combo-highlighted {
  background-color: #d9f5fd;
}
.combo-box .combo-dropdown {
  box-sizing: border-box;
  background-color: white;
  color: #2b2b2b;
  position: absolute;
  cursor: default;
  outline: 0;
  font-size: 13px;
  min-width: 175px;
  max-height: 400px;
  overflow: auto;
  z-index: 99999;
  box-shadow: 0px 1px 3px #666;
}
.combo-box .combo-dropdown-item {
  padding: 5px 5px 6px 5px;
}
.combo-box .combo-dropdown-item:last-child {
  border-bottom: none;
}

.date-input .date-input-rect {
  display: flex;
  flex-direction: row;
  border: 1px solid #b3b3b3;
  box-sizing: border-box;
  background-color: white;
}
.date-input input {
  flex: 1 1;
  border: none;
}
.date-input input::-ms-clear {
  display: none;
}
.date-input .date-input-chevron {
  flex: 0 0 auto;
  position: relative;
  display: inline-block;
  width: 21px;
  padding-left: 10px;
  cursor: default;
  color: #666;
  font-size: 12px;
}
.date-input .date-input-chevron:hover {
  color: #000;
}
.date-input .date-input-chevron i {
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
}
.date-input .date-input-dropdown {
  position: absolute;
  margin-left: 1px;
  box-shadow: 0px 1px 3px #666;
}

.date-nav {
  padding-bottom: 3px;
}
.date-nav .date-nav-display {
  display: inline-block;
  padding: 3px;
  min-width: 200px;
  text-align: center;
  cursor: default;
  border: solid 1px transparent;
}
.date-nav .date-nav-display:hover {
  border-color: #b3b3b3;
}
.date-nav .date-nav-arrow-left, .date-nav .date-nav-arrow-right {
  display: inline-block;
  padding: 3px;
  padding-left: 10px;
  padding-right: 10px;
  border: solid 1px transparent;
}
.date-nav .date-nav-arrow-left:hover, .date-nav .date-nav-arrow-right:hover {
  border-color: #b3b3b3;
}
.date-nav .date-nav-dropdown {
  position: absolute;
  margin-left: 18px;
  box-shadow: 0px 1px 3px #666;
}

.top-bar {
  color: #fff;
  background-color: #0073C5;
  height: 45px;
  font-size: 18px;
  position: relative;
}
.top-bar .loading-anim {
  display: inline-block;
  margin-right: 15px;
  font-size: 14px;
  visibility: hidden;
  vertical-align: top;
}
.top-bar.loading .loading-anim {
  visibility: visible;
}
.top-bar .top-bar-left {
  float: left;
  height: 100%;
  line-height: 45px;
}
.top-bar .top-bar-center {
  text-align: center;
  padding-right: 30px;
  overflow: hidden;
  line-height: 45px;
  height: 100%;
}
.top-bar .top-bar-center-contents {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}
.top-bar .top-bar-right {
  float: right;
  line-height: 45px;
  height: 100%;
}
.top-bar .hamburger {
  background-color: transparent;
  color: #fff;
  line-height: normal;
  padding-left: 20px;
  padding-right: 20px;
  font-size: 18px;
}
.top-bar .hamburger:hover {
  background-color: #005592;
}
.top-bar .company-name {
  padding-right: 30px;
  font-family: "Ubuntu", "Segoe UI Semibold", "Ubuntu", "Segoe UI", Tahoma, Geneva, Verdana, Helvetica, sans-serif;
  display: inline-block;
}
.top-bar .notif-button {
  padding-left: 15px;
  padding-right: 15px;
  margin-right: 10px;
  vertical-align: top;
  cursor: pointer;
  color: #fff;
  position: relative;
}
.top-bar .notif-button .notif-count {
  display: inline-block;
  color: white;
  background-color: firebrick;
  font-size: 13px;
  position: absolute;
  left: 0;
  top: 5px;
  height: 25px;
  min-width: 25px;
  line-height: 25px;
  border-radius: 12.5px;
}
.top-bar .notif-button .notif-arrow {
  color: white;
  position: absolute;
  left: 50%;
  top: 100%;
  margin-top: -12px;
  margin-left: -10px;
  font-size: 32px;
}
.top-bar .search-link {
  padding-left: 15px;
  padding-right: 15px;
  margin-right: 10px;
  height: 45px;
  display: inline-block;
  vertical-align: top;
}
.top-bar .search-link i {
  color: #fff;
  line-height: 45px;
}

.tabs {
  cursor: pointer;
  display: inline-block;
}
.tabs .tab {
  display: inline-block;
  padding: 3px 0 5px 0;
  margin: 0 18px 0 0;
  background-color: transparent;
  text-transform: uppercase;
  border-radius: 0;
}
.tabs .tab.tab-selected {
  border-bottom: solid 4px #0073C5;
}
.tabs .tab:hover {
  border-bottom: solid 4px #2ca7ff;
}
.tabs .tab:focus {
  outline: none;
  border-bottom: solid 4px #2ca7ff;
}

.dialog-mask {
  z-index: 999;
  background-color: rgba(0, 0, 0, 0.3);
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
}
.dialog-mask.transparent-mask {
  background-color: transparent;
}

.dialog-label, .repeat-dialog .repeat-panel .repeat-after-completion .repeat-days-units, .repeat-dialog .repeat-panel label, .task-dialog label {
  display: block;
  margin-bottom: 3px;
  font-size: 13px;
  color: #666;
}

.dialog {
  position: absolute;
  background-color: white;
  min-width: 270px;
  max-width: calc(100vw - 10px);
  box-sizing: border-box;
  word-wrap: break-word;
  border: 1px solid #999;
  padding: 20px;
}
.dialog .button-panel {
  margin-top: 15px;
  text-align: right;
}
.dialog .button-panel button {
  margin-left: 10px;
  min-width: 80px;
}

.message-box .message-box-title {
  font-weight: 500;
  font-size: 16px;
  margin-bottom: 20px;
}
.message-box .message-line {
  margin-top: 5px;
}
.message-box .message-line:first-child {
  margin-top: 0;
}

.progress-dialog {
  padding: 25px 25px 40px 25px;
  text-align: center;
  border: none;
}
.progress-dialog .progress-animation {
  color: #777;
  font-size: 50px;
  outline: none;
}
.progress-dialog .progress-message {
  color: #444;
  font-size: 17px;
  padding-top: 5px;
  vertical-align: top;
  transform: translate(0, 50%);
}

.circle-permissions-dialog {
  min-width: 325px;
}

.new-member-dialog .radio-row {
  margin-top: 9px;
}
.new-member-dialog input[type=text] {
  margin-top: 7px;
  width: 280px;
  max-width: calc(100vw - 60px);
}

.text-input-dialog input[type=text], .text-input-dialog input[type=password] {
  margin-top: 7px;
  width: 280px;
  max-width: calc(100vw - 60px);
}
.text-input-dialog .text-input-help {
  margin-top: 10px;
  font-size: 13px;
}

.textarea-dialog textarea {
  margin-top: 7px;
  min-width: 350px;
  width: 350px;
  max-width: calc(100vw - 60px);
}

.notification-dialog {
  position: fixed;
  width: 250px;
  max-width: calc(100vw - 120px);
  max-height: calc(100vh - 130px);
  overflow-y: auto;
  padding: 0;
  -webkit-overflow-scrolling: touch;
  border: none;
  box-shadow: 0px 2px 3px #999;
}
.notification-dialog div:focus {
  outline: none;
}
.notification-dialog .desktop-notifications-bar {
  padding: 6px 6px 7px 9px;
  border-bottom: solid 1px #ddd;
  color: #666;
  display: flex;
  flex-direction: row;
  align-items: center;
}
.notification-dialog .desktop-notifications-bar span {
  flex: 1;
  text-transform: uppercase;
  font-size: 12.5px;
  letter-spacing: 0.7px;
}
.notification-dialog .notification-bar {
  padding: 6px 6px 7px 9px;
  display: flex;
  flex-direction: row;
  align-items: center;
  border-bottom: solid 1px #ddd;
}
.notification-dialog .notification-bar div {
  font-size: 13px;
  color: #666;
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 2px;
  padding-top: 2px;
  flex: 1;
}
.notification-dialog .notification-bar button {
  text-transform: uppercase;
  font-size: 11px;
  border: solid 1px #999;
  padding: 3px;
  border-radius: 3px;
}
.notification-dialog .notification {
  position: relative;
  border-bottom: solid 1px #ddd;
  padding: 10px;
  cursor: pointer;
}
.notification-dialog .notification:hover {
  background-color: #e6f3fc;
}
.notification-dialog .notification:last-child {
  border-bottom: none;
}
.notification-dialog .notification .notification-circle {
  font-size: 13px;
  margin-bottom: 3px;
  color: #666;
}
.notification-dialog .notification .notification-circle i {
  margin-right: 7px;
}
.notification-dialog .notification .notification-text {
  font-size: 14px;
  line-height: 17px;
  padding-left: 20px;
}
.notification-dialog .notification .notification-snippet {
  font-size: 12px;
  padding-left: 20px;
  padding-top: 2px;
}
.notification-dialog .notification .notification-timestamp {
  font-size: 12px;
  margin-top: 3px;
  color: #0073C5;
  padding-left: 20px;
}
.notification-dialog .notification .notification-delete {
  position: absolute;
  width: 36px;
  height: 36px;
  padding: 10px;
  box-sizing: border-box;
  top: 0;
  right: 0;
  color: #999;
}
.notification-dialog .notification:hover .notification-delete {
  color: #777;
}
.notification-dialog .notification:hover .notification-delete:hover {
  color: #333;
}
.notification-dialog .no-notifications {
  padding: 20px;
}
.notification-dialog .no-notifications i {
  margin-right: 8px;
}

.new-list-dialog {
  width: 350px;
  max-width: calc(100vw - 40px);
}
.new-list-dialog input[type=text] {
  width: 100%;
  box-sizing: border-box;
}
.new-list-dialog input[type=radio] {
  margin-left: 9px;
  position: relative;
  top: 1px;
}
.new-list-dialog label {
  padding-left: 2px;
}
.new-list-dialog .dialog-row {
  margin-bottom: 7px;
}
.new-list-dialog .dialog-row .prompt {
  display: block;
  padding-bottom: 3px;
}

.login-panel, .signup-panel {
  text-align: center;
  color: #2D3239;
  font-size: 15px;
  width: 100%;
  box-sizing: border-box;
}
.login-panel h2, .login-panel h3, .signup-panel h2, .signup-panel h3 {
  color: #2D3239;
}
.login-panel .panel-content, .signup-panel .panel-content {
  width: 100%;
  box-sizing: border-box;
  background-color: #ebf1f5;
  display: inline-block;
  padding: 20px;
}
.login-panel a, .signup-panel a {
  color: #0769ad;
  text-decoration: none;
}
.login-panel input[type=text], .login-panel input[type=password], .signup-panel input[type=text], .signup-panel input[type=password] {
  width: 100%;
  box-sizing: border-box;
  margin-bottom: 7px;
}
.login-panel ::-webkit-input-placeholder, .signup-panel ::-webkit-input-placeholder {
  font-size: 14px;
}
.login-panel :-ms-input-placeholder, .signup-panel :-ms-input-placeholder {
  font-size: 14px;
}
.login-panel button, .signup-panel button {
  margin-top: 15px;
  margin-bottom: 25px;
}
.login-panel.loading button, .signup-panel.loading button {
  display: none;
}
.login-panel .spinner, .signup-panel .spinner {
  margin-top: 15px;
  margin-bottom: 25px;
  color: #777;
  font-size: 33px;
  display: none;
}
.login-panel.loading .spinner, .signup-panel.loading .spinner {
  display: block;
}
.login-panel .login-error, .login-panel .signup-error, .signup-panel .login-error, .signup-panel .signup-error {
  margin-top: 10px;
  color: #E81022;
  font-size: 14px;
}
.login-panel label, .signup-panel label {
  max-width: 100%;
  box-sizing: 100%;
  display: inline-block;
  margin-bottom: 10px;
}
.login-panel .password-reset-panel button, .signup-panel .password-reset-panel button {
  font-size: 13px;
  padding-top: 6px;
  padding-bottom: 6px;
}
.login-panel .password-reset-panel .default-button, .signup-panel .password-reset-panel .default-button {
  border: solid 1px #0073C5;
}
.login-panel .password-reset-panel .outline-button, .signup-panel .password-reset-panel .outline-button {
  border-radius: 0;
  margin-left: 7px;
}
.login-panel .credentials-panel, .signup-panel .credentials-panel {
  display: none;
}
.login-panel.credentials-mode .credentials-panel, .signup-panel.credentials-mode .credentials-panel {
  display: inline-block;
}
.login-panel.credentials-mode .password-reset-panel, .signup-panel.credentials-mode .password-reset-panel {
  display: none;
}

.master-page {
  background-color: #fafafa;
  max-width: 970px;
  width: 100%;
  min-height: 100vh;
  position: relative;
  overflow: hidden;
}
.master-page header {
  max-width: inherit;
  width: inherit;
  position: fixed;
  top: 0;
  z-index: 800;
}
@media (max-width: 970px) {
  .master-page header {
    max-width: 100vw;
  }
}
.master-page .page-content {
  width: 100%;
}
.master-page .side-bar-mask {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 901;
  background-color: transparent;
  display: none;
}
.master-page .side-bar-wrapper {
  position: fixed;
  width: 250px;
  height: 100%;
  z-index: 902;
  overflow: hidden;
  display: none;
}
.side-bar-wrapper-shown .master-page .side-bar-wrapper {
  display: block;
}
.master-page .side-bar {
  display: inline-block;
  overflow-y: auto;
  box-sizing: border-box;
  width: 250px;
  height: 100%;
  padding: 7px;
  background-color: #f1f1f1;
  color: #666;
  margin-left: -250px;
  transition-duration: 350ms;
  transition-property: margin-left;
  transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
  -webkit-overflow-scrolling: touch;
}
.master-page .side-bar hr {
  border: 0;
  height: 1px;
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.05), rgba(0, 0, 0, 0.15), rgba(0, 0, 0, 0.05));
}
.master-page .side-bar .section-title {
  padding: 4px 5px 5px 8px;
  text-transform: uppercase;
  font-weight: 500;
}
.master-page .side-bar .space-list {
  min-height: 170px;
}
.master-page .side-bar .space-item {
  font-size: 15px;
  line-height: 30px;
  padding-left: 10px;
  cursor: pointer;
}
.master-page .side-bar .space-item i {
  margin-right: 7px;
}
.master-page .side-bar .space-item.selected-space {
  background-color: #cbe6f9;
  color: #555;
  font-weight: 500;
}
.master-page .side-bar .space-member-list {
  padding-bottom: 10px;
}
.master-page .side-bar .space-member-list hr {
  margin-top: 15px;
}
.master-page .side-bar .space-member {
  font-size: 15px;
  line-height: 30px;
  padding-left: 10px;
}
.master-page .side-bar .add-remove-members {
  padding-left: 10px;
  text-decoration: none;
  line-height: 30px;
  margin-bottom: 15px;
}
.master-page .side-bar .dropdown-button {
  color: inherit;
}
.side-bar-shown .master-page .side-bar {
  margin-left: 0;
  border-right: solid 1px #e0e0e0;
}
.side-bar-shown .master-page .side-bar-mask {
  display: block;
}
.master-page .sidebar-holder {
  display: none;
}

.desktop-layout .master-page .top-bar .hamburger {
  display: none;
}
.desktop-layout .master-page .sidebar-holder {
  width: 250px;
  height: calc(100vh - 45px);
  top: 45px;
  position: fixed;
  display: inline-block;
  vertical-align: top;
}
.desktop-layout .master-page .sidebar-holder .side-bar {
  margin-left: 0;
}
.desktop-layout.hide-sidebar .master-page .sidebar-holder {
  display: none;
}

.desktop-layout .master-page .page-fixed-area {
  width: calc(970px - 250px);
}
.desktop-layout.hide-sidebar .master-page .page-fixed-area {
  width: 970px;
}

.desktop-layout .master-page .page-content {
  margin-left: 250px;
  width: calc(100% - 250px);
  display: inline-block;
}
.desktop-layout.hide-sidebar .master-page .page-content {
  margin-left: 0;
  width: 970px;
  display: block;
}

.user-display {
  margin-bottom: 4px;
  display: inline-block;
}
.user-display .user-photo {
  font-size: 30px;
  color: #666;
  padding-right: 7px;
  display: inline-block;
}
.user-display .user-photo i {
  padding-left: 7px;
}
.user-display .dropdown {
  position: relative;
  top: -6px;
}
.user-display .dropdown button {
  font-size: 15px;
  padding-left: 0;
}
.user-display .popup-menu-item {
  min-width: 100px;
}
.top-bar .user-display {
  margin-right: 10px;
}
.top-bar .user-display i {
  color: white;
}
.top-bar .user-display button {
  color: white;
}
.top-bar .user-display .popup-menu {
  right: 0;
}

.page-not-found {
  position: absolute;
  top: 30%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  font-size: 28px;
  color: #999;
  white-space: nowrap;
}

.page-button-panel {
  margin-top: 15px;
  padding-bottom: 15px;
}
.page-button-panel button {
  margin-right: 7px;
}
.page-button-panel .dropdown .dropdown-button {
  outline-offset: -3px;
}

.page-fixed-area {
  position: fixed;
  top: 45px;
  width: 100vw;
  background-color: #fafafa;
  z-index: 100;
  box-sizing: border-box;
  padding-left: 10px;
}
@media (min-width: 970px) {
  .page-fixed-area {
    width: 970px;
  }
}
.page-fixed-area .breadcrumbs {
  margin-top: 15px;
}
.page-fixed-area .tabs {
  margin-bottom: 10px;
}
@media (max-width: 767px) {
  .page-fixed-area .tabs {
    display: none;
  }
}
.page-fixed-area.drop-shadow {
  box-shadow: 0px 3px 3px -3px #888;
}

.page-scrollable-area {
  overflow-y: auto;
  outline: none;
  -webkit-overflow-scrolling: touch;
  padding-left: 10px;
  padding-right: 10px;
}
@media (max-width: 767px) {
  .page-scrollable-area::-webkit-scrollbar {
    -webkit-appearance: none;
  }
  .page-scrollable-area::-webkit-scrollbar-thumb {
    background-color: #c1c1c1;
    border-radius: 20px;
  }
  .page-scrollable-area::-webkit-scrollbar-thumb:hover {
    background-color: #a8a8a8;
  }
  .page-scrollable-area::-webkit-scrollbar-track {
    background-color: #f1f1f1;
    border-radius: 20px;
  }
  .page-scrollable-area::-webkit-scrollbar-track:hover {
    background-color: #e9e9e9;
  }
}

.area-page .page-scrollable-area {
  padding-left: 0;
}

.area-picker .area-item {
  cursor: pointer;
  line-height: 40px;
  border-bottom: solid 1px #ddd;
}
.area-picker .area-item:first-child {
  margin-top: 10px;
  border-top: solid 1px #ddd;
}
.area-picker .area-item-arrow {
  color: #bbb;
  float: right;
  margin-right: 20px;
}
.area-picker .area-name {
  margin-left: 15px;
  color: #333;
}

.test-page {
  padding-top: 150px;
  padding-left: 10px;
}

.notes-page th {
  cursor: default;
}
.notes-page .note-list {
  margin-bottom: 20px;
}
@media (min-width: 350px) {
  .notes-page .note-list td:nth-child(2) {
    min-width: 200px;
  }
}
.notes-page .data-grid-icon-protected {
  margin-left: 7px;
  color: #777;
}

.text-editor {
  border: solid 1px #E2E3EA;
  padding: 7px;
  padding-bottom: 16px;
  min-height: 55px;
  outline: none;
  font-family: "Ubuntu", "Segoe UI", Tahoma, Geneva, Verdana, Helvetica, sans-serif;
  font-size: 13.3333px;
  background-color: white;
  display: inline-block;
}
.text-editor p {
  margin: 0;
}
.text-editor[placeholder]:empty:before {
  content: attr(placeholder);
  color: #aaa;
  font-family: "Ubuntu", "Segoe UI", Tahoma, Geneva, Verdana, Helvetica, sans-serif;
  padding: 5px;
}
.text-editor[placeholder]:empty:focus:before {
  content: "";
}

.message-editor {
  color: #444;
  margin-bottom: 9px;
  line-height: 1.5em;
}

.wall-page .image-tray, .wall-page .wall-button-bar, .wall-page .wall-messages, .wall-message .wall-message-body, .message-editor {
  box-sizing: border-box;
  max-width: 700px;
  width: calc(100vw - 10px - 10px);
}

.wall-page .emoji-button, .wall-page .photo-button {
  float: left;
  border: none;
  background-color: transparent;
  font-size: 22px;
  padding: 0;
  margin-left: 10px;
  color: #666;
  outline-offset: 3px;
}
.wall-page .emoji-button:hover, .wall-page .photo-button:hover {
  color: #444;
}
.wall-page .emoji-button:active, .wall-page .photo-button:active {
  color: #000;
}

.wall-message-envelope {
  margin-bottom: 10px;
}

.wall-message {
  margin-top: 1px;
  padding-top: 15px;
  background-color: white;
  box-shadow: 0 0 1px 0px rgba(128, 128, 128, 0.3);
  position: relative;
}
.wall-message .wall-message-head {
  padding-left: 15px;
}
.wall-message .wall-message-head .delete-message {
  display: inline-block;
  position: absolute;
  right: 3px;
  top: 0;
  padding: 10px;
  color: #bbb;
  visibility: hidden;
}
.wall-message .wall-message-head .delete-message:hover {
  color: #666;
}
.wall-message .wall-message-head .delete-message:active {
  color: #000;
}
.wall-message .wall-message-head:hover .delete-message {
  visibility: visible;
}
.wall-message .wall-message-profile-pic {
  display: inline-block;
}
.wall-message .wall-message-profile-pic i {
  color: #888;
  font-size: 36px;
}
.wall-message .wall-message-head-details {
  display: inline-block;
  margin-left: 10px;
}
.wall-message .wall-message-author {
  color: #2D3239;
  font-weight: 500;
  position: relative;
  top: -4px;
}
.wall-message .wall-message-date {
  font-size: 13px;
  color: #666;
}
.wall-message .wall-message-body {
  color: #333;
  display: inline-block;
  padding: 7px 15px 15px 62px;
  font-size: 14px;
  line-height: 1.5em;
  margin-top: 5px;
  min-height: 2em;
  word-wrap: break-word;
}
.wall-message .wall-message-photos {
  margin-left: 15px;
  margin-bottom: 15px;
  padding-bottom: 15px;
  transform-origin: left top;
}
.wall-message .wall-message-button-bar {
  padding-left: 57px;
  padding-top: 2px;
  padding-bottom: 5px;
  font-size: 13px;
}
.wall-message .wall-message-button-bar button {
  padding: 5px 7px 2px 7px;
  border-radius: 0;
  color: #666;
}
.wall-message .wall-message-button-bar button i {
  margin-right: 5px;
}
.wall-message .wall-message-button-bar button span {
  position: relative;
  top: -2px;
}
.wall-message .wall-message-button-bar button:hover {
  color: #333;
  background-color: #f3f3f3;
}

.wall-comments {
  padding-left: 63px;
  padding-top: 7px;
}
.wall-comments .wall-comments-more {
  margin-bottom: 2px;
}
.wall-comments .wall-comments-more a {
  text-decoration: none;
  font-size: 13px;
}
.wall-comments .wall-comments-more a:hover {
  text-decoration: underline;
}
.wall-comments .wall-comment {
  position: relative;
  font-size: 13px;
  padding: 4px 0 4px 0;
  margin-top: 6px;
}
.wall-comments .wall-comment-head {
  display: flex;
  flex-direction: row;
}
.wall-comments .wall-comment-head .wall-comment-profile-pic i {
  margin-top: 2px;
  color: #888;
  font-size: 30px;
}
.wall-comments .wall-comment-head .wall-comment-head-details {
  margin-left: 7px;
  flex: 1;
}
.wall-comments .wall-comment-head .wall-comment-head-details .wall-comment-author {
  margin-bottom: 2px;
  font-weight: 500;
}
.wall-comments .wall-comment-head .wall-comment-head-details .wall-comment-date {
  color: #666;
}
.wall-comments .wall-comment-head .delete-comment {
  display: inline-block;
  position: absolute;
  right: 3px;
  top: 0;
  padding: 10px;
  color: #bbb;
  visibility: hidden;
}
.wall-comments .wall-comment-head .delete-comment:hover {
  color: #666;
}
.wall-comments .wall-comment-head .delete-comment:active {
  color: #000;
}
.wall-comments .wall-comment-head:hover .delete-comment {
  visibility: visible;
}
.wall-comments .wall-comment-body {
  margin-top: 3px;
  margin-left: 36px;
  line-height: 1.5em;
}
.wall-comments .comment-editor-panel {
  margin-top: 6px;
  margin-bottom: 15px;
}
.wall-comments .comment-editor-panel .comment-editor {
  box-sizing: border-box;
}
.wall-comments .comment-button-bar {
  text-align: right;
  margin-top: 9px;
}
.wall-comments .comment-button-bar button {
  margin-left: 7px;
  min-width: 70px;
}

.wall-page .watermark-text {
  color: #aaa;
  margin-bottom: 12px;
}
.wall-page .page-fixed-area .tabs {
  margin-bottom: 15px;
}
.wall-page .text-editor {
  display: block;
}
.wall-page .wall-button-bar {
  text-align: right;
  margin-bottom: 20px;
}
.wall-page .emoji-button {
  margin-left: 20px;
}
.wall-page .photo-upload-spinner {
  display: inline-block;
  font-size: 18px;
  padding-top: 2px;
  float: left;
  margin-left: 40px;
  color: #999;
}
.wall-page .photo-upload-spinner.hidden {
  display: none;
}
.wall-page .image-tray {
  margin-bottom: 7px;
}
.wall-page .more-button-panel {
  padding-top: 7px;
  padding-bottom: 10px;
  text-align: center;
}
.wall-page .more-button-panel .more-button {
  font-size: 13px;
  padding: 6px 22px 7px 22px;
}
.wall-page .more-button-panel .more-button:disabled {
  color: #999;
}

.note-editor {
  border: 1px solid #ddd;
  padding: 5px;
  border-radius: 0;
  overflow: auto;
  resize: none;
  outline: none;
  background-color: white;
  -webkit-appearance: none;
  font-family: "Segoe UI", sans-serif;
  font-size: 15px;
  width: 100%;
  box-sizing: border-box;
  -webkit-overflow-scrolling: touch;
}

.note-markdown {
  border: 1px solid #ddd;
  overflow: auto;
  outline: none;
  padding: 7px;
  box-sizing: border-box;
  background-color: white;
}
.note-markdown a {
  word-break: break-all;
}

.markdown {
  font-family: "Segoe UI", sans-serif;
  font-size: 15px;
}
.markdown h1, .markdown h2, .markdown h3, .markdown h4, .markdown h5 {
  font-family: "Segoe UI", sans-serif;
}
.markdown strong {
  color: #333;
}
.markdown img {
  max-width: calc(100% - 50px);
}
.markdown a {
  text-decoration-thickness: 1px;
  text-underline-offset: 1px;
}
.markdown code {
  font-size: 85%;
  padding: 0.2em 0.4em;
  background-color: rgba(175, 184, 193, 0.2);
  border-radius: 6px;
}
.markdown pre code {
  padding: unset;
  background-color: unset;
  border-radius: unset;
}
.markdown pre:not(:only-child) code {
  background-color: #f6f8fa;
  border-radius: 6px;
  display: block;
  padding: 10px;
}
.markdown pre:only-child {
  margin: 0;
}
.markdown blockquote {
  border-left: 0.25em solid #d0d7de;
  margin-left: 0;
  padding: 0 1em;
}
.markdown hr {
  border: none;
  border-bottom: solid 0.5px #666;
}
.markdown table {
  border-spacing: 0;
  border-style: solid;
  border-width: 0.5px;
  border-bottom-color: #999;
  border-left-color: #ccc;
  border-top: none;
  border-right: none;
}
.markdown table td, .markdown table th {
  border: solid;
  border-width: 0.5px;
  border-bottom: none;
  border-left: none;
  border-top-color: #999;
  border-right-color: #ccc;
  padding: 2px 10px 3px 10px;
}
.markdown table th {
  text-align: left;
  font-weight: 500;
  background-color: #f5f5f5;
}

.note-page .page-button-panel {
  display: flex;
  flex-direction: row;
}
.note-page .button-panel {
  padding-right: 3px;
}
.note-page .note-page-infos {
  flex: 1;
  display: inline-flex;
  flex-direction: row;
  align-items: center;
}
.note-page .note-page-message {
  display: inline-block;
  font-size: 13.5px;
  color: #2D3239;
  flex: 1;
}
.note-page .help-link {
  text-decoration: none;
  font-size: 12px;
  margin-right: 15px;
}
@media (max-width: 970px) {
  .note-page .help-link {
    display: none;
  }
}

.diary-page .diary-page-message {
  display: inline-block;
  font-size: 13.5px;
  color: #2D3239;
}

.links-page .input-box {
  margin-bottom: 12px;
}
.links-page .data-grid {
  margin-bottom: 20px;
  line-height: 15px;
  -webkit-text-size-adjust: 100%;
}
.links-page .data-grid tr.data-grid-category-header {
  font-weight: 500;
  color: #555;
}
.links-page .data-grid tr.data-grid-category-header td {
  padding-top: 10px;
}
.links-page .data-grid td {
  padding: 4px 20px 4px 0;
  max-width: 500px;
}
.links-page .data-grid td:first-child {
  padding-right: 13px;
}
.links-page .data-grid tr {
  border-bottom: solid 1px transparent;
}
.links-page .link-input {
  font-size: 13px;
  padding: 6px 8px 6px 8px;
  width: calc(970px - 38px);
  max-width: calc(100% - 38px);
  color: #2D3239;
}
.links-page .link-input::-webkit-input-placeholder {
  font-family: "Ubuntu", "Segoe UI", Tahoma, Geneva, Verdana, Helvetica, sans-serif;
  font-size: inherit;
  color: #999;
}

.list-item-dialog .dialog-row {
  width: 350px;
  max-width: calc(100vw - 52px);
  margin-bottom: 9px;
}
.list-item-dialog .dialog-row input[type=text], .list-item-dialog .dialog-row textarea {
  width: 100%;
  box-sizing: border-box;
}
.list-item-dialog .dialog-row textarea {
  resize: vertical;
  overflow-y: auto;
}
.list-item-dialog .more-options-row {
  padding-top: 3px;
  padding-bottom: 3px;
}
.list-item-dialog .more-options-row button {
  font-size: 13px;
  color: #666;
}
.list-item-dialog .more-options-row button:focus {
  outline-offset: 3px;
}
.list-item-dialog .more-options-row span {
  margin-right: 3px;
}
.list-item-dialog label {
  display: block;
  margin-bottom: 3px;
  font-size: 13px;
  color: #666;
}

input[type=checkbox].dialog-checkbox-input + label {
  font-size: 13px;
  color: #666;
  display: inline-block;
  margin: 5px 9px 5px 0;
}
input[type=checkbox].dialog-checkbox-input + label::before {
  font-size: 16px;
  vertical-align: middle;
  margin-top: -3px;
}

.task-dialog .dialog-row {
  width: 350px;
  max-width: calc(100vw - 52px);
  margin-bottom: 9px;
}
.task-dialog .dialog-row input[type=text], .task-dialog .dialog-row textarea {
  width: 100%;
  box-sizing: border-box;
}
.task-dialog .dialog-row textarea {
  resize: vertical;
  overflow-y: auto;
  vertical-align: top;
}
.task-dialog .due-date-input {
  width: 150px;
}
.task-dialog .due-date-input input {
  width: 75px;
}
.task-dialog .repeat-text {
  margin-top: 7px;
  font-size: 13px;
  color: #666;
}
.task-dialog .repeating-section {
  margin-bottom: 16px;
}

.repeat-dialog .repeat-panel {
  min-height: 160px;
  padding-left: 10px;
  margin-bottom: 20px;
}
.repeat-dialog .repeat-panel .dialog-row {
  width: 340px;
  max-width: calc(100vw - 62px);
  margin-bottom: 9px;
}
.repeat-dialog .repeat-panel label {
  margin-bottom: 5px;
}
.repeat-dialog .repeat-panel .dialog-label, .repeat-dialog .repeat-panel .repeat-after-completion .repeat-days-units, .repeat-dialog .repeat-panel label {
  margin-bottom: 5px;
}
.repeat-dialog .repeat-panel .repeat-weekly label {
  min-width: 60px;
}
.repeat-dialog .repeat-panel .repeat-weekly input {
  display: inline-block;
}
.repeat-dialog .repeat-panel .repeat-after-completion {
  margin-bottom: 9px;
}
.repeat-dialog .repeat-panel .repeat-after-completion input {
  width: 50px;
}
.repeat-dialog .repeat-panel .repeat-after-completion span {
  margin-left: 7px;
}
.repeat-dialog .repeat-panel .repeat-after-completion .repeat-days-units {
  display: inline-block;
}
.repeat-dialog .repeat-panel .month-section {
  margin-right: 15px;
  display: inline-block;
}
.repeat-dialog .repeat-panel .day-section {
  display: inline-block;
}
.repeat-dialog .repeat-panel .repeat-month {
  width: 150px;
}
.repeat-dialog .repeat-panel .repeat-day {
  width: 60px;
}
.repeat-dialog .repeat-panel .repeat-weekly label {
  display: inline-block;
  margin-right: 9px;
}

.link-dialog input[type=text] {
  width: 100%;
  box-sizing: border-box;
  max-width: calc(100vw - 52px);
}
.link-dialog textarea {
  width: 100%;
  max-width: calc(100vw - 52px);
  box-sizing: border-box;
  resize: vertical;
  outline: none;
}
.link-dialog .dialog-row {
  width: 350px;
  box-sizing: border-box;
  margin-bottom: 5px;
}
.link-dialog .dialog-row label {
  display: block;
  padding-bottom: 3px;
  color: #666;
  font-size: 13px;
}
.link-dialog .combo-box {
  max-width: calc(100vw - 52px);
}

.tasks-page .scope-switch {
  color: #555;
}
.tasks-page .scope-switch .this-cloud {
  padding-right: 10px;
  margin-right: 10px;
  border-right: solid 1px #555;
}
.tasks-page .scope-switch a {
  text-decoration: none;
}
.tasks-page .data-grid {
  margin-bottom: 20px;
}
.tasks-page tr.data-grid-category-header {
  font-weight: 500;
  font-size: 15px;
  color: #2D3239;
}
.tasks-page tr.data-grid-category-header td {
  padding-top: 10px;
}
.tasks-page th:nth-child(4) {
  text-align: right;
}
.tasks-page td:nth-child(4) {
  text-align: right;
}
.tasks-page .overdue-task {
  color: #AA0808;
}
.tasks-page .overdue-task a {
  color: #AA0808;
}
.tasks-page .due-today-task {
  color: #CC5918;
}
.tasks-page .due-today-task a {
  color: #CC5918;
}
.tasks-page .complete-task {
  text-decoration: line-through;
}
.tasks-page tr a:hover {
  text-decoration: underline;
}
.tasks-page .data-grid-icon-repeating {
  margin-left: 7px;
}

.list-items {
  display: inline-block;
  margin-left: 5px;
}
.list-items table {
  border-collapse: collapse;
  margin-bottom: 20px;
  font-size: 14px;
}
.list-items table.money-table tr {
  border-bottom: solid 1px #eee;
}
.list-items table.money-table td:first-child {
  padding-right: 5px;
}
.list-items a {
  text-decoration: none;
}
.list-items a:hover {
  text-decoration: underline;
}
.list-items .crossed-off td {
  text-decoration: line-through;
}
.list-items tr td {
  padding-top: 4px;
  padding-bottom: 4px;
}
.list-items td:nth-child(1) label {
  padding: 5px 0 5px 5px;
  color: #555;
}
.list-items td:nth-child(2) {
  padding-right: 20px;
}
.list-items td:nth-child(3) {
  text-align: right;
}
.list-items .list-item-category-header {
  font-weight: 600;
  color: #666;
}
.list-items .list-item-category-header td {
  padding-top: 7px;
}
.list-items .list-category-total td:nth-child(3) {
  border-top: solid 1px black;
}
.list-items .list-grand-total {
  font-weight: 600;
}

.list-chart {
  padding-bottom: 25px;
  margin-left: 45px;
  display: inline-block;
  vertical-align: top;
}
.list-chart .pie-chart {
  width: 250px;
  height: 250px;
  max-width: calc(100vw - 110px);
  max-height: calc(100vw - 110px);
}
.list-chart .pie-legend {
  margin-top: 20px;
  text-align: center;
}
.list-chart .pie-legend .legend {
  display: inline-block;
}
.list-chart .pie-legend .legend-item {
  text-align: left;
  border-left-width: 1.1em;
  border-left-style: solid;
  padding-left: 5px;
  margin-bottom: 3px;
}

.album-page .photo-list {
  display: inline-block;
  overflow: hidden;
}
.album-page .photo-tile {
  display: inline-block;
  margin-bottom: 15px;
}
.album-page .photo-tile label {
  margin-left: 8px;
  display: block;
  max-width: 300px;
}
.album-page .photo-holder {
  margin-left: 8px;
  margin-right: 8px;
  margin-bottom: 3px;
  width: 300px;
  max-width: calc(100vw - 40px);
  height: 200px;
  overflow: hidden;
  position: relative;
}

.slideshow {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  max-height: 100vh;
  z-index: 1100;
  background-color: #393939;
  outline: none;
}
.slideshow .slide-holder {
  padding: 15px;
}
.slideshow .slide-holder .slide {
  height: calc(100vh - 60px - 15px - 15px);
  position: relative;
}
.slideshow .slideshow-toolbar {
  background-color: #333;
  border-bottom: solid 1px #555;
}
.slideshow .slideshow-toolbar .button-strip {
  text-align: center;
  color: white;
}
.slideshow .slideshow-toolbar .button-strip .slideshow-button {
  display: inline-block;
  background-color: #484848;
  font-size: 28px;
  width: 46px;
  height: 46px;
  text-align: center;
  border-radius: 50%;
  margin: 5px;
  box-sizing: border-box;
  background-repeat: no-repeat;
  background-position: 11px 10px;
  background-size: 25px;
}
.slideshow .slideshow-toolbar .button-strip .slideshow-button:hover {
  background-color: #515151;
}
.slideshow .slideshow-toolbar .button-strip .slideshow-button:active {
  background-color: #444;
}
.slideshow .slideshow-toolbar .button-strip .m-of-n {
  margin: 5px;
  display: inline-block;
  font-size: 13px;
  padding-top: 16px;
  vertical-align: top;
  background-color: transparent;
}
.slideshow .slideshow-toolbar .button-strip .back-button {
  background-image: url(../assets/prev-slide.png);
}
.slideshow .slideshow-toolbar .button-strip .next-button {
  background-image: url(../assets/next-slide.png);
}
.slideshow .slideshow-toolbar .button-strip .close-button {
  background-image: url(../assets/close-slides.png);
}

.drop-down-menu {
  position: absolute;
  outline: none;
  z-index: 9999;
  background-color: white;
  box-shadow: 0px 1px 3px #666;
  padding: 6px 0 6px 0;
  cursor: default;
}
.drop-down-menu .title {
  color: #666;
  font-style: italic;
  padding-left: 15px;
  margin-top: 5px;
  margin-bottom: 5px;
}
.drop-down-menu .menu-row {
  padding: 6px 25px 6px 15px;
}
.drop-down-menu .menu-row.highlight {
  color: white;
  background-color: #0091f8;
}

.invitations {
  margin-top: 30px;
}
.invitations .button-panel {
  padding-bottom: 15px;
}

.email-link-page .email-link-page-content {
  text-align: center;
  position: absolute;
  top: 30%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  font-size: 24px;
  color: #555;
  white-space: nowrap;
}
.email-link-page .email-link-page-button-bar {
  margin-top: 30px;
}
.email-link-page .link-button {
  text-decoration: none;
  border: solid 1px #b3b3b3;
  padding: 5px 25px 5px 25px;
  font-size: 16px;
  color: #333;
}

.new-user-invitation {
  width: 375px;
  max-width: calc(100vw - 20px);
  padding: 20px 5px 50px 5px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  box-sizing: border-box;
}
.new-user-invitation .dialog-label, .new-user-invitation .task-dialog label, .task-dialog .new-user-invitation label, .new-user-invitation .repeat-dialog .repeat-panel label, .repeat-dialog .repeat-panel .new-user-invitation label, .new-user-invitation .repeat-dialog .repeat-panel .repeat-after-completion .repeat-days-units, .repeat-dialog .repeat-panel .repeat-after-completion .new-user-invitation .repeat-days-units {
  margin-bottom: 3px;
}
.new-user-invitation .dialog-row {
  margin-bottom: 10px;
}
.new-user-invitation .signup-panel {
  background-color: #ebf1f5;
  padding: 15px 25px 15px 25px;
}
.new-user-invitation .signup-form {
  text-align: left;
}
.new-user-invitation input[type=text], .new-user-invitation input[type=password] {
  box-sizing: border-box;
  width: 100%;
}
.new-user-invitation .radio-prompt {
  display: inline-block;
}
.new-user-invitation .radio-row {
  margin-top: 12px;
  margin-bottom: 12px;
}
.new-user-invitation .email {
  background-color: rgba(255, 255, 255, 0.5);
}
.new-user-invitation .button-panel {
  margin-top: 25px;
  text-align: center;
}
.new-user-invitation button {
  background-color: white;
  border: solid 1px #aaa;
  border-radius: 3px;
  padding: 5px 20px 5px 20px;
  color: #333;
}
.new-user-invitation .error-message {
  color: #E81022;
}

.account-page label {
  display: block;
  color: #999;
  font-size: 13px;
  padding-bottom: 3px;
}
.account-page .form-row {
  margin-top: 30px;
  margin-bottom: 30px;
}
.account-page .delete-account-row {
  margin-top: 50px;
}
.account-page .email {
  display: inline-block;
  margin-right: 7px;
}
.account-page .danger-button {
  border-color: #E81022;
  color: #E81022;
}

.password-change-dialog label {
  display: block;
  margin-bottom: 3px;
  font-size: 13px;
  color: #666;
}
.password-change-dialog input[type=password] {
  box-sizing: border-box;
  width: 100%;
}
.password-change-dialog .dialog-row {
  margin-bottom: 7px;
}

.delete-task-dialog {
  min-width: 350px;
}
.delete-task-dialog .dialog-row {
  margin-bottom: 10px;
}

.password-reset-page {
  width: 375px;
  max-width: calc(100vw - 20px);
  padding: 20px 5px 50px 5px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  box-sizing: border-box;
}
.password-reset-page label {
  display: inline-block;
  margin-bottom: 10px;
}
.password-reset-page button {
  margin-top: 10px;
}
.password-reset-page .password-reset-content {
  padding: 15px 25px 35px 25px;
  background-color: #ebf1f5;
}
.password-reset-page input[type=text], .password-reset-page input[type=password] {
  width: 100%;
  margin-bottom: 7px;
}
.password-reset-page.loading button {
  display: none;
}
.password-reset-page .spinner {
  margin-top: 15px;
  margin-bottom: 25px;
  color: #777;
  font-size: 33px;
  display: none;
}
.password-reset-page.loading .spinner {
  display: block;
}
.password-reset-page .error-message {
  color: #E81022;
  font-size: 13.5px;
}

.spaces-page .invitations-section .data-grid {
  margin-bottom: 40px;
}
.spaces-page .data-grid .data-grid-cell1 {
  width: 60%;
}
.spaces-page .data-grid .data-grid-cell2 {
  width: 40%;
}
.spaces-page .feedback-request {
  text-align: center;
  margin-top: 100px;
  margin-bottom: 10px;
}
.spaces-page .feedback-request a {
  margin-left: 1ch;
}

.front-page {
  width: 970px;
  max-width: calc(100vw - 20px);
  box-sizing: border-box;
  margin-left: auto;
  margin-right: auto;
}
.desktop-layout .front-page {
  background-image: url("/assets/circles-art.png");
  background-position: right top;
  background-size: 562px 415px;
  background-repeat: no-repeat;
}
.front-page .page-title {
  margin-top: 0;
  padding-top: 25px;
  color: #0073C5;
  text-align: center;
  font-size: 35px;
}
.desktop-layout .front-page .page-title {
  text-align: left;
}
.front-page h2 {
  margin-top: 70px;
  text-align: center;
  color: #333;
}
.desktop-layout .front-page h2 {
  text-align: left;
}
.front-page .section {
  margin-bottom: 35px;
  display: none;
}
.front-page .section p:first-child {
  margin-top: 0;
}
.desktop-layout .front-page .section {
  display: block;
}
.front-page .section .art {
  display: inline-block;
  width: calc(970px / 2 - 50px);
  max-width: calc(100vw - 40px);
  position: relative;
}
.front-page .section .art::after {
  position: absolute;
  background: url("/assets/dot-grid.png");
  background-repeat: no-repeat;
  background-size: 40px 40px;
  width: 40px;
  height: 40px;
  right: -15px;
  bottom: -15px;
  content: " ";
  z-index: -1;
}
.front-page .section .art.art-left::after {
  right: unset;
  left: -15px;
}
.front-page .art-title {
  text-align: center;
  font-size: 36px;
  font-weight: 400;
}
.front-page .circles-free {
  color: #999;
  font-size: 13px;
  margin-top: 7px;
  text-align: center;
}
.front-page .use-cases {
  margin-bottom: 50px;
  text-align: center;
}
.desktop-layout .front-page .use-cases {
  text-align: left;
}
.front-page .use-case {
  text-align: left;
  margin-top: 20px;
  display: inline-block;
  vertical-align: top;
  margin-left: 25px;
  font-size: 15px;
  width: 200px;
}
.desktop-layout .front-page .use-case {
  margin-left: 50px;
  width: calc(970px / 3 - 100px);
}
.front-page .use-case img {
  opacity: 0.65;
}
.desktop-layout .front-page .use-case:first-child {
  margin-left: 0;
}
.front-page .blurb {
  font-size: 15px;
  vertical-align: top;
  text-align: left;
  display: inline-block;
  width: calc(970px / 2 - 75px);
  max-width: calc(100vw - 40px);
}
.desktop-layout .front-page .blurb {
  padding: 50px;
  margin-left: 20px;
}
.desktop-layout .front-page .blurb.blurb-left {
  margin-left: 0;
  margin-right: 20px;
}
.front-page .contact-display {
  padding-top: 200px;
  text-align: center;
  font-size: 14px;
}
.front-page .account-buttons {
  display: inline-block;
  margin-bottom: 10px;
  margin-top: 10px;
}
.front-page .account-buttons .signup-button {
  font-size: 20px;
  display: inline-block;
  text-transform: uppercase;
  padding: 7px;
  margin-right: 20px;
  background-color: #0073C5;
  color: white;
  border: none;
}
.front-page .account-buttons .login-button {
  font-size: 20px;
  display: inline-block;
  text-transform: uppercase;
  padding: 7px;
}
.front-page .account-buttons button {
  color: #005592;
  border: solid 1px #999;
  min-width: 130px;
  cursor: pointer;
}
.front-page .login-panel {
  display: inline-block;
  vertical-align: top;
  display: none;
}
.front-page .signup-panel {
  display: none;
}
.front-page .account-panel {
  max-width: 100%;
  box-sizing: border-box;
  margin-bottom: 20px;
  vertical-align: top;
  text-align: center;
}
.desktop-layout .front-page .account-panel {
  width: 350px;
  min-height: 200px;
  text-align: left;
}
.front-page .account-panel.login-mode .login-panel {
  display: inline-block;
}
.front-page .account-panel.signup-mode .signup-panel {
  display: inline-block;
}
.front-page .front-page-footer {
  background-image: url("/assets/footer.png");
  background-repeat: no-repeat;
  background-size: 970px auto;
  height: 270px;
}

.admin-home-page .error-message {
  color: #E81022;
}
.admin-home-page .section {
  padding-bottom: 20px;
  margin-bottom: 20px;
  border-bottom: solid 1px #ddd;
}
.admin-home-page .section button {
  margin-left: 15px;
}

.admin-user-page button {
  margin-right: 20px;
}

.search-page .space-title {
  color: #666;
  margin-bottom: 5px;
}
.search-page .search-toolbar {
  display: flex;
  flex-direction: row;
  margin-bottom: 12px;
}
.search-page .search-toolbar input[type=text] {
  flex: 1;
  padding: 6px 0px 8px 7px;
  margin-right: 7px;
  width: 75%;
}
.search-page .search-toolbar input[type=text]::placeholder {
  font-size: 14px;
}
.search-page .search-toolbar .search-button {
  margin-right: 10px;
}
.search-page .search-result-panel {
  margin-bottom: 20px;
}
.search-page .search-result-note {
  margin: 1px 0 10px 0;
  padding: 15px 0 15px 15px;
  background-color: white;
  box-shadow: 0 0 1px 0px rgba(128, 128, 128, 0.3);
}
.search-page .search-result-note i {
  color: #888;
  font-size: 32px;
  padding: 0 5px 0 5px;
  vertical-align: middle;
  margin-right: 12px;
}
.search-page .search-result-note a {
  font-size: 14px;
  vertical-align: middle;
}
.search-page .wall-message .delete-message {
  display: none;
}

.help-page h1, .help-page h2, .help-page h3, .help-page h4 {
  color: #555;
}
.help-page .prompt {
  margin-bottom: 10px;
}
.help-page .note-editor {
  min-height: 175px;
}
.help-page .button-bar {
  margin-top: 10px;
  margin-bottom: 50px;
}
.help-page .email-display {
  margin-bottom: 25px;
}

.decrypt-page {
  padding: 15px;
}
.decrypt-page h2 {
  margin-top: 0;
}
.decrypt-page .decrypt-prompt {
  margin-bottom: 7px;
}
.decrypt-page textarea {
  width: 800px;
  height: 350px;
  font-family: Consolas, Menlo, "Courier New", "Courier";
}
.decrypt-page .decrypt-button-panel {
  margin-top: 10px;
}

.protect-dialog {
  width: 400px;
  max-width: calc(100vw - 40px);
}
.protect-dialog input[type=text], .protect-dialog input[type=password] {
  width: 100%;
  box-sizing: border-box;
  margin-bottom: 10px;
}
.protect-dialog .passphrase-prompt {
  margin-bottom: 5px;
}
.protect-dialog .passphrase-help {
  color: #444;
  font-size: 13px;
}
.protect-dialog .passphrase-example {
  margin-top: 7px;
}

.passphrase-dialog {
  width: 400px;
}
.passphrase-dialog input[type=text], .passphrase-dialog input[type=password] {
  width: 100%;
  box-sizing: border-box;
}