.background-wrapper {
    position: relative;
    width: 100%;
    height: 100vh;
    background: url("/assets/admin/images/auth/bg1.jpg") no-repeat center center;
    background-size: cover;
    overflow: hidden;
}

.rotating-bg-left {
    position: absolute;
    top: 50%;
    left: 0%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    animation: spin 30s linear reverse infinite;
    z-index: 0;
}

.rotating-bg-center {
    position: absolute;
    top: 50%;
    left: 50%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    animation: spin 30s linear infinite;
    z-index: 0;
}

.rotating-bg-right {
    position: absolute;
    top: 50%;
    right: -50%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    animation: spin 30s linear infinite;
    z-index: 0;
}

@keyframes spin {
    0% {
        transform: translate(-50%, -50%) rotate(0deg);
    }

    100% {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

.content {
    position: relative;
    z-index: 1;
    /* on top of background and rotating image */
    text-align: center;
    background: transparent !important;
}

.auth .auth-form-light {
    border-radius: 2rem;
}

.auth .brand-logo img {
    width: 15rem !important;
}

.navbar .navbar-brand-wrapper .navbar-brand img {
    max-width: none !important;
    height: 40px !important;
}

.sidebar .nav:not(.sub-menu) {
    padding: 0rem 1rem 1rem 0rem;
}

.dt-length > label {
    padding-left: 0.5rem;
    text-transform: capitalize;
}

textarea.form-control {
    min-height: 100px;
    resize: none;
}

img.table-store-image {
    width: 3.5rem !important;
    height: 3.5rem !important;
    border-radius: 0.5rem !important;
}
