html,
canvas,
body,
#react-container,
#routeContainer {
  font-family: Helvetica, Arial, sans-serif;
  height: 100%;
  margin: 0;
}

html,body {
  -webkit-overflow-scrolling: touch;
}

html {
  box-sizing: border-box;
}
*,
*:before,
*:after {
  box-sizing: inherit;
}
.app-container {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  height: 100%;
}
.time-line-container {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  height: 100%;
}

.listt {
  width: 200px;
  height: 50%;
  border: solid 1px silver;
  border-radius: 10px;
  box-shadow: 2px 2px silver;
}
.itemRenderer {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  border-bottom: solid 1px silver;
  background-color: white;
  color: silver;
  width: 100%;
  padding: 5px;
}

.itemRendererSelected {
  background-color: rgb(219, 223, 230);
}

.itemRenderer:hover {
  background-color: rgb(219, 223, 230);
}
.itemImage {
  flex: 1 0 40px;
  border-radius: 30px;
  width: 40px;
}
.itemTitleContainer {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  width: 100%;
  padding: 4px;
}

.itemTitle {
  color: grey;
  font-size: 14px;
  align-self: center;
}
.itemContent {
  color: silver;
  font-size: 10px;
  align-self: center;
}

.nav-container {
  display: flex;
  flex-direction: row;
  width: 100%;
  background: -moz-linear-gradient(top, #eeeeee 0%, #cccccc 100%);
  background: -webkit-linear-gradient(top, #eeeeee 0%, #cccccc 100%); /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to bottom, #eeeeee 0%, #cccccc 100%);
  height: 50px;
  color: grey;
  align-items: center;
}

.mode-container {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: baseline;
  justify-self: flex-end;
  margin: 0px 20px;
}
.mode-container-title {
  margin: 0px 20px;
  flex: 1 1 auto;
  margin: 0px 20px;
  text-shadow: 0.5px 0.5px white;
  font-family: Helvetica, sans-serif;
  font-size: 22px;
  font-weight: bolder;
}

.mode-container-item {
  flex: 0 0 auto;
  width: 80px;
  padding: 5px;
  border: solid 1px silver;
  background-color: #333333;
  color: white;
  font-size: 12px;
  text-align: center;
  cursor: pointer;
}

.operation-button-container {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: baseline;
  justify-self: flex-end;
}

.mode-button {
  background-color: #333333;
  width: 30px;
  height: 30px;
  border-radius: 15px;
  margin: 0px 3px;
}

.mode-button:hover {
  background-color: rgb(202, 33, 212);
}

.mode-container-item-left {
  border-top-left-radius: 17px;
  border-bottom-left-radius: 17px;
}

.mode-container-item-right {
  border-top-right-radius: 17px;
  border-bottom-right-radius: 17px;
}

.mode-container-item-editable-toggle {
  margin-left: 20px;
  width: 150px;
}

.tasklist-wrapper {
  height: 66px;
  font-size: 12px;
}

.tasklist-table-header-component {
  display: flex;
  justify-content: space-between;
  padding: 0px 0px 0px 8px;
  border-bottom: 1px solid silver;
}

.sort-task-container {
  display: flex;
  align-items: center;
}

.footer-button-controller-container {
  display: flex;
  align-items: center;
}

.sort-caret-down {
  margin-left: -4px;
}

.sort-key-value {
  cursor: pointer;
  color: #378CE6;
  margin: 0px 0px 0px 4px;
}

.sort-trigger-button {
  cursor: pointer;
}

.sort-button-container {
  display: flex;
}

.add-task-button {
  margin: 6px 0px 6px 0px;
  padding: 3px 8px 3px 8px;
  cursor: pointer;
  background: #378CE6;
  color: white;
  border-radius: 5px;
  line-height: 18px;
  font-size: 12px;
  display:flex;
  align-items: center;
}

.setting-label {
  color: #50505A;
  padding: 0px 8px 0px 8px;
  border-left: 1px solid silver;
  margin-left: 8px;
  cursor: pointer;
}

.change-width-button {
  display: flex;
  align-items: center;
  background-color: #DCDCE6;
  padding: 0px 8px 0px 7px;
  cursor: pointer;
  border-left: 1px solid silver;
}

.table-field-header {
  color: white;
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid silver;
}

.free-space {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 23px;
  min-width: 28px;
  max-width: 28px;
  border-left: 1px solid silver;
}

.table-column-list {
  display: flex;
  flex: 1;
}

.gantt-table-column {
  flex: 1;
  color: #50505A;
  border-right: 1px solid silver;
  display: flex;
  justify-content: center;
  align-items: center;
  text-transform: uppercase;
}

.gantt-table-column:last-child {
  border-right: none;
}

.apply-time-button-container {
  display: flex;
  justify-content: flex-end;
}

.apply-time-button {
  padding: 2px 8px 2px 8px;
  margin-top: 4px;
  border: 1px solid silver;
  border-radius: 5px;
  cursor: pointer;
}

.inline-error {
  color: #C8172B;
}