body {
    display: flex;
    align-items: flex-start;
    gap: 7em;
}

body::-webkit-scrollbar {
    display: none;
}

path {
    fill: #343a40;
    stroke: aliceblue;
}

svg * {
    width: 100vw;
    height: 100vh;
}

.customer {
    fill: goldenrod;
    cursor: pointer;
}

.ttp {
    position: fixed;
    display:none;
    padding: .4em 1em;
    background: #343a40;
    color: #FFF;
    border-radius: 15px;
}

#showDetails {
    opacity: 0;
    width: 20%;
    max-height: 20%;
    transition: .6s;
    position: absolute;
    top: 2%;
    left: 60%;
}

.showDetails h2 {
    margin-bottom: 0;
    padding: .3em;
    background-color: gray;
    border-radius: 5px 5px 0 0;
    color: aliceblue;
}

.items {
    margin-top: 0;
    padding: .7em;
    padding-bottom: .3em;
    background-color: goldenrod;
    min-height: 10em;
    max-height: 19em;
    overflow: scroll;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    border-radius: 0 0 5px 5px;
    transition: .01s;
}

.items .item {
    margin: .6px;
}

.close {
    font-size: .7em;
    text-align: right;
    cursor: pointer;
}

@media (max-width: 720px) {

    #showDetails {
        position: fixed;
        top: 0;
        left: 5%;
        width: 0;
        white-space: nowrap;
    }

    svg {
        position: absolute;
        top: 0;
        left: 0;
        width: auto;
        height: 100vh;
        transform: scale(1);
    }

    svg * {
        width: 30vw;
        height: 30vh;
    }
}