html, body {
  height: 100%;
  overflow: hidden;
  cursor: default;
}

.page-bottom-exit {
  position: absolute;
  left: 0px;
  right: 0px;
  bottom: 0px;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  color: rgb(240,240,240,0.3);
  font-family: 'Albert Sans', sans-serif !important;
  font-size: 14px;
  font-weight: 500;
}

.page-bottom-exit > span {
  padding: 4px 8px;
  color: rgb(240,240,240,0.3);
  transition: all 0.25s;
}

.page-bottom-exit > span:hover {
  color: rgb(240,240,240,1);
  transition: all 0.25s;
}

.login-body {
  font-family: 'Albert Sans', sans-serif !important;
  position: absolute;
  top: 0px;
  left: 0px;
  right: 0px;
  bottom: 0px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgb(39,67,95);
}

.login-panel {
  padding: 16px 0px;
  width: 350px;
  border-radius: 6px;
  background-color: rgb(255,255,255);
  color: rgb(240,240,240);
  box-shadow: 0px 0px 20px 6px rgba(0,0,0,0);
  background-color: rgba(255,255,255,0.0);
  transition: all 0.25s;
}

.login-panel:hover {
  transform: scale(1.025);
  background-color: rgba(255,255,255,0.03);
  box-shadow: 0px 0px 20px 6px rgba(0,0,0,0.2);
  transition: all 0.25s;
}

.login-header {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
}

.login-header > h1 {
  margin: 0px;
  font-weight: 700;
}

.login-fields-section {
  margin-top: 16px;
}

.login-field-container {
  padding: 8px 16px;
}

.login-panel-x:hover > .login-fields-section > .login-field-container > input {
  box-shadow: inset 0px 0px 30px 4px rgba(0,0,0,0.1);
  background-color: rgb(38,67,95,0.2);
  border: 1px solid rgb(39,84,128,0.4);
  transition: all 1s;
}

.login-field-container > input {
  width: 100%;
  border: none;
  border-radius: 8px;
  outline: none;
  box-shadow: none;
  height: 38px;
  font-size: 15px;
  font-weight: 500;
  color: rgb(255,255,255);
  text-align: center;
  box-shadow: inset 0px 0px 30px 4px rgba(0,0,0,0.1);
  background-color: rgb(38,67,95,0.2);
  border: 1px solid rgb(39,84,128,0.4);
  transition: all 0.25s;
}

.login-field-button-container {
  padding: 8px 16px;
}

.login-button {
  margin-top: 16px;
  padding: 4px 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  font-weight: 600;
  color: rgb(240,240,240,0.8);
  transition: all 0.25s;
}

.login-button:hover {
  color: rgb(240,240,240,1);
  transform: scale(1.1);
  transition: all 0.25s;
}

.login-recovery-btn {
  margin-top: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 400;
  color: rgb(240,240,240,0.5);
  transition: all 0.25s;
}

.login-recovery-btn:hover {
  color: rgb(240,240,240,1);
  transform: scale(1.025);
  transition: all 0.25s;
}

.popup-overlay {
  position: absolute;
  top: 0px;
  left: 0px;
  right: 0px;
  bottom: 0px;
  z-index: 6;
  background-color: rgb(0,0,0,0.25);
  display: none;
}

body.popup > .popup-overlay {
  display: block;
}

.account-popup {
  position: absolute;
  top: 50px;
  right: 0px;
  width: 250px;
  z-index: 10;
  background-color: rgb(255,255,255);
  display: none;
}

body.popup > .account-popup {
  display: block;
}

.account-popup-item {
  display: flex;
  align-items: center;
  height: 50px;
  padding: 4px 8px;
  font-size: 13px;
  font-weight: 500;
  color: rgb(150,150,150);
}

.account-popup-item:hover {
  color: rgb(255,255,255);
  background-color: rgb(42,102,157,1);
}

.account-popup-item.logout {
  font-weight: 700;
}

.account-popup-item.logout:hover {
  color: rgb(60,60,60);
  background-color: rgb(42,102,157,0);
}

.top-bar {
  z-index: 3;
  position: absolute;
  top: 0px;
  left: 0px;
  right: 0px;
  height: 50px;
  display: flex;
  align-items: center;
  padding: 0px 16px;
  background-color: rgb(255,255,255);
}

