
/*************************************************************************/
/* side-bar */


.side-bar-box span {
	font-size: 75%;
}
.side-bar-box i {
	font-size: 130%;
	padding-right: 12px;
}


/* Desktop */
@media only screen and (min-width: 970px) {
	.side-bar {
		position: fixed;
		z-index: 99;
		right: 0px;
		top: 50%;
		width: auto;
		transform: translateY(-50%);
		-webkit-transform: translateY(-50%);
	}

	.side-bar-box {
		height: auto;
		width: 60px;
		padding: 10px 20px;
		font-size: 90%;
		color: #000;
		margin-bottom: 5px;
		-webkit-transition: all 0.4s ease-in-out 0s;
		transition: all 0.4s ease-in-out 0s;
		margin-left: auto;
		background-color: #fff;
	}
	
	/*	 Text hidden */
	.side-bar-box span {
		transition: all .3s ease-in-out;
		display: none;
	}
	
	/*	Hover show Text*/
	.side-bar a:hover .side-bar-box span{
		display: inline;
		transition: all .3s ease-in-out;
	}
}



/* Hover Slideout Box */
@media only screen and (min-width: 970px) {
	.side-bar a:hover .side-bar-box {
		transition: all 0.4s ease-in-out 0s;
		width: 120px; 
	}
	.side-bar a:hover{
		opacity: 1.0;
	}
} 

/*  Mobile Center */
@media only screen and (max-width: 970px) {
	.side-bar{
	}
	.side-bar-box {
		display: flex;
		flex-direction: column;
		align-items: center;
		justify-content: center;
	}
	.side-bar-box span {
		width: 100%;
		text-align: center;
	}
	.side-bar-box i {
		width: 100%;
		text-align: center;
	}
} 





