
#watchList {
	position: fixed;
	width: 65px;
	right: 0;
	top: 0;
	background: white;
	z-index: 1;
	transition: top 1s ease;
}

@media (max-width: 1024px) {
	#watchList {
		left: auto;
		width: auto;
	}
}


#watchListToggle {
	display: none;
	width: 100px;
	top: 100px;
	z-index: 1;
	position: absolute;
	color: white;
	padding-top: 3px;
	transform: rotate(90deg);
	height: 30px;
	background: #ee7000;
	border-radius: 0 0 5px 5px;
	font-size: 16px;
	text-align: center;
	cursor: pointer;
	right: -35px;
	transition: right .5s ease;
}

#watchListToggle.show {
	display: block;
}

#watchList .listWrapper {
	position: absolute;
	top: 65px;
	min-height: 100px;
	right: -300px;
	width: 300px;
	background: white;
	transition: right 0.5s ease;
}

#watchList.toSmall .listWrapper {
	overflow-y: scroll;
}

#watchList.watchListOpen .listWrapper {
	right: 0;
}

#watchList.watchListOpen #watchListToggle {
	right: 265px;
}


#watchList .list {
	list-style: none;
	padding-left: 10px;
	margin: 0;
	height: auto;
	transition: height 1s ease;
	overflow: hidden;
}

#watchList .list li {
	font-size: 16px;
	padding: 5px;
	border-top: 2px solid #333;
}

#watchList .list li:first-child {
	border-top: none;
}

#watchList .list li a{
	font-size: 16px;
	color: #000;
}

#watchList .list li span {
	padding-left: 5px;
	font-size: 9px;
}

#watchList .list li span:hover {
	cursor: pointer;
}

#watchList .watchListTitle {
	font-weight: bold;
	display: inline-block;
}

#watchList .watchListSystemDescription {
	font-size: 14px;
	padding-left: 5px;
}

div.sandwichElement .printContainer button.printLink {
	background: url(../images/task-list-star.svg) 95% center no-repeat;
	background-size: 22px;
}

.printContainer {
	margin-top: 20px;
}

#watchListToggle.pulse {
	animation: pulse 2s infinite;
}

@media (max-width: 530px) {
	#addToWatchList {
		width: auto;
		height: auto;
	}
}

@-webkit-keyframes pulse {
	0% {
		-webkit-box-shadow: 0 0 0 0 rgba(204,169,44, 0.4);
	}
	70% {
		-webkit-box-shadow: 0 0 0 10px rgba(204,169,44, 0);
	}
	100% {
		-webkit-box-shadow: 0 0 0 0 rgba(204,169,44, 0);
	}
}
@keyframes pulse {
	0% {
		-moz-box-shadow: 0 0 0 0 rgba(204,169,44, 0.4);
		box-shadow: 0 0 0 0 rgba(204,169,44, 0.4);
	}
	70% {
		-moz-box-shadow: 0 0 0 10px rgba(204,169,44, 0);
		box-shadow: 0 0 0 10px rgba(204,169,44, 0);
	}
	100% {
		-moz-box-shadow: 0 0 0 0 rgba(204,169,44, 0);
		box-shadow: 0 0 0 0 rgba(204,169,44, 0);
	}
}


