.допуск-контейнер {
position: relative;
display: inline-block;
cursor: help;
text-decoration: underline dotted;
}
.допуск-подсказка {
visibility: hidden;
width: 220px;
background-color: #333;
color: #fff;
text-align: left;
border-radius: 6px;
padding: 6px;
position: absolute;
z-index: 10;
bottom: 125%;
left: 50%;
transform: translateX(-50%);
opacity: 0;
transition: opacity 0.3s;
font-size: 90%;
}
.допуск-подсказка::after {
content: "";
position: absolute;
top: 100%;
left: 50%;
margin-left: -5px;
border-width: 5px;
border-style: solid;
border-color: #333 transparent transparent transparent;
}
.допуск-контейнер:hover .допуск-подсказка {
visibility: visible;
opacity: 1;
}
.режимный {
color: #c00;
text-transform: uppercase;
}