html,
body {
    height: 100%;
}

#network {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.g6-component-tooltip {
    border: 1px solid #e2e2e2;
    border-radius: 4px;
    font-size: 12px;
    color: #000;
    background-color: rgba(255, 255, 255, 0.9);
    padding: 10px 8px;
    box-shadow: rgb(174, 174, 174) 0px 0px 10px;
}

.empty-state {
    position: fixed;
    top: 50%;
    left: 50%;
    margin-top: -180px;
    margin-left: -150px;
    overflow: hidden;
}

.empty-container {
    position: relative;
}

.empty-content {
    position: fixed;
    bottom: -10%;
    left: 53%;
    /* bottom: 45%; */
}

.empty-text {
    font-family: "Yanone Kaffeesatz";
    font-size: 100px;
    position: fixed;
    text-align: center;
    bottom: calc(50% - 330px) !important;
    left: 53%;
    transform: translate(-50%, -50%);
    color: #ffffff;
    /* min-width: 550px !important; */
}

@media screen and (max-width: 1192px) {
    .empty-text {
        line-height: 0.8;
        bottom: calc(50% - 430px) !important;
    }
}

.astronout {
    position: fixed;
    animation: fadeInFromTop .5s linear forwards, floating ease 4s infinite;
}

.moon {
    position: fixed;
}

.stars {
    position: fixed;
}

.jupiter {
    position: fixed;
}

@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@keyframes fadeInFromTop {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes floating {
    0% {
        transform: translate(0%, 0%) rotate(360deg);
    }

    25% {
        transform: translate(5%, 15%) rotate(360deg);
    }

    50% {
        transform: translate(10%, 5%) rotate(360deg);
    }

    75% {
        transform: translate(0%, 15%) rotate(360deg);
    }

    100% {
        transform: translate(0%, 0%) rotate(360deg);
    }
}

.g6-component-tooltip {
    border: 1px solid #e2e2e2;
    border-radius: 4px;
    font-size: 12px;
    color: #000;
    background-color: rgba(255, 255, 255, 0.9);
    padding: 10px 8px;
    box-shadow: rgb(174, 174, 174) 0px 0px 10px;
}

.move-to-left {
    transform: translateX(-400px);
}

.move-to-left-partly {
    transform: translateX(-200px);
}

.sidebar {
    height: calc(100vh - 70px);
    overflow-y: auto;
    width: 400px;
    position: fixed;
    bottom: 0.2rem;
    z-index: 1;
    right: -400px;
    background-color: #252528;
    box-shadow: 0 1rem 5rem rgba(0, 0, 0, 0.4);
    transition: transform .7s ease-in-out;
}

.container-liner {
    margin-left: 1rem;
    margin-right: 1rem;
    padding-top: 15px;
    overflow: auto;
}

.sidebar-title {
    color: #a2a5b9;
}

.sidebar-tab {
    height: calc(100vh - 70px);
    border-radius: 15px 0 0 15px;
    width: 2rem;
    position: fixed;
    bottom: 0.2rem;
    z-index: 1;
    right: 0;
    background-color: #252528;
    box-shadow: 0 1rem 5rem rgba(0, 0, 0, 0.5);
    transition: transform .7s ease-in-out;
}

#sidebar-tab-text {
    width: 400px;
}

.vertical-text {
    transform: rotate(90deg);
    transform-origin: left 2rem;
    vertical-align: middle;
}

.arrow {
    box-sizing: border-box;
    display: inline-block;
    cursor: pointer;
    position: relative;
    transform: rotate(0deg);
    transition: all 0.5s ease-in-out;
    width: 32px;
    height: 32px;
    z-index: 1;
}

.arrow:after,
.arrow:before {
    content: "";
    box-sizing: border-box;
    display: block;
    position: absolute;
    transition: all 0.25s ease-in-out;
    border-radius: 10px;
    background: #a2a5b9;
    width: 16px;
    height: 3.2px;
    top: 14.4px;
}

.arrow:after {
    transform: rotate(44deg);
    left: 3.2px;
}

.arrow:before {
    right: 3.2px;
    transform: rotate(-44deg);
}

.arrow.active:after {
    transform: rotate(-44deg);
}

.arrow.active:before {
    transform: rotate(44deg);
}

.btn.btn-primary {
    background-color: #F50057;
    border-color: #F50057;
}

.btn-circle {
    width: 50px !important;
    height: 50px !important;
    border-radius: 50% !important;
    border: none !important;
}

.toast-container {
    position: absolute;
    bottom: 15px;
    z-index: 99999 !important;
    right: 35px;
}

/* #network canvas {
    width: 100% !important;
    height: 100% !important;
    z-index: 10;
} */


