@import "../bootstrap-5.3.8-dist/css/bootstrap.min-iILk3sM.css";


/* =========================================================
   Allgemein
   ========================================================= */

html,
body {
    height: 100%;
    margin: 0;
    background-color: #ffffff;
}


/* =========================================================
   Maintenance Page
   ========================================================= */

.maintenance-page {
    position: relative;
    isolation: isolate;
    overflow: hidden;

    min-height: 100vh;

    background-color: #ffffff;
}


/* =========================================================
   Unterer Seitenabschluss
   ========================================================= */

/* Grauer Bereich */

.maintenance-page::before {
    content: "";

    position: absolute;
    z-index: 0;

    left: 0;
    right: 0;
    bottom: 0;

    height: 70px;

    background-color: #bdbdbd;
    border-top: 5px solid #ffffff;
}


/* Blaue Linie */

.maintenance-page::after {
    content: "";

    position: absolute;
    z-index: 1;

    left: 0;
    right: 0;
    bottom: 70px;

    height: 8px;

    background-color: #302d73;
}

/* =========================================================
   RoWo Designelemente
   ========================================================= */

.design-rectangles {
    position: absolute;
    z-index: 2;

    display: block;

    width: auto;
    height: auto;
    max-width: none;

    pointer-events: none;
    user-select: none;
}

.design-rectangles-top {
    top: -10px;
    right: -45px;
    width: 150px;
    transform: rotate(180deg);
}

.design-rectangles-bottom {
    left: -55px;
    bottom: -20px;

    width: 280px;
}



/* =========================================================
   Maintenance Card
   ========================================================= */

.maintenance-card {
    position: relative;
    z-index: 3;

    max-width: 760px;

    /*
    background-color: #ffffff;

    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 1.5rem;

    box-shadow: 0 1.5rem 4rem rgba(23, 35, 52, 0.12);
    */
}


/* =========================================================
   Logo
   ========================================================= */

.maintenance-logo {
    width: min(100%, 360px);
    height: auto;
    max-height: 180px;
}


/* =========================================================
   Responsive
   ========================================================= */

@media (max-width: 575.98px) {

    .maintenance-page {
        align-items: flex-start !important;
    }

    .maintenance-card {
        border-radius: 1rem;
    }
}