.logo-container {
  position: relative;
  margin-left: -16px;
  margin-right: 16px;
  height: 50px;
  width: 200px;
  padding: 0px 16px;
  display: flex;
  align-items: center;
  font-size: 26px;
  font-family: 'Passion One', serif;
  font-weight: bold;
  color: rgb(240,240,240);
  text-shadow: 0px 0px 5px rgba(30,30,30,0.4);
  box-shadow: -1px -10px 10px 5px rgba(0,0,0,0.3);
  overflow: hidden;
}

.logo-container > span:first-child {
  z-index: 1;
  margin-top: -15px;
}

.logo-subtitle {
  font-size: 20px;
  position: absolute;
  right: 15%;
  bottom: -40%;
  height: 100%;
  font-weight: 300;
  transform: rotateZ(0deg);
}

.top-bar-bottom-left-border {
  position: absolute;
  bottom: 0px;
  height: 1px;
  left: 0px;
  width: 200px;
  background-color: rgb(40,40,40);
}

.top-bar-bottom-border {
  position: absolute;
  bottom: 0px;
  height: 1px;
  left: 200px;
  right: 0px;
  background-color: rgb(150,150,150);
}

.top-bar-spacer {
  flex-grow: 1;
}

.top-bar-account-item {
  font-family: 'Albert Sans', sans-serif;
  position: relative;
  padding: 4px 8px;
  padding-left: 16px;
  text-transform: uppercase;
  font-size: 11px;
  font-weight: 800;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  color: rgb(60,60,60,0.8);
}

.top-bar-account-item:hover {
  color: rgb(60,60,60) !important;
}

.account-left-border {
  position: absolute;
  margin-left: 0px !important;
  left: 0px;
  width: 1px;
  height: 30px;
  background-color: rgb(60,60,60,0.2);
}

.top-bar-account-item:hover > div:last-child {
  color: rgb(60,60,60,0.8);
}

.top-bar-account-item > div:last-child {
  color: rgb(60,60,60,0.25);
}

.top-bar-account-item > div {
  margin-left: 6px;
}

.top-bar-item {
  font-family: 'Albert Sans', sans-serif;
  position: relative;
  padding: 4px 8px;
  text-transform: uppercase;
  font-size: 11px;
  font-weight: 800;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  color: rgb(60,60,60,0.5);
}

.top-bar-item:hover {
  color: rgb(60,60,60);
}

.top-bar-item.selected {
  color: rgb(0,126,255) !important;
}

.top-bar-item > .highlighter {
  position: absolute;
  bottom: -2px;
  height: 5px;
  background-color: rgb(20,20,20);
  border-radius: 5px;
  width: calc(0% + 5px);
  transition: all 0.25s;
}

.top-bar-item:hover > .highlighter {
  bottom: -1px;
  height: 5px;
  width: calc(50% + 5px);
  transition: all 0.25s;
}

.left-bar {
  position: absolute;
  top: 49px;
  left: 0px;
  width: 200px;
  bottom: 0px;
  z-index: 2;
  background-color: rgb(39,67,95);
  box-shadow: 0px 0px 10px 5px rgba(0,0,0,0.2);
}

.left-bar-navigator {
  position: absolute;
  top: 0px;
  left: 0px;
  right: 0px;
  bottom: 0px;
  background-color: rgb(39,67,95,0);
}

.left-bar-nav-item {
  font-family: 'Albert Sans', sans-serif;
  padding: 4px 16px;
  text-transform: uppercase;
  font-size: 11px;
  font-weight: 800;
  width: 100%;
  height: 50px;
  display: flex;
  align-items: center;
  color: rgb(255,255,255,0.7);
  border-top: solid 1px rgb(42,102,157,0.5);
  text-shadow: 0px 0px 0px rgba(30,30,30,0.8);
}

.left-bar-nav-item:last-child {
  border-bottom: solid 1px rgb(42,102,157,0.5);
}

.left-bar-nav-item:hover {
  color: rgb(255,255,255,1);
  border-top: solid 1px rgb(42,102,157,0.5);
  background-color: rgb(42,102,157,0.5);
  text-shadow: 0px 0px 10px rgba(30,30,30,0.8);
}

.left-bar-nav-item:last-child:hover {
  border-bottom: solid 1px rgb(42,102,157,0.5);
}

