#global-popups-close {
    background: transparent;
    border: none;
    cursor: pointer;
    font-size: 1.5rem;
    position: absolute;
    right: 20px;
}
#global-popups-container {
    background: #fff;
    border-radius: 4px;
    display: none;
    left: 50%;
    max-height: 95%;
    overflow: auto;
    padding: 20px;
    position: fixed;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 7002;
}
#global-popups-overlay {
    background: rgba(0,0,0,0.5);
    display: none;
    height: 100%;
    left: 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 7001;
}
.tooltip-icon {
    background-color: rgb(22, 162, 153);
    color: white;
    cursor: pointer;
    display: inline-block;
    font-size: 14px;
    font-weight: bold;
    height: 20px;
    line-height: 20px;
    text-align: center;
    border-radius: 50%;
    user-select: none;
    width: 20px;
}
.tooltip-icon:hover {
    background-color: rgb(18, 140, 132);
}
a.global-popup-link {
    font-weight: normal !important;
    cursor: pointer;
}