body,
html {
    height: 100%;
}

.app-loading {
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.1);
    z-index: 9999;
    /* increase this value if needed */
    overflow: hidden;
    opacity: 0.8;
}

.app-loading.opaque {
    background: rgba(0, 0, 0, 1) !important;
}

.app-loading .spinner {
    height: 200px;
    width: 200px;
    animation: rotate 2s linear infinite;
    transform-origin: center center;
    position: absolute;
    margin: auto;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
}

.app-loading .spinner .path {
    stroke-dasharray: 1, 200;
    stroke-dashoffset: 0;
    animation: dash 1.5s ease-in-out infinite;
    stroke-linecap: round;
    stroke: #a42a6a;
}
ul.navbar-nav li.dropdown:hover ul.dropdown-menu {
    display: block;
}
@keyframes rotate {
    100% {
        transform: rotate(360deg);
    }
}

@keyframes dash {
    0% {
        stroke-dasharray: 1, 200;
        stroke-dashoffset: 0;
    }
    50% {
        stroke-dasharray: 89, 200;
        stroke-dashoffset: -35px;
    }
    100% {
        stroke-dasharray: 89, 200;
        stroke-dashoffset: -124px;
    }
}

.bg-color {
    background: #1d1e1e;
}

/* #dropdownMenuButton {
    color: #fff !important;
}

#dropdownMenuButton small {
    padding-right: 10px !important;
} */