@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: var(--zealous-bg);
    overflow-x: clip;
    height: -webkit-fill-available;
    color: var(--zealous-text);
}

* {
    transition: all 0.1s cubic-bezier(0.22, 0.61, 0.36, 1);
}
/*
div {
    transition: all 0.3s;
}*/

.Start.SystemPanel > div {
    box-shadow: none;
}

.Start.SystemPanel {
    transform: translateY(-100px);
}

.Start {
    opacity: 0;
    z-index: 2;
}

    .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: darkcyan;
    }

    40% {
        background-color: darkgray;
    }

    70% {
        background-color: var(--info);
    }

    100% {
        background-color: darkred;
    }
}

.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: 1600px) {
    .Main {
        justify-content: center;
        flex-wrap: wrap;
    }

    .Body {
        margin-bottom: 4vh;
    }
}

.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: calc(100vw - var(--right-menu-width));
    align-items: center;
    padding-top: min( max(1vw, 4px), 10px);
}

    .Body > * {
        max-width: 100%;
    }

.RightMenu {
    width: var(--right-menu-width);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: fit-content;
    position: sticky;
    right: 3px;
}

@media (max-width: 1600px) {
    .RightMenu, .LeftMenu {
        position: static;
        width: auto;
        padding-left: 1vh;
        padding-right: 1vh;
    }

    .Body {
        max-width: 100vw;
    }
}

.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;
}


.form-control {
    text-align: center;
}

a {
    color: var(--link-color);
    text-decoration: none;
    transition: color var(--transition), text-decoration var(--transition);
}

    a:hover,
    a:focus {
        color: var(--link-hover-color);
    }

    a:visited {
        color: var(--link-visited-color);
    }

    a:active {
        color: var(--link-active-color);
    }

/* ���� ������, ����� ������ � ���������/����� ������ ���� ���� ������� */
.card a,
.bg-dark a,
.bg-gradient-main a {
    color: var(--zealous-blue);
}

    .card a:hover,
    .bg-dark a:hover,
    .bg-gradient-main a:hover {
        color: var(--zealous-purple);
    }
