#view-todo-selector-container{
  display: flex;
  justify-content: space-between;
  flex: 1;
  margin-right: 10px;
}
#view-todo-selector-container>#leading-container{
  display: flex;
  align-items: start;
}
#view-label{
  color:#919196;
  margin-right: 15px;
  padding-top: 5px;
}
.display-row{
  display: flex;
  height: 100%;
}
.view-mode-button-container{
  padding-bottom: 2px;
  margin-right: 10px;
  cursor: pointer;
}

.view-mode-button-container.active{
  border-bottom: 5px solid var(--active-primary-button-background);
}
.view-mode-button-container.active > .view-mode-button{
  background-color: var(--active-primary-button-background);
}
.view-mode-button-container:hover > .view-mode-button{
  background-color: var(--hover-primary-button-background);
}
.view-mode-button-container:hover>.view-type{
  color: var(--hover-primary-button-background);
}
.view-type{
  padding-top: 2px;
}
.view-mode-button-container.active > .view-type{
  color: var(--active-primary-button-background);
}
.view-mode-button{
  width: 28px;
  height: 28px;
  background-color: var(--normal-button-color);
}
.view-mode-button-container.active.view-mode-button{
  background-color: white;
}
.view-mode-button.list-mode{
  -webkit-mask: url(/app/common/img/taskItemIcon/view-mode-list.svg) no-repeat 50% 50%;
  -webkit-mask-size: contain;
  background-repeat: no-repeat;
}
.view-mode-button.kanban-mode {
  -webkit-mask: url(/app/common/img/taskItemIcon/view-mode-kanban.svg) no-repeat 50% 50%;
  -webkit-mask-size: contain;
  background-repeat: no-repeat;
}
.view-mode-button.gantt-mode {
  -webkit-mask: url(../../common/img/taskItemIcon/view-mode-gantt.svg) no-repeat 50% 50%;
  -webkit-mask-size: contain;
  background-repeat: no-repeat;
}