﻿.js-popover {
    cursor: pointer;
    color: #d4af37;
}

.floating-popover {
    display: none;
    position: absolute;
    z-index: 9999;
    width: 280px;
    max-width: calc(100vw - 24px);
    padding: 16px;
    direction: rtl;
    text-align: right;
    background: #2d2e31;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 12px;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.35);
}

    .floating-popover.is-open {
        display: block;
    }

.floating-popover__title {
    margin-bottom: 8px;
    padding-left: 24px;
    font-weight: bold;
    color: #d4af37;
}

.floating-popover__content {
    font-size: 14px;
    line-height: 1.8;
}

.floating-popover__close {
    position: absolute;
    top: 6px;
    left: 8px;
    border: 0;
    background: transparent;
    color: #aaa;
    font-size: 20px;
    cursor: pointer;
}

.floating-popover__arrow {
    position: absolute;
    width: 10px;
    height: 10px;
    background: #2d2e31;
    transform: rotate(45deg);
}
