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

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

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

	.side-bar-box {
		height: auto;
		width: 60px;
		padding: 10px 20px;
		font-size: 90%;
		color: #000;
		margin-bottom: 5px;
		transition: all 0.4s ease-in-out 0s;
		margin-left: auto;
		background-color: #fff;
		box-shadow: 3px 7px 15px rgba(50, 50, 50, 0.1);
	}
	
	/*	 Text hidden */
/*
	.side-bar-box span {
		transition: all .3s ease-in-out;
			opacity: 0;
	}
*/
	
	/*	Hover show Text*/
/*
	.side-bar a:hover .side-bar-box span{
		opacity: 1;
		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{
		padding: 15px 0;
	}
	.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;
		font-size: 85%;
		padding-bottom: 10px;
		padding-right: 0;
	}
} 

.side-bar {
	display: block !important;
}


