.ez-loading-container {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    z-index: 9000;
}

.ez-loading-overlay {
    height: 100%;
    display: flex;
    position: fixed;
    background-color: rgba(0, 0, 0, 0.6);
    top: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    transition: background-color 0.4s;
}

.ez-loading-overlay.full-cover{
    background-color: var(--brand-bg-color);
    color: white;
}

.ez-loading-content {
    position: relative;
}

.ez-loading-content-back-box {
    position: absolute;
    top: -10px;
    right: -8px;
    background-color: var(--brand-bg-color);
    color: var(--invert-text-color);
    padding: 15px 10px;
    width: 105%;
    height: 120%;
    rotate: -4deg;
    z-index: -1;
}