.sidebar{
  position: fixed;
  width:25%;
  left:75%;
  height:100%;
  background-color: rgba(0,0,0,.4);
  top:0px;
  transition: left ease-out .3s;
	z-index: 2;
  opacity: .85;
}

.tabHolder{
  width: 25px;
  height: 40%;
  margin-left: 5px;
  margin-top: 60px;
  position: relative;
	display: flex;
	flex-direction: column;
  overflow: hidden;
}

.tabContents{
  width: calc(95% - 30px);
  height: 95%;
  top: 80px;
  left: 30px;
  position: absolute;
  overflow: hidden;
}

.bottom + div + div + script + .sidebar .tabContents{
  top: 40px;
}

.collapseBtn{
  background-color: #95BAA4;
  position: absolute;
  top: calc(50% - 50px);
  width: 12px;;
  height: 50px;
  background: transparent url(../res/collapse.svg) no-repeat;
  background-size: 12px 50px;
	margin-left: 2px;
	cursor: pointer;

}

.btnCollapsed{
	margin-left: 4px;
  background: transparent url(../res/expand.svg) no-repeat;
  background-size: 12px 50px;
}

.tab{
  position:relative;
  width:100%;
  height: 100%;
  background-color: rgba(255,255,255,.2);
  padding-left:10px;
}

.tabDisplay{
  font-family: Lato-Light;
  margin-top: 29px;
  padding:3px 7px;
  background-color: rgba(255,255,255,.2);
  color: rgba(0,0,0,.5);
  transform: rotate(-90deg);
  cursor: pointer;
	height: 25px;
	transform-origin: bottom;
	box-sizing: border-box;
	display: block;
	width: 50px;
}

.tabDisplay:first-child{
  margin-top: 0px;
}

.tab.activeTab, .tabDisplay.activeTab{
  background-color: rgba(255,255,255,.5);
}
.collapsed .tabDisplay{
  margin-left: 20px;
}

.tabSideName{
	font-size: 12px;
}

.sidebar.collapsed{
  width: 22px;
  left: calc(100% - 22px);
  transition: all ease-out .3s;

}

/* ================ LOGIN ================ */
.loginField{
  width:98%;
  font-family: "Lato-Light";
  border: 1px solid #FFF;
  font-size: 14pt;
}

.loginLabel{
  font-family: "Lato-Light";
  color: rgba(0,0,0,.5);
  font-size: 1.1em;
  overflow: hidden;
  white-space: nowrap;
}

.loginCollapsed.loginHolder{
  margin-left:30px;
  margin-right:0px;
  transition: margin ease-out .3s;
}

.loginHolder{
  margin-left:2%;
  margin-right:2%;
  transition: margin ease-out .3s;
}

/* ================ TAGS ===============*/
.TagEditorContainer{
  font-family: Lato-Light;
}

.TagEditorName{
  display:inline-block;
  margin-right: 5px;
  font-size: .7em;
}

.ColorPicker{
  width: 1.4em;
  height: 1.4em;
  border:1px solid rgba(0,0,0,0);
}

.chkboxContainer input[type="checkbox"]{
	position: relative;
	top:0;
}

input[type="checkbox"] + div{
	display: inline-block;
}

.tagDelete{
  background-image: url("../img/ex.png");
  background-repeat: no-repeat;
  background-size: 12px 12px;
  background-position: 2px 2px;
  height: 16px;
  width: 16px;
  opacity: .3;
}

.tagDelete:hover{
  cursor: pointer;
  opacity: 1;
}

.sidebar table td:first-child{
  width: 5%;
}

.sidebar table td:last-child{
  width: 15%;
}

.sidebar table td:nth-child(2){
  width: 80%;
}

.sidebar .editable{
  margin-top: 2px;
  background-color: transparent;
  border: 0px solid transparent;
  background-image: url("../img/editTransparent.png");
  background-size: 14px 14px;
  background-position-x: calc(100% - 12px);
  background-position-y: 2px;
  background-repeat: no-repeat;
}

.sidebar .editable:hover{
  background-image: url("../img/edit.png");
  cursor: pointer;
}

/* ================= FILTERS ===================== */
.sidebar .headers, .sidebar .priorities, .sidebar .dates {
  font-family: "Lato-Light";
}

.sidebar .headers table td{
  width: 50%;
}

.sidebar .headers:before, .sidebar .priorities:before, .sidebar .dates:before{
  content: "HEADERS";
  font-size: 24px;
  font-weight: bold;
  opacity: .5;
  display: block;
}

.sidebar .priorities:before{
  content: "PRIORITIES";
  margin-top: 15px;
}

.sidebar .dates:before {
  content: "DATES";
  margin-top: 15px;
}

.sidebar .priRange, .sidebar .priorityLbl{
  width: 47%;
  margin-left: 1%;
  margin-right: 1%;
  display: inline-block;
}

.sidebar .priRange{
  margin-left: 0;
}

.sidebar .priorityLbl{
  margin-right: 0;
}

/* ================= DATE FILTERS ===================*/
.sidebar .dates table td:nth-child(2){
  width: 60%;
}

.sidebar .dates table td:nth-child(3){
  width: 35%;
}

.sidebar .dates table:nth-child(2) td:first-child{
  width: 63px;
}

.sidebar .dates table:nth-child(2) td:last-child{
  width: auto;
}

.sidebar .dates table:nth-child(2){
  margin-top: 10px;
}