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

.side-bar {
	display: block;
}
.side-bar-box span {
	font-size: 90%;
	font-family: 'ubuntumedium';
}
.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: 55%;
		width: auto;
		transform: translateY(-50%);
	}

	.side-bar-box {
	height: auto;
    width: 75px;
    padding: 15px 25px;
    font-size: 100%;
    color: #bd1d1d;
    margin-bottom: 6px;
    transition: all 0.4s ease-in-out 0s;
    margin-left: auto;
    background-color: #ffbe1e;
		box-shadow: -2px -2px 20px 7px #ffffff17;
	}
	
	/*	 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: 150px; 
	}
	.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;
	}
} 


