.db {
    display: block;
}

html.loading,
html.loading:hover,
html.loading * {
    cursor:wait !important
}

button[type=submit] {
    opacity: 1;
    transition: all 0.3s;
}

.submitting button[type=submit] {
    opacity: 0.5;
}

.button-export {
    opacity: 1;
    transition: all 0.3s;
}

.button-export.disabled {
    opacity: 0.5;
    pointer-events: none;
}

a.disabled {
    opacity: 0.3;
    cursor: not-allowed;
}


.tippy-box[data-theme~='dark'] {
    background-color: #499DC7 !important;
    color: #fff;
    border-radius: 6px;
    font-weight: bold;
}


.main-layout-content-loader {
    min-height: 450px;
    display: flex;
    align-items: center;
    justify-self: center;
    flex: 0 0 100%;
    width: 100%;
    max-width: 950px;
    flex-shrink: 1;
}

.main-layout-content-loader-inner {
    width: 100%;
    text-align: center;
}


.main-layout-content-loader img {
    margin-left: auto;
    margin-right: auto;
}

@media (min-width: 1024px) {
    .main-layout-content-loader img {
        transform: translateY(-100px);
    }
}