.vliziconbar {
	z-index: 500;
	position: fixed;
	left: 14px;
	top: 35%;
}

.vliziconbar .iconbaritem {
	display: flex;
	align-items: center;
}

.vliziconbar a:hover img{
  scale: 1.1;
  transition: linear;
}

.vliziconbar .tooltiptext {
    visibility: hidden;
    background-color: rgba(0,0,0,0.77);
    color: #fff;
    text-align: center;
    border-radius: 6px;
    padding: 5px;
    z-index: 1;
    font-size: 0.75rem;
    display: block;
    flex-grow: 0;
    transition-delay: 200ms;
    margin-left: 7px;
    position: absolute;
    text-wrap-mode: nowrap;
    left: 52px;
    font-weight: bold;
}

.vliziconbar .iconbaritem:hover .tooltiptext {
  visibility: visible;
}


@media screen and (max-width: 960px) {
	.vliziconbar {
		left: 0px;
		top:initial;
		bottom:0px;
	}

	.vliziconbar .iconbaritem {
		display: inline-block;
		max-width: 40px;
	}

	.vliziconbar img {
		max-width: 40px;
	}

	.vliziconbar .tooltiptext {
		display: none !important;
		width: 0 !important;
	}

}

/*link to management is shown when entire bar is hovered over*/
.vliziconbar .button {
	display:none;
}

.vliziconbar:hover .button {
	display:block;
}