#zaaps
{
    position: absolute;
    left: 0;
    top: 0;
}

.zaap
{
    position: absolute;
    width: var(--cellW);
    height: var(--cellH);
    cursor: default;
    background-image: url(../img/zaap-icon.png), radial-gradient(rgba(255,255,255,0.5) 0%, rgba(255,255,255,0) 80%);
    background-size: auto var(--cellH);
    background-position: center;
    background-repeat: no-repeat;
    z-index: 900;
}

.zaap:hover
{
    z-index: 1000;
}

.zaap .info
{
    visibility: hidden;
    position: absolute;
    left: 50%;
    top: calc(100% + 5px);
    width: fit-content;
    transform: translateX(-50%);
    white-space: nowrap;
    background: rgba(0,0,0,0.7);
    padding:  6px 10px;
    color: white;
    opacity: 0;
    transition: opacity 0.2s;
    pointer-events: none;
    backdrop-filter: blur(3px);
    border-radius: 2px;
    font-family: Calibri;
}

.zaap .info::before
{
    content: "";
    position: absolute;
    left: 50%;
    bottom: 100%;
    width: 10px;
    height: 5px;
    background: rgba(0,0,0,0.7);
    transform: translateX(-50%);
    clip-path: polygon(50% 0%, 100% 100%, 0% 100%);
}

.zaap:hover .info
{
    visibility: visible;
    opacity: 1;
}

.zaap .info .zone
{
    font-size: 16px;
    font-weight: bold;
    line-height: 1;
}
