.barra-lateral {
    position: fixed;
    top: 50%;
    right: 0px;
    transform: translateY(-50%);
	z-index: 999;
}

.barra-lateral ul {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
}

.barra-lateral ul li {
    margin-bottom: 10px;
	box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 16px;
}

.barra-lateral ul li img{
	padding: 7px;
}

.barra-lateral ul li a {
	display: inline-block;
    width: 55px;
    height: 55px;
    background-color: var(--color-empresa);
    color: #fff;
    text-align: center;
    line-height: 40px;
    border-radius: 2px 0px 0px 2px;
    transition: background-color 0.3s ease;
    text-decoration: none;
}

.barra-lateral ul li a:hover {
    background-color: var(--color-empresa);
}

@media (min-width: 281px) and (max-width: 867px) {
	.barra-lateral {
		top: 75%;
	}

	.barra-lateral ul li {
		margin-bottom: 5px;
		box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 16px;
	}

	.barra-lateral ul li a {
		display: inline-block;
		width: 39px;
    	height: 39px;
		background-color: var(--color-empresa);
		color: #fff;
		text-align: center;
		line-height: 40px;
		border-radius: 2px 0px 0px 2px;
		transition: background-color 0.3s ease;
		text-decoration: none;
	}
}