/* ======== Sticky Tab ======== */
 #sticky3 {
	 padding: 0;
	 width: 150px;
	 margin-right: 0;
	 position: fixed;
	 background: #c8102e;
	 right: 0;
	 top: 75vh;
	 z-index: 999;
	 transform-origin: 100% 50%;
	 /*transition: all .3s;*/
	 border: 1px solid gray;
	 font-family: 'League Gothic';
	 text-transform: uppercase;
	 /*border-left: 30px solid #f6be00;*/
}
 #sticky3 .container {
	 padding-left: 0;
	 padding-right: 0;
}	 
 #sticky3 .tab-container {
	 display: flex;
	 height: 100%;
}
 #sticky3 .tab-arrows, #sticky3 a {
	 display: inline;
}
 #sticky3 .tab-arrows .glyphicon:last-of-type {
	 margin-right: 10px;
}
 #sticky3 .tab-arrows .glyphicon {
	 color: #c8102e;
	 width: 10px;
	 margin-top: auto;
	 margin-bottom: auto;
}
 #sticky3 .tab-arrows {
	 width: 30px;
	 height: 100%;
	 margin-top: auto;
	 margin-bottom: auto;
	 background-color: #f6be00;
	 display: flex;
}
 #sticky3 .tab-arrows:hover {
	 cursor: default;
}
 #sticky3 .tab-arrows:hover .glyphicon {
	 color: #c8102e;
/*	 font-weight: bold;*/
}
 #sticky3 a {
	 /*color: #ffffff;*/
	 font-size: .5rem;
	 line-height: .5rem;
}
 #sp-sticky3 a:hover {
	 background-color: #c8102e;
}
 #sticky3 svg {
	 margin-top: .5rem;
}
 #sticky3.tab-collapsed {
	 right: -120px;
}
 #sticky3.tab-expanded {
	 right: 0;
}
 #sticky3:hover {
	 background-color: #c8102e;
}


@media (max-width:767px) {
	 #sticky3 {
		 top: 75vh;
	}
	 #sticky3.tab-arrows {
		 width: 30px;
		 background-color: #c8102e;
		 display: flex;
    	 height: 100%;
	     margin-top: auto;
	    margin-bottom: auto;

    }
    
}