.left-bar-nav-item.selected {
  color: rgb(255,255,255,1) !important;
  border-top: solid 1px rgb(42,102,157) !important;
  background-color: rgb(42,102,157) !important;
  text-shadow: 0px 0px 10px rgba(30,30,30,0.8);
}

.left-bar-nav-item.selected:last-child {
  border-bottom: solid 1px rgb(42,102,157) !important;
}

.body-section {
  position: absolute;
  top: 50px;
  left: 200px;
  right: 0px;
  bottom: 0px;
  background-color: rgb(229,234,238);
}

.body-section-header {
  position: absolute;
  z-index: 5;
  top: 0px;
  left: 0px;
  right: 0px;
  height: 50px;
  background-color: rgb(229,234,238);
  border-bottom: solid 1px rgb(60,60,60,0.2);
  display: flex;
  align-items: center;
  padding: 0px 16px;
}

.header-bar-item {
  font-family: 'Albert Sans', sans-serif;
  position: relative;
  padding: 4px 8px;
  text-transform: capitalize;
  font-size: 12px;
  font-weight: 500;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  color: rgb(60,60,60,0.5);
}

.header-bar-item:not(:last-child) {
  margin-right: 8px;
}

.header-bar-item:hover {
  color: rgb(100,100,100);
}

.header-bar-item.selected {
  color: rgb(60,60,60) !important;
}

.header-bar-item > .highlighter {
  position: absolute;
  bottom: -6px;
  height: 6px;
  background-color: rgb(200,200,200);
  border-radius: 5px;
  width: calc(100% - 16px);
  opacity: 0;
  transition: all 0.25s;
}

.header-bar-item.selected > .highlighter {
  opacity: 1;
  bottom: -3px;
  height: 6px;
  width: calc(100% - 16px);
  background-color: rgb(0,126,255) !important;
}

.header-bar-item:hover > .highlighter {
  opacity: 1;
  bottom: -3px;
  height: 6px;
  width: calc(100% - 16px);
  background-color: rgb(200,200,200);
  transition: all 0.25s;
}

.header-bar-item.addition {
  padding-right: 16px;
}

.header-bar-item.addition > i {
  margin-right: 6px;
  font-size: 9px;
}

.header-bar-item-spacer {
  flex-grow: 1;
}

.body-section-container {
  position: absolute;
  top: 50px;
  left: 0px;
  right: 0px;
  bottom: 0px;
  padding: 0px;
  display: flex;
}

.body-item {
  position: relative;
  width: 100%;
  background-color: rgb(250,250,250);
  border-radius: 0px;
  border: solid 1px rgb(210,210,210);
  box-shadow: 0px 0px 16px rgba(20,20,20,0.05);
  overflow: scroll;
}

.new-moment-popup {
  position: absolute;
  z-index: 2;
  top: 0px;
  left: 0px;
  right: 0px;
  bottom: 0px;
  padding: 8px 24px;
  padding-left: 24px;
  overflow: scroll;
  background-color: rgb(255,255,255,0.2);
  backdrop-filter: blur(0px);
  -webkit-backdrop-filter: blur(0px);
  transform: translateY(-100%);
  transition: all 0.25s;
}

.new-moment-popup.active {
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  background-color: rgb(255,255,255,1);
  transform: translateY(0%);
  transition: all 0.25s;
}

.new-moment-popup > div:first-child {
  padding-top: 0px;
}

.new-moment-popup > div {
  padding: 0px 0px;
}

.new-moment-popup > div:last-child {
  padding: 0px 0px;
}

.moment-helper {
  padding: 6px !important;
  border-radius: 6px;
  color: rgb(240,240,240);
}

.written-moment-textarea {
  padding: 0px;
  width: 100%;
  resize: none;
  height: 150px;
  margin-top: 8px;
  border: none;
  outline: none;
  box-shadow: none;
  background-color: rgb(240,240,240,0);
  border-radius: 3px;
}

.entry-search-container {
  display: flex;
  align-items: center;
}

.entry-search-container.searching > .spinner {
  color: rgb(153,153,153,1);
  margin-left: 0px;
  margin-right: 6px;
  max-width: 50%;
  transition: all 0.25s;
}

.entry-search-container > .spinner {
  margin-left: -7px;
  margin-right: 0px;
  color: rgb(153,153,153,0);
  max-width: 0%;
  transition: all 0.25s;
}

