#net-diagram-wrapper {
    display: none;
    flex-direction: column;
    width: 1000px;
    box-shadow: #456e73 10px 10px 20px;
}

.bulge-text {
    animation: bulge 1s infinite linear;
}

@keyframes bulge {
    0% {
        font-size: 100%;
    }

    50% {
        font-size: 120%;
    }

    100% {
        font-size: 100%;
    }
}

#net-diagram-wrapper {
    width: 1000px;
    /* height: 500px; */
    display: none;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    transition: all 1s ease-in;
    z-index: 2;
}

/* .net-diagram-image {
    display: block;
    z-index: 1;
} */
/* #net-diagram-position {
    display: block;
    position: absolute;
    top: 50px;
    left: 50%;
    color: aliceblue;
    font-size: medium;
} */

#net-diagram-overlay {
    display: flex;
    flex-direction: row;
    width: 960px;
    justify-content: space-between;

    /* position: absolute; */
    transition: opacity 1s ease-in;
    background-color: #454545;
    padding: 20px;
    color: #bc8500;
    font-family: 'Dosis';
    font-size: 1.2em;
    z-index: 3;
}

#net-overlay-data {
    color: #bc8500;
    font-family: 'Dosis';
    font-size: 1em;
    flex: 2, 1;
    line-height: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

#net-overlay-data p {
    margin-bottom: 6px;
    margin-top: 6px;
}

.net-overlay-advance {
    height: 100%;
    width: auto;
    padding-left: 10px;
    flex: 1, 2
}

/* #net-diagram-overlay::after {
    background-image: url('../img/right.svg');
    width: 60px;
    height: 100%;
} */

.label-button-container {
    display: block;
    position: relative;
    left: 10%;
    width: 40%;
}

.net-close {
    position: absolute;
    /* border-style: groove; */
    border: none;
    /* border-radius: 20%; */
    background: url("../img/close.svg") transparent no-repeat;
    top: 17%;
    right: 13%;
    width: 40px;
    height: 21px;
    font-size: 10px;
}