html,
body {
    height: 100%;
}

body {
    -webkit-animation-delay: 0.1s;
    -webkit-animation-name: fontfix;
    -webkit-animation-duration: 0.1s;
    -webkit-animation-iteration-count: 1;
    -webkit-animation-timing-function: linear;
}

@-webkit-keyframes fontfix {
    from {
        opacity: 1;
    }
    to {
        opacity: 1;
    }
}

.application,
#notsupported {
    height: 100%;
    display: flex;
    display: -webkit-flex;
    background-repeat: no-repeat;
    background-size: cover;
}

.mobile .application {
    background-size: cover;
}

.applicationSplash {
    font-family: "Noto Sans", sans-serif;
    font-size: 2em;
    color: white;
    margin: auto;
    text-align: center;
    align-self: center;
}

.applicationSplash img {
    width: 200px;
}

.spinner {
    margin: 0 auto;
    width: 50px;
    height: 20px;
    text-align: center;
    font-size: 10px;
}

.spinner > div {
    background-color: #fff;
    height: 100%;
    width: 6px;
    margin: 0 1px;
    display: inline-block;
    -webkit-animation: stretchdelay 1.2s infinite ease-in-out;
    animation: stretchdelay 1.2s infinite ease-in-out;
}

.spinner .rect2 {
    -webkit-animation-delay: -1.1s;
    animation-delay: -1.1s;
}

.spinner .rect3 {
    -webkit-animation-delay: -1s;
    animation-delay: -1s;
}

.spinner .rect4 {
    -webkit-animation-delay: -0.9s;
    animation-delay: -0.9s;
}

.spinner .rect5 {
    -webkit-animation-delay: -0.8s;
    animation-delay: -0.8s;
}

@-webkit-keyframes stretchdelay {
    0%,
    40%,
    100% {
        -webkit-transform: scaleY(0.4);
    }
    20% {
        -webkit-transform: scaleY(1);
    }
}

@keyframes stretchdelay {
    0%,
    40%,
    100% {
        transform: scaleY(0.4);
        -webkit-transform: scaleY(0.4);
    }
    20% {
        transform: scaleY(1);
        -webkit-transform: scaleY(1);
    }
}

#notsupported {
    padding: 20px;
    display: none;
}

#notsupported img {
    width: 200px;
}

#notsupported h1,
#notsupported p,
#notsupported a {
    color: white;
    padding: 0;
}

#notsupported a {
    text-decoration: underline;
}
/* ----- Panic toaster start ----- */

.toaster_fixed_panic {
    font-family: "Noto Sans", sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 13px;
}

.toaster_toast_panic {
    box-shadow: 0px 3px 10px rgba(0, 0, 0, 0.4);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-box-pack: justify;
    -ms-flex-direction: row;
    -ms-flex-pack: justify;
    flex-direction: row;
    justify-content: space-between;
    background-color: #f6f5f4;
    border-radius: 2px;
}

.toaster_toast_icon_panic {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-box-flex: 0;
    -ms-flex-align: center;
    -ms-flex-line-pack: center;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    align-content: center;
    display: flex;
    background-color: #e74c3c;
    padding: 5px;
    font-size: 20px;
    border-top-left-radius: 2px;
    border-bottom-left-radius: 2px;
    align-items: center;
}

.toaster_toast_content_panic {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    align-items: center;
    justify-content: center;
    padding: 10px;
    max-width: 500px;
}
/* ----- Panic toaster end ----- */

.panic_help_wrapper {
    position: fixed;
    top: 20px;
    right: 20px;
    display: none;
    z-index: 1500;
}

.panic_help_wrapper_show {
    display: block;
}

.panic_buttons {
    text-align: center;
    margin-top: 10px;
}

.panic_button {
    border-radius: 2px;
    cursor: pointer;
    padding: 5px 10px;
    display: inline-block;
    text-align: center;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    font-family: "Noto Sans", sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 13px;
    white-space: nowrap;
    height: 30px;
    max-height: 30px;
    user-select: none;
    border: 1px solid #c9c9c9;
    background: -webkit-linear-gradient(#fcfbfb, #eeecea);
    background: linear-gradient(#fcfbfb, #eeecea);
}

.api_button--hidden {
    display: none;
}

.api_button--visible {
    display: inline-block;
    background: darkred !important;
    color: white;
}

.icon-color {
    color: beige;
}