.entry-images-searchfield {
  padding: 0px;
  width: 100%;
  height: 40px;
  margin-top: 0px;
  border: none;
  outline: none;
  box-shadow: none;
  background-color: rgb(240,240,240,0);
  border-radius: 3px;
}

.youtube-video-result {
  margin-top: 8px;
}

.youtube-video-result-title {
  display: flex;
  width: 100%;
  height: 30px;
  padding: 0px 8px;
  padding-right: 0px;
  overflow: hidden;
}

.youtube-video-result-title > input {
  width: 100%;
  border: none;
  box-shadow: none;
  outline: none;
  padding: 0px;
  margin-top: -14px;
  font-weight: 600;
  font-size: 15px;
}

.youtube-image-decription-container {
  display: flex;
}

.youtube-video-result-image {
  position: relative;
  overflow: hidden;
}

.youtube-video-result-image > img {
  margin-top: -26px;
  margin-bottom: -26px;
}

.youtube-video-result-image > .youtube-image-overlay {
  position: absolute;
  top: 0px;
  left: 0px;
  right: 0px;
  bottom: 0px;
}

.youtube-video-runtime-container {
  position: absolute;
  top: 0px;
  left: 0px;
  right: 0px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  height: 30px;
  font-weight: 500;
  font-size: 11px;
}

.youtube-video-runtime-container > span {
  padding: 0px 5px;
  border-radius: 3px;
  background-color: rgb(20,20,20,0.7);
  color: rgb(240,240,240);
}

.youtube-video-result-title-desc-container {
  flex-grow: 1;
}

.youtube-video-result-description {
  flex-grow: 1;
  padding: 0px 8px;
  padding-right: 0px;
  height: calc(100% - 40px);
  margin-top: -10px;
}

.youtube-video-result-description > textarea {
  width: 100%;
  height: calc(100% + 20px);
  resize: none;
  padding: 0px;
  border: none;
  outline: none;
  box-shadow: none;
  font-weight: 400;
  font-size: 14px;
}

.youtube-result-buttons {
  display: flex;
  margin-top: 4px;
}

.save-video-button {
  cursor: pointer;
  padding: 3px 6px;
  border-radius: 3px;
  font-size: 14px;
  font-weight: 500;
  color: rgb(255,255,255);
  box-shadow: 0px 0px 14px 5px rgb(0,0,0,0);
  background-color: rgba(6,136,255,1) !important;
  transform: scale(1);
  transition: all 0.5s;
}

.save-video-button:hover {
  box-shadow: 0px 0px 14px 5px rgb(0,0,0,0.25);
  transform: scale(1.05);
  transition: all 0.5s;
}

body.locked > .content-overlay {
  display: flex;
}

.content-overlay {
  display: none;
  position: absolute;
  top: 0px;
  left: 0px;
  right: 0px;
  bottom: 0px;
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  z-index: 9;
  background-color: rgb(20,20,20,0.8);
  align-items: center;
  justify-content: center;
}

.content-overlay > div {
  max-width: 300px;
  text-align: center;
  color: rgb(240,240,240);
  padding: 8px;
  border-radius: 6px;
  background-color: rgb(20,20,20,0.3);
  text-shadow: 0px 0px 6px rgb(0,0,0,0.3);
}

.unauthorized-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
}

.unauthorized-buttons > div {
  cursor: pointer;
  flex-grow: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4px 6px;
  width: 100%;
  border-radius: 3px;
  font-size: 14px;
  font-weight: 500;
}

.unauth-back-button {
  margin-right: 3px;
  background-color: rgb(255,255,255,0.3);
  color: rgb(20,20,20,0.3);
  cursor: pointer;
  transform: scale(1);
  box-shadow: 0px 0px 10px rgb(0,0,0,0);
  transition: all 0.25s;
}

.unauth-back-button:hover {
  background-color: rgb(255,255,255,1);
  color: rgb(20,20,20,1);
  transform: scale(1.025);
  box-shadow: 0px 0px 10px rgb(0,0,0,0.3);
  transition: all 0.25s;
}

.unauth-request-button {
  margin-left: 3px;
  background-color: rgb(15,123,222,0.3);
  color: rgb(255,255,255,0.5);
  cursor: pointer;
  transform: scale(1);
  box-shadow: 0px 0px 10px rgb(0,0,0,0);
  transition: all 0.25s;
}

