.degree-link {position: relative;}
.degree-link:hover .tool-tip-text {visibility: visible;}

.tool-tip-text {
    font-size: 13px;
    visibility: hidden;
    padding: 10px;
    position: absolute;
    z-index: 11;
    background-color: hsla(0, 0%, 0%, 0.8);
    border-radius: 3px;
    width: 20rem;
    color: #fff;
    font-family: 'Foundry sterling W01';
    font-weight: 300;
    text-shadow: 1px 1px 2px hsla(0, 0%, 0%, 1);
    backdrop-filter: blur(5px);
    bottom: 32px;
    display: inline-block;
}
.tool-tip-text .req-text {display: inline-block;}
.tool-tip-text .req-text:not(:first-child) {margin-top: 5px;}
.tool-tip-text .req-text .type {font-weight: 500;}
.tool-tip-text:after {
    content: " ";
	position: absolute;
	top: 100%;
    right: 90%;
	margin-left: -5px;
	border-width: 10px;
	border-style: solid;
	border-color: #2e2a2a transparent transparent transparent;
}