I want to activate the hover state on arrowBox
when I click on the div antrenor
.arrowBox:after {
content: ' ';
width: 0px;
height: 0px;
border-top: 17px solid transparent;
border-left: 17px solid transparent;
border-bottom: 17px solid transparent;
border-right: 17px solid #2391af;
position: absolute;
right: 104px;
top: 50%;
margin-top: -17px;
opacity: 1;
transition: 0.5s;
}
.arrowBox:hover:after {
opacity: 1;
right: 100%;
top: 50%;
}
<div class="antrenor">
<div class="arrowBox" style="margin-right:110px">Antrenor</div>
</div>