.unauth-request-button:hover {
  background-color: rgb(15,123,222,1);
  color: rgb(255,255,255,1);
  transform: scale(1.025);
  box-shadow: 0px 0px 10px rgb(0,0,0,0.3);
  transition: all 0.25s;
}

.moment-card-container {
  display: flex;
  padding: 12px;
  flex-wrap: wrap;
}

.moment-card {
  cursor: pointer;
  background-color: rgb(39,67,95);
  padding: 8px;
  border-radius: 3px;
  width: calc((100% / 4) - 9px);
  margin-bottom: 12px;
  font-size: 15px;
  font-weight: 600;
  color: rgb(250,250,250);
  transform: scale(1);
  box-shadow: 0px 0px 10px 1px rgba(88,88,88,0);
  transition: all 0.25s;
}

.moment-card:nth-child(1) {
  margin-right: 12px;
}

.moment-card:nth-child(2) {
  margin-right: 12px;
}

.moment-card:nth-child(3) {
  margin-right: 12px;
}

.moment-card > div {
  height: 75px;
  margin-left: -8px;
  margin-right: -8px;
  margin-bottom: -8px;
  margin-top: 6px;
  background-color: rgba(255,255,255,0.12);
  display: flex;
  align-items: center;
  padding: 8px;
  font-size: 36px;
  text-shadow: 0px 0px 7px rgb(18,53,78,0);
  color: rgb(250,250,250,0.5);
  transition: all 0.25s;
}

.moment-card:hover {
  background-color: rgb(42,102,157);
  transform: scale(1.01);
  box-shadow: 0px 0px 10px 1px rgba(88,88,88,0.9);
  transition: all 0.5s;
}

.moment-card:hover > div {
  text-shadow: 0px 0px 7px rgb(18,53,78);
  color: rgb(250,250,250,1);
  transition: all 0.25s;
}

.admin-user {
  display: flex;
  padding: 4px 16px;
  background-color: rgb(39,67,95,0);
  border-bottom: solid 1px rgb(39,67,95,0.1);
  color: rgb(20,20,20,0.4);
  align-items: center;
  justify-content: space-between;
}

.admin-user:hover {
  background-color: rgb(39,67,95,0);
  border-bottom: solid 1px rgb(39,67,95,0.25);
  color: rgb(20,20,20,0.7);
}

.admin-name {
  padding: 2px 6px;
  font-weight: 600;
  font-size: 14px;
  background-color: rgb(41,102,157,0);
  border-radius: 3px;
  cursor: pointer;
}

.admin-name:hover {
  color: rgb(250,250,250);
  background-color: rgb(41,102,157,1);
}

.admin-edit {
  padding: 2px 6px;
  font-weight: 600;
  font-size: 14px;
  background-color: rgb(41,102,157,0);
  border-radius: 3px;
  cursor: pointer;
}

.admin-edit:hover {
  color: rgb(250,250,250);
  background-color: rgb(41,102,157,1);
}

.admin-users {
  padding: 8px 0px;
}

.admin-creation {
  padding: 8px 24px;
}

.admin-creation > div {
  display: flex;
  margin-bottom: 6px;
}

.admin-creation > div:first-child {
  padding-bottom: 0px;
  margin-bottom: 0px;
}

.admin-name-section {
  display: flex;
}

.admin-name-section > input {
  width: calc(25% + 0px);
  border: none;
  box-shadow: none;
  outline: none;
  height: 40px;
  background-color: rgb(0,0,0,0);
}

.admin-name-section > input:first-child {
  margin-right: 6px;
}

.admin-email-section > input {
  width: calc(50% + 6px);
  height: 40px;
  border: none;
  box-shadow: none;
  outline: none;
  background-color: rgb(0,0,0,0);
}

.admin-mobile-section > input {
  width: calc(50% + 6px);
  height: 40px;
  border: none;
  box-shadow: none;
  outline: none;
  background-color: rgb(0,0,0,0);
}

.admin-password-section > input {
  width: calc(25% + 0px);
  height: 40px;
  border: none;
  box-shadow: none;
  outline: none;
  background-color: rgb(0,0,0,0);
}

.admin-password-section > input:first-child {
  margin-right: 6px;
}

.admin-save-buttons {
  display: flex;
  margin-top: 4px;
}

