.hover_information > span {
    opacity: 0;
    transition: opacity 300ms linear;
    cursor: default;
    position: absolute;
    color: #9C9C9C;
    background: #fff;
    border: 1px solid #9C9C9C;
    border-radius: 5px;
    padding: 15px;
    display: none; 
    font-weight: normal;
    font-size: 17px;
    line-height: 25px;
}

.hover_information > span::after{
    content: "";
    background-color: #fff;
    border-left: 1px solid #9C9C9C;
    border-top: 1px solid #9C9C9C;
    width: 10px;
    height: 10px;
    position: absolute;
    bottom: -6px;
    right: 50%;
    transform: translate(50%,0) rotate(-135deg);
}
.hover_information{
    display: inline-block;
}
.hover_information:hover > span {
    opacity: 1;
    transition: opacity 300ms linear;
    display: inline-block;
}

.hover_information.right > span {
    right: -20px;
}
.hover_information.top > span{
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    min-width: 300px;
}
.hover_information.bottom > span{
    top: 100%;
}
.hover_information.bottom > span::after {
    top: -6px;
    border-right: 1px solid #9C9C9C;
    border-left: 0px solid white;
    border-bottom: 1px solid #9C9C9C;
    border-top: 0px solid white;
    
    right: 50% !important; 
}

.hover_information:hover > span:hover {
    display: none;
}


.share_employee .hover_information input:hover{
    cursor: pointer;
}
.share_employee .hover_information > span {
    right: 25px;
    top: -25px;
    width: 300px;
    text-align: left;
}

.share_employee .hover_information > span::after {
    right: 0px;
    bottom: auto;
    top: 25px;
    border-top: 0px solid white;
    border-bottom: 1px solid #9C9C9C;
    
}

/** Sidebar Image Hover **/
.progress_bar.hover_information {
    display: block;
}
#mainmenu_wrapper .moduletable.mod_profileimage {
    z-index: 2;
}
#header_wrapper .progress_bar.hover_information > span {
    color: #9C9C9C;
    padding: 6px;
    text-align: center;
    width: 204px;
}

/*nutzerverwaltung information box - added new to design https://xd.adobe.com/view/68b2e796-030a-4a87-937b-01b5f553ded5-3de1/screen/427ccc46-9a12-4616-9c99-9a5fe191c440/specs/ */
.blocks_nutzerverwaltung .hover_information{
    opacity: 0;
    transition: opacity 300ms linear;
    width: calc(100% - 30px);
    position: absolute;
    top: -10px;
    left:50%;
    transform: translate(-50%,-100%);
    max-width: calc(100% - 30px);
    padding: 15px;
    text-align: center;
    color: #9C9C9C;
    background: #fff;
    border: 2px solid #9C9C9C;
    border-radius: 5px;
    word-break: break-word;
    display: flex;
    justify-content: center;
    flex-direction: column;
    z-index: 9;
}
.blocks_nutzerverwaltung .hover_information::after{
    content: "";
    background-color: #fff;
    border-left: 2px solid #9C9C9C;
    border-top: 2px solid #9C9C9C;
    width: 10px;
    height: 10px;
    position: absolute;
    bottom:-7px;
    transform: rotate(-135deg);
    left: 50%;
    transform: translate(-50%,0) rotate(-135deg);
}
.blocks_nutzerverwaltung .hover_information:hover{
    opacity: 0;
}
.blocks_nutzerverwaltung .information_box:hover .hover_information{
    opacity: 1;
    transition: opacity 300ms linear;
}

/*new info icons*/
i.hover_for_info{
    cursor: pointer;
    position: relative;
}
i.hover_for_info .hover_information{
    opacity: 0;
    z-index: -9;
    position: absolute;
    width: 300px;
    height: auto;
    border: 2px solid #9C9C9C;
    background: white;
    border-radius: 5px;
    padding: 10px;
    line-height: 20px;
}
i.hover_for_info .hover_information.info_left{
    right: calc(100% + 10px);
    top: 50%;
    transform: translate(0,-50%);
    max-width: 75vw;
}
i.hover_for_info .hover_information.info_right{
    left: calc(100% + 10px);
    top: 50%;
    transform: translate(0,-50%);
    max-width: 75vw;
}
i.hover_for_info .hover_information.info_top{
    left: 50%;
    bottom: calc(100% + 10px);
    transform: translate(-50%,0);
}
i.hover_for_info:hover .hover_information{
    opacity: 1;
    z-index: 9;
}

i.hover_for_info .hover_information::after{
    content: "";
    background-color: #fff;
    border-left: 2px solid #9C9C9C;
    border-top: 2px solid #9C9C9C;
    width: 10px;
    height: 10px;
    position: absolute;
}



/*info left means arrow right*/
i.hover_for_info .hover_information.info_left::after{
    top:50%;
    right: 0;
    transform: translate(6px,-50%) rotate(130deg);
}
i.hover_for_info .hover_information.info_right::after{
    top:50%;
    left: 0;
    transform: translate(-6px,-50%) rotate(-45deg);
}
/*info top means arrow bottom*/
i.hover_for_info .hover_information.info_top::after{
    left: 50%;
    bottom: 0;
    transform: translate(-50%, 6px) rotate(-135deg);
}


/*hover top centered not fitting on screen in that case, so adjusting it*/
@media screen and (max-width: 425px){
    #chapters_list i.hover_for_info .hover_information.info_top{
        left: 105px;
    }
    #chapters_list i.hover_for_info .hover_information.info_top::after{
        left: 50px;
    }
}