.loading-bro {
    position: absolute;
    display: none;
    bottom: 0;
    left: 0;
    right: 0;
    top: 0;
    opacity: 0.5;
    background-color: #000;
    color: #fff;
    z-index: 9999;
    width: 100%;
    height: 100%;
}

.loading-bro>h1,
.loading-bro #load {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
}

.loading-bro>h1 {
    top: 20%;
    text-align: center;
    font-size: 4.5em;
    margin-bottom: 1em;
    font-weight: bold;
    color: #fff;
}

.loading-bro #load {
    width: 150px;
    animation: loading 3s linear infinite;
}

.loading-bro #load #loading-inner {
    stroke-dashoffset: 0;
    stroke-dasharray: 300;
    stroke-width: 4;
    stroke-miterlimit: 10;
    stroke-linecap: round;
    animation: loading-circle 2s linear infinite;
    stroke: #fff;
    fill: transparent;
}

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

@keyframes loading-circle {
    0% {
        stroke-dashoffset: 0;
    }
    100% {
        stroke-dashoffset: -600;
    }
}

.search-form {
    border: 1px solid #ccc;
    border-radius: 5px;
    margin-bottom: 15px;
    padding-top: 15px;
    padding-right: 15px;
    background-color: #f2f2f2;
}

.data-all-export .caret {
    border-top-color: #6688a6 !important;
}

.sidebar+.main-content {
    overflow: hidden !important;
}