.admin-create-button {
  cursor: pointer;
  padding: 6px 8px;
  border-radius: 3px;
  font-size: 14px;
  font-weight: 500;
  color: rgb(255,255,255);
  box-shadow: 0px 0px 14px 5px rgb(0,0,0,0);
  background-color: rgba(6,136,255,1) !important;
  transform: scale(1);
  transition: all 0.5s;
}

.admin-create-button:hover {
  box-shadow: 0px 0px 14px 5px rgb(0,0,0,0.25);
  transform: scale(1.05);
  transition: all 0.5s;
}

.admin-profile-container {
  display: flex;
}

.admin-profile-container > div {
  width: 50%;
}

.admin-profile-container > div:first-child {
  margin-right: 4px;
}

.admin-profile-container > div:last-child {
  margin-left: 4px;
}

.admin-profile-field > input {
  border: none;
  box-shadow: none;
  outline: none;
  margin-bottom: 6px;
  padding: 6px 0px;
  width: 100%;
  background-color: rgb(0,0,0,0);
}

.admin-permission-field {
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.admin-create-button:first-child {
  margin-right: 6px;
}

.toggle-buttons {
  background-color: rgb(39,67,95);
  display: flex;
  padding: 2px 2px;
  color: rgb(250,250,250,0.5);
  font-size: 14px;
  font-weight: 600;
  border-radius: 4px;
}

.toggle-buttons > div {
  padding: 2px 6px;
  cursor: pointer;
}

.toggle-buttons > div:hover {
  color: rgb(250,250,250,0.8);
  background-color: rgb(42,102,157,0.4);
}

.toggle-buttons > div:first-child {
  border-top-left-radius: 3px;
  border-bottom-left-radius: 3px;
}

.toggle-buttons > div:last-child {
  border-top-right-radius: 3px;
  border-bottom-right-radius: 3px;
}

.admin-permission-field.enabled > .toggle-buttons > div:first-child {
  background-color: rgb(190,12,12);
  color: rgb(250,250,250,1);
  cursor: default;
  transition: all 0.25s;
}

.admin-permission-field.enabled > .toggle-buttons > div:last-child {
  background-color: rgb(42,102,157,0) !important;
  color: rgb(250,250,250,0.5) !important;
  cursor: pointer !important;
  transition: all 0.25s;
}

.admin-permission-field > .toggle-buttons > div:last-child {
  background-color: rgb(34,211,62) !important;
  color: rgb(250,250,250,1) !important;
  cursor: default !important;
  transition: all 0.25s;
}

.admin-permission-field > .toggle-buttons > div:first-child {
  background-color: rgb(42,102,157,0);
  color: rgb(250,250,250,0.5);
  cursor: pointer;
  transition: all 0.25s;
}

.new-task-items-container {
  display: flex;
  flex-wrap: wrap;
}

.new-task-items-container > div {
  width: 100%;
  display: flex;
}

.new-task-items-container > div > input {
  flex-grow: 1;
  width: 100%;
  height: 40px;
  border: none;
  border-left: solid 1px rgb(200,200,200);
  border-top: solid 1px rgb(200,200,200);
  border-top-left-radius: 6px;
  padding: 6px;
  outline: none;
  box-shadow: none;
}

.new-task-items-container > div > select:nth-child(2) {
  flex-grow: 1;
  padding: 6px;
  border: none;
  border-right: solid 1px rgb(200,200,200);
  border-left: solid 1px rgb(200,200,200);
  border-top: solid 1px rgb(200,200,200);
  outline: none;
  box-shadow: none;
  background-color: rgb(255,255,255,0);
  cursor: pointer;
}

.new-task-items-container > div > select:last-child {
  flex-grow: 1;
  padding: 6px;
  border: none;
  border-right: solid 1px rgb(200,200,200);
  border-top: solid 1px rgb(200,200,200);
  border-top-right-radius: 6px;
  outline: none;
  box-shadow: none;
  background-color: rgb(255,255,255,0);
  cursor: pointer;
}

.new-task-items-container > div > textarea {
  width: 100%;
  height: 200px;
  border: none;
  border-top: solid 1px rgb(200,200,200);
  border-left: solid 1px rgb(200,200,200);
  border-bottom: solid 1px rgb(200,200,200);
  border-right: solid 1px rgb(200,200,200);
  border-bottom-left-radius: 6px;
  border-bottom-right-radius: 6px;
  padding: 6px;
  resize: none;
  outline: none;
  box-shadow: none;
}

.task-assignment-container {
  height: 40px;
  display: flex;
  align-items: center;
  width: 50%;
}

.task-assignment-container > div {
  width: 100%;
}

.task-assignment-container > div > select {
  width: 100%;
  height: 40px;
  font-weight: 600;
  border: none;
  background-color: rgb(240,240,240);
  border-radius: 6px;
  padding: 6px;
}

.task-item {
  position: relative;
  display: flex;
  align-items: center;
  padding: 4px 20px;
  border-bottom: solid 1px rgb(200,200,200);
  background-color: rgb(255,255,255,0);
  cursor: pointer;
  transition: background-color 0.25s;
}

.task-item:hover {
  background-color: rgb(230,230,230);
  transition: background-color 0.25s;
}

.task-item.normal:hover {
  background-color: rgb(230,230,230);
  transition: background-color 0.25s;
}

.task-item.quality:hover {
  background-color: rgb(195,222,255);
  transition: background-color 0.25s;
}

.task-item.bug:hover {
  background-color: rgb(198,198,198);
  transition: background-color 0.25s;
}

.task-item.urgent:hover {
  background-color: rgb(255,206,206);
  transition: background-color 0.25s;
}

.task-priority {
  display: flex;
  padding: 0px 0px;
  padding-right: 0px;
  min-width: 75px;
  max-width: 75px;
}

.task-priority > div {
  text-transform: uppercase;
  display: flex;
  padding: 2px 6px;
  border-radius: 3px;
  font-size: 10px;
  font-weight: 800;
  color: rgb(20,20,20);
  background-color: rgb(224,224,224);
  border: solid 1px rgb(200,200,200);
}

.task-item.normal > .task-priority > div {
  color: rgb(20,20,20);
  background-color: rgb(224,224,224);
  border: solid 1px rgb(200,200,200);
}

.task-item.urgent > .task-priority > div {
  color: rgb(255,255,255);
  background-color: rgb(255,81,81);
  border: solid 1px rgb(136,24,24);
}

.task-item.quality > .task-priority > div {
  color: rgb(255,255,255);
  background-color: rgb(66,153,255);
  border: solid 1px rgb(53,110,255);
}

.task-item.bug > .task-priority > div {
  color: rgb(255,255,255);
  background-color: rgb(60,60,60);
  border: solid 1px rgb(20,20,20);
}

.task-title {
  padding: 6px 6px;
  flex-grow: 1;
  font-size: 14px;
}

.task-assignment {
  padding: 2px 6px;
  font-size: 12px;
  font-weight: 700;
  margin-top: 14px;
}

.task-update {
  position: absolute;
  right: 25px;
  top: 6px;
  font-size: 10px;
  font-weight: 700;
  color: rgb(100,100,100);
}

.user-registration {
  position: absolute;
  left: 25px;
  top: 6px;
  font-size: 10px;
  font-weight: 700;
  color: rgb(100,100,100);
}

.user-post-status {
  padding: 6px 6px;
  flex-grow: 1;
  font-size: 14px;
  margin-left: 12px;
}

.email-sidebar {
  position: absolute;
  left: 0px;
  top: 0px;
  width: 250px;
  bottom: 0px;
  overflow: scroll;
  border-right: solid 1px rgb(200,200,200);
}

.email-subject-item {
  padding: 6px;
  border-bottom: solid 1px rgb(200,200,200);
  font-size: 14px;
  font-weight: 500;
}

.email-subject-item:hover {
  background-color: rgb(230,230,230);
}

.email-body {
  position: absolute;
  top: 0px;
  left: 250px;
  right: 0px;
  bottom: 0px;
  overflow: scroll;
}

.email-body > iframe {
  position: absolute;
  top: 0px;
  left: 0px;
  right: 0px;
  bottom: 0px;
  overflow: scroll;
}

.email-frame {
}

.view-task {
  display: none;
  position: absolute;
  top: 0px;
  left: 0px;
  right: 0px;
  bottom: 0px;
  background-color: rgb(250,250,250);
  padding: 8px 22px;
}

.view-task.opened {
  display: flex;
}

.view-task-meta {
  margin-right: 8px;
  min-width: 35%;
  max-width: 35%;
  overflow: scroll;
  border-radius: 6px;
}

.view-task-details {
  flex-grow: 1;
  max-height: 100%;
  overflow: scroll;
}

.view-task-title {
  background-color: rgb(250,250,250);
}

.task-title-heading {
  color: rgb(41,102,157);
}

.view-task-description-container {
  overflow: scroll;
  background-color: rgb(240,240,240);
  padding: 6px;
  border-radius: 6px;
}

.view-task-description {
  max-height: 250px;
  font-size: 14px;
  font-weight: 500;
}

.view-task-comments-container {
  margin-top: 6px;
  overflow: scroll;
  background-color: rgb(240,240,240);
  padding: 6px;
  padding-bottom: 0px;
  border-radius: 6px;
}

.view-task-comments-container > textarea {
  width: 100%;
  padding: 0px;
  background-color: rgb(255,255,255,0);
  border: none;
  box-shadow: none;
  outline: none;
  height: 100px;
  resize: none;
  font-size: 14px;
  font-weight: 600;
}

.flex-filler {
  width: 100%;
  flex-grow: 1;
  height: 5%;
}

.close-task-button {
  cursor: pointer;
  padding: 3px 6px;
  border-radius: 3px;
  font-size: 14px;
  font-weight: 500;
  color: rgb(80,80,80);
  box-shadow: 0px 0px 14px 5px rgb(0,0,0,0);
  background-color: rgba(240,240,240);
  transform: scale(1);
  transition: all 0.5s;
}

.close-task-button:hover {
  box-shadow: 0px 0px 14px 5px rgb(0,0,0,0);
  transform: scale(1);
  background-color: rgb(230,230,230);
  transition: all 0.5s;
}

.delete-task-button {
  margin-right: 6px;
  cursor: pointer;
  padding: 3px 6px;
  border-radius: 3px;
  font-size: 14px;
  font-weight: 500;
  color: rgb(255,255,255);
  background-color: rgb(255,81,81);
  border: solid 1px rgb(136,24,24);
  transform: scale(1);
  transition: all 0.5s;
}

.delete-task-button:hover {
  color: rgb(255,255,255);
  background-color: rgb(255,81,81);
  border: solid 1px rgb(136,24,24);
  transform: scale(1);
  transition: all 0.5s;
}

.complete-task-button {
  margin-right: 6px;
  cursor: pointer;
  padding: 3px 6px;
  border-radius: 3px;
  font-size: 14px;
  font-weight: 500;
  color: rgb(255,255,255);
  background-color: rgb(255,81,81);
  border: solid 1px rgb(136,24,24);
  transform: scale(1);
  transition: all 0.5s;
}

.complete-task-button:hover {
  color: rgb(255,255,255);
  background-color: rgb(255,81,81);
  border: solid 1px rgb(136,24,24);
  transform: scale(1);
  transition: all 0.5s;
}

.public-feed-items {
  padding: 8px 16px;
  display: flex;
  flex-wrap: wrap;
  padding-top: 2px;
}

.entry-item {
  position: relative;
  height: 130px;
  width: 23%;
  flex-grow: 1;
  overflow: hidden;
  border-radius: 6px;
  margin-left: 3px;
  margin-right: 3px;
  margin-top: 6px;
  box-shadow: 0px 0px 7px rgb(35,37,38,0);
  opacity: 1;
  cursor: pointer;
  transform: scale(1);
  filter: grayscale(75%) contrast(50%);
  transition: all 0.25s;
}

.entry-item:hover {
  box-shadow: 0px 0px 7px rgb(35,37,38,0.6);
  opacity: 1;
  filter: grayscale(0%) contrast(100%);
  transform: scale(1.01);
  transition: all 0.25s;
}

.entry-title-bar {
  display: flex;
  height: 30px;
}

.entry-title-bar > div {
  padding: 3px;
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
  text-shadow: 0px 0px 4px rgb(0,0,0);
  color: rgb(255,255,255);
  font-weight: 500;
}

.entry-item-preview {
  position: absolute;
  top: 40px;
  left: 15px;
  right: 15px;
  bottom: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  color: rgb(255,255,255);
  text-shadow: 0px 0px 4px rgb(0,0,0);
}

.entry-item-preview > span {
  text-align: center;
}

.entry-item-overlay {
  position: absolute;
  top: 0px;
  left: 0px;
  right: 0px;
  bottom: 0px;
}

