@font-face {
    font-family: 'Roboto Condensed';
    src: url("/icpadmin/style3/default/fonts/robotocondensed-regular.woff2") format("woff2");
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Roboto Condensed';
    src: url("/icpadmin/style3/default/fonts/robotocondensed-bold.woff2") format("woff2");
    font-weight: bold;
    font-style: normal;
}

@-webkit-keyframes spin {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@keyframes spin {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

html, body {
    height: 100%;
}

html {
    font-size: 62.5%;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

*,
*:before,
*:after {
    -webkit-box-sizing: inherit;
    box-sizing: inherit;
}

:focus {
    outline: 0;
}

body {
    margin: 0;
    font-family: 'Roboto Condensed', sans-serif;
}

.page {
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
}

.header {
    padding: 1.6rem;
}

.body {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    padding: 0 9.6rem;
    overflow: hidden;
}

.footer {
    font-size: 1.4rem;
    padding: 1.6rem;
    color: #667799;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.logo {
    width: 12.9rem;
    fill: #667799;
}

.hero {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
}

.illustration {
    width: 64rem;
    margin-right: 3.2rem;
}

.title {
    font-weight: bold;
    color: #324467;
    font-size: clamp(3.2rem, 2vw, 4.2rem);
    margin-bottom: 4.8rem;
    max-width: 42rem;
    text-shadow: 0 0.2rem 0rem #dde3ee;
}

.description {
    font-size: clamp(2.1rem, 2vw, 2.6rem);
    color: #667799;
    margin-bottom: 6.4rem;
    max-width: 48rem;
    text-shadow: 0 0.1rem 0rem #dde3ee;
}

.error_message_disabled {
    display: none;
}

.error_message {
    font-size: clamp(2.1rem, 2vw, 2.6rem);
    color: #324467;
    margin-bottom: 6.4rem;
    max-width: 48rem;
    text-shadow: 0 0.1rem 0rem #dde3ee;
}



.call-to-action {
    font-weight: bold;
    font-family: inherit;
    padding: 1.6rem 3.2rem;
    border: none;
    border-radius: 25px;
    -webkit-box-shadow: none;
    box-shadow: none;
    background: none;
    background-color: #1a61e6;
    text-shadow: none;
    line-height: 1;
    color: white;
    font-size: clamp(1.8rem, 1.4vw, 2rem);
    -webkit-transition-property: background-color, -webkit-box-shadow;
    transition-property: background-color, -webkit-box-shadow;
    transition-property: box-shadow, background-color;
    transition-property: box-shadow, background-color, -webkit-box-shadow;
    -webkit-transition-duration: 0.2s;
    transition-duration: 0.2s;
    text-shadow: 0 0.2rem 0rem #1757cf;
}

    .call-to-action:hover, .call-to-action:focus {
        cursor: pointer;
        background-color: #3574e9;
        -webkit-box-shadow: 0 0 0 0.4rem #c2d7ff;
        box-shadow: 0 0 0 0.4rem #c2d7ff;
    }

.copyright {
    text-align: right;
    color: #5772a8;
}

.spinner-wrapper {
    top: 0;
    left: 0;
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: #fff;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.spinner-circle {
    width: 4.2rem;
    height: 4.2rem;
    border-radius: 50%;
    background-color: transparent;
    border: 0.3rem solid #c2d7ff;
    border-top-color: #1a61e6;
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
    -webkit-animation: spin 1s linear infinite;
    animation: spin 1s linear infinite;
}

.spinner-message {
    font-weight: bold;
    font-size: 1.6rem;
    margin-top: 0.8rem;
    color: #667799;
}

.error-state {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.error-state-illustration {
    fill: none;
    stroke: #667799;
    stroke-width: 0.2rem;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.error-state-message {
    text-align: center;
    margin-top: 1.6rem;
}

.error-state-title {
    font-size: 2.4rem;
    font-weight: bold;
    color: #324467;
    margin-bottom: 0.8rem;
}

.error-state-description {
    font-size: 1.9rem;
    color: #667799;
    max-width: 34rem;
}

.error-state-actions {
    margin-top: 3.2rem;
}

@media screen and (max-width: 1028px) {
    .body {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        text-align: center;
    }

    .hero {
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }

    .illustration {
        min-height: 32rem;
        max-width: 48rem;
        margin: 0 0 3.2rem 0;
    }

    .title {
        width: 32rem;
        margin-bottom: 2.4rem;
    }

    .description {
        width: 32rem;
    }

    .error_message {
        width: 32rem;
    }
}

@media screen and (max-width: 480px) {
    .header {
        -ms-flex-item-align: center;
        -ms-grid-row-align: center;
        align-self: center;
    }

    .illustration {
        max-height: 24rem;
        min-height: auto;
        margin: 0 0 1.6rem 0;
    }

    .title {
        font-size: 2.4rem;
        width: 32rem;
        margin-bottom: 1.2rem;
        line-height: 1.2;
    }

    .description {
        width: 32rem;
        font-size: 1.6rem;
        margin-bottom: 2.8rem;
    }

    .error_message {
        width: 32rem;
        font-size: 1.6rem;
        margin-bottom: 2.8rem;
    }
    
    .call-to-action {
        font-size: 1.5rem;
    }
}