.popup-hint-term {
    color: #694595;
    cursor: pointer;
    position: relative;
    display: inline-block;
}

.popup-hint-term img {
    vertical-align: middle;
    width: 20px;
    margin-left: 2px;
}

.popup-hint-term:hover {
    color: #004080;
}

.popup-hint-description {
    display: none;
    z-index: 9999;
    background-color: #fff;
    border-radius: 6px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    position: fixed;
    right: 2rem;
    bottom: 1rem;
    height: fit-content;
    padding: 1rem;
    width: 500px;
}

.popup-hint-content {
    padding: 15px;
    position: relative;
    display: flex;
    flex-direction: column;
}

.popup-hint-close {
    position: absolute;
    top: -8px;
    right: 10px;
    font-size: 20px;
    font-weight: bold;
    color: #999;
    cursor: pointer;
}

.popup-hint-title {
    font-size: 20px;
    font-weight: 600;
    background: #dbd6fe;
    width: fit-content;
    padding: 2px 12px;
    border-radius: 300px;
    margin-bottom: 0.5rem;
}

.popup-hint-close:hover {
    color: #333;
}

.popup-hint-description p {
    margin-bottom: 0;
    font-size: 14px;
    line-height: 1.4;
}

@media(max-width:767px) {
    .popup-hint-description {
        left: 0 !important;
        width: 85vw !important;
    }
}