.service-info-button {
    color: var(--primary-color);
    font-size: 12pt;
    cursor: pointer;
}

#modalServiceInfoBack {
    display: none;
    background: black;
    background: rgba(0, 0, 0, 0.85);
    width: 100vw;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999;
}

.modal-service-info {
    width: 100%;
}

#modalServiceInfo {
    position: fixed;
    top: calc(50vh - 350px);
    left: calc(50vw - 300px);
    background: white;
    padding: 1em;
    border-radius: 5px;
    border: solid 1px #ccc;
    z-index: 9999;
    width: 100%;
    max-width: 600px;
}

.service-tooltip {
    display: none;
    position: absolute;
    z-index: -1;
    padding: 0 1em 1em 1em;
    margin: 0 5px;
    background: white;
    border-radius: 7px;
    border: 1px solid #ddd;
    line-height: 1.2;
    max-width: 330px;
    font-weight: bold;
    box-shadow: rgba(0, 0, 0, 0.3) 0px 19px 38px,
        rgba(0, 0, 0, 0.22) 0px 15px 12px;
}

.info-header {
    width: 100%;
    display: flex;
    align-items: flex-start;
    font-size: 14pt;
    padding: 0 0 0.25em 0.25em;
    justify-content: flex-end;
}

.info-header svg {
    cursor: pointer;
}

.serviceinfo-thumb-cell {
    width: 64px;
}

.serviceinfo-thumb-cell img {
    cursor: pointer;
}

@media (max-width: 600px) {
    #modalServiceInfo {
        left: 0;
    }
}
