.spinner,
.spinner:after {
    width: 64px;
    height: 64px;
    position: fixed;
    top: 50%;
    left: 50%;
    margin-top: -32px;
    margin-left: -32px;
    border-radius: 50%;
    z-index: 2
}

.spinner {
    width: 3rem;
    height: 3rem;
    border: 6px solid #6366f1;
    border-top: 6px solid #232946;
    border-radius: 50%;
    animation: spin360 1s linear infinite;
    display: inline-block;
}

@keyframes spin360 {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.ui-autocomplete {
    position: absolute;
    cursor: default;
    z-index: 4000 !important
}

.loader {
    position: fixed;
    top: 50%;
    left: 50%;
    z-index: 9999;
    transform: translate(-50%, -50%);
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
}

.loaderDashboard {
    display: block;
    /*Should Display*/
    position: fixed;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    z-index: 9999;
    background: #fafafa00 url('../images/pageLoaderDashboard.gif') no-repeat center center;
    text-align: center;
    color: #999;
    opacity: .9;
}

th {
    font-size: 14px;
}

td {
    font-size: 14px;
}

#mynetwork {
    width: 100%;
    height: 445px;
    background-color: #f2f2f2;
    border: 1px solid lightgray;
}

#operation {
    font-size: 28px;
}

#network-popUp {
    display: none;
    position: absolute;
    top: 150px;
    left: 300px;
    z-index: 299;
    width: 450px;
    height: 160px;
    background-color: rgba(255, 0, 0, 0);
    border-style: solid;
    border-width: 0px;
    border-color: #5394ed;
    padding: 0px;
    text-align: center;
}

.dt_id {
    font-weight: bold;
    text-align: center;
}

.bold {
    font-weight: bold;
}

.btn-circle.btn-sm {
    width: 30px;
    height: 30px;
    padding: 6px 0px;
    border-radius: 15px;
    font-size: 8px;
    text-align: center;
}

.btn-circle.btn-md {
    width: 50px;
    height: 50px;
    padding: 7px 10px;
    border-radius: 25px;
    font-size: 10px;
    text-align: center;
}

.btn-circle.btn-xl {
    width: 100px;
    height: 100px;
    padding: 10px 16px;
    border-radius: 135px;
    font-size: 48px;
    text-align: center;
}