/* STRATEGIC PLAN STICKY */
#sp-sticky {
	padding: 0;
	width: max-content;
	margin-right: 0;
	margin-top: .5rem;
	position: fixed;
	background: #c8102e;
	right: 0;
	top: 50vh;
	z-index: 999;
	transform-origin: 100% 50%;
	transition: all .3s;
}
#sp-sticky .container {
    padding-left: 0;
    padding-right: 0;
}
#sp-sticky .tab-container {
    display: flex;
    height: 100%;
}
#sp-sticky .tab-arrows, #sp-sticky a {
    display: inline;
}
#sp-sticky .tab-arrows .glyphicon:last-of-type {
    margin-right: 10px;
}
#sp-sticky .tab-arrows .glyphicon {
    color: #c8102e;
    width: 10px;
    margin-top: auto;
    margin-bottom: auto;
}
#sp-sticky .tab-arrows {
    width: 30px;
    height: 100%;
    margin-top: auto;
    margin-bottom: auto;
    background-color: #f6be00;
    display: flex;
}
#sp-sticky .tab-arrows:hover {
    cursor: pointer;
}
#sp-sticky .tab-arrows:hover .glyphicon {
    color: #960c22;
    font-weight: bold;
}
#sp-sticky a {
    padding-left: .5rem;
    padding-right: .5rem;
}
#sp-sticky a:hover {
    background-color: #960c22;
}
#sp-sticky svg {
    margin-top: .5rem;
}
#sp-sticky.tab-collapsed {
    right:-120px;
}
#sp-sticky.tab-expanded {
    right:0;
}
/* this resizes the tag for small devices */
@media (max-width:767px) {
	#sp-sticky {
		top: 70vh;
    }
    #sp-sticky .tab-arrows {
        width: 30px;
        background-color: #f6be00;
        display: flex;
        height: revert;
        margin-top: revert;
        margin-bottom: revert;
    }
}