@import url('open-iconic/font/css/open-iconic-bootstrap.min.css');

html {
}

html, body {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    /*height: 100%;
    overflow: auto;*/
    background-color: white;
    overflow-x: clip;
    height: -webkit-fill-available;
}

* {
    transition: all 0.1s cubic-bezier(0.22, 0.61, 0.36, 1);
}
/*
div {
    transition: all 0.3s;
}*/

::-webkit-scrollbar {
    width: 0.35em;
}

::-webkit-scrollbar-track {
    box-shadow: inset 0 0 6px rgb(0 0 0 / 21%);
    margin-bottom: 2px;
}

::-webkit-scrollbar-thumb {
    background-color: #a9a9a978;
    outline: 1px solid #7080907d;
}

#blazor-error-ui {
    background: lightyellow;
    bottom: 0;
    box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.2);
    display: none;
    left: 0;
    padding: 0.6rem 1.25rem 0.7rem 1.25rem;
    position: fixed;
    width: 100%;
    z-index: 1000;
}

    #blazor-error-ui .dismiss {
        cursor: pointer;
        position: absolute;
        right: 0.75rem;
        top: 0.5rem;
    }

.Start.SystemPanel > div {
    box-shadow: none;
}

.Start.SystemPanel {
    transform: translateY(-100px);
}

.Start {
    opacity: 0;
}

    .Start.Main {
        transform: translateY(50%);
    }

body.Start {
    /*overflow: hidden;*/
    opacity: 1;
}

.Back {
    position: absolute;
    height: 96%;
    width: 96%;
    top: 2%;
    left: 2%;
    /*background-color: aqua;*/
    opacity: 0;
    text-align: center;
    border-radius: 100px;
    transform: scale(0.3) translateY(-150%) rotate3d(1, 0, 0, 70deg);
}

.StartAnimation{
    animation: start 3s infinite;
}

@keyframes start {
    0% {
        background-color: aqua;
    }
    70% {
        background-color: white;
    }
    80% {
        background-color: crimson;
    }
    90% {
        background-color: white;
    }
    100% {
        background-color: aqua;
    }
}

.Start.Back {
    opacity: 1;
    transform: scale(1.0);
}

a, .btn-link {
    color: #0366d6;
}

.btn-primary {
    color: #fff;
    background-color: #1b6ec2;
    border-color: #1861ac;
}

app {
    position: relative;
    display: flex;
    flex-direction: column;
    /*height: 100%;*/
}

.Main {
    display: flex;
    flex: auto;
    /*height: -webkit-fill-available;*/
    justify-content: space-between;
}

@media (max-width: 1200px) {
    .Main {
        justify-content: center;
        flex-wrap: wrap;
    }

    .Body {
        margin-bottom: 6vh;
    }
}

.Body {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    /*align-content: center;*/
    /* height: 100%; */
    /* justify-content: space-around; */
    /* text-align: center; */
    margin-right: auto;
    margin-left: auto;
    padding-left: 1vh;
    padding-right: 1vh;
    max-width: 100vw;
}

    .Body > * {
        max-width: 100%;
    }

.content {
    padding-top: 1.1rem;
}

.navbar-toggler {
    background-color: rgba(255, 255, 255, 0.1);
}

.valid.modified:not([type=checkbox]) {
    outline: 1px solid #26b050;
}

.invalid {
    outline: 1px solid red;
}

.validation-message {
    color: red;
}


@media (min-width: 960px) {

}

.LeftMenu {
    display: flex;
    width: 300px;
    position: fixed;
}

.RightMenu {
    min-width: 300px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: fit-content;
    position: sticky;
    right: 5px;
}

@media (max-width: 1600px) {
    .RightMenu, .LeftMenu {
        position: static;
    }
}

.form-control {
    text-align: center;
}
