@import "./normalize.css";
@import "./spacing.css";
@import "./typography/typography.css";
@import "./components/button.css";
@import "./components/search__component.css";
@import "./components/journal-articles__card.css";
@import "./components/drawer.css";
@import "./components/card.css";
@import "./components/auth_input.css";
@import "./components/breadcrumbs.css";

body {
    margin: 0;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.wrapper-article {
    max-width: 1040px;
}

.navbar {
    height: 100% !important;
}

.wrapper-article strong {
    font-weight: bold;
}

.wrapper-article em {
    font-style: italic;
}

/*.wrapper-article ol {*/
/*    display: block;*/
/*    list-style-type: decimal;*/
/*    margin-block-start: 1em;*/
/*    margin-block-end: 1em;*/
/*    margin-inline-start: 0px;*/
/*    margin-inline-end: 0px;*/
/*    padding-inline-start: 40px;*/
/*}*/

.wrapper-article p {
    display: block;
    margin-block-start: 1em;
    margin-block-end: 1em;
    margin-inline-start: 0px;
    margin-inline-end: 0px;
}

.wrapper-article li {
    display: list-item;
    text-align: -webkit-match-parent;
}

header {
    height: 90px;
}

.height {
    height: 100%;
}

a {
    color: black;
    text-decoration: none;
}

.bg-1 {
    background: rgba(0, 1, 9, 0.85);
}

.bg-2 {
    background: rgba(0, 1, 9, 0.87);
}

.row {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.no-wrap {
    flex-wrap: nowrap;
}

.flex-center {
    align-items: center;
}

.flex-end {
    align-items: flex-end;
}

.flex {
    align-items: stretch;
}

.text-centr {
    text-align: center;
}

.text-right {
    text-align: right;
}

.col {
    display: flex;
    flex-direction: column;
}

.space-between {
    justify-content: space-between;
}

.spacer {
    flex-grow: 1;
}

.align-centr {
    align-items: center;
}

.align-left {
    align-items: left;
}

.flex-end-self {
    align-self: flex-end;
}

.sidebar-back {
    background: white;
    box-shadow: none;
}

.logo {
    height: 120px;
}

.primary {
    color: #536FFF;
}

/* .row>* {
    width: auto;
} */
.secondary {
    color: #FF6484;
}

.white {
    color: white;
}

.journal-articles {
    position: relative;
}

.journal-articles::after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-image: url('../img/steps.svg');
    background-repeat: no-repeat;
    background-position: center right;
    background-origin: border-box;
    z-index: -1;
}

/*ol {*/
/*    counter-reset: num;*/
/*    margin: 0 0 0 35px;*/
/*    padding: 15px 0 5px 0;*/
/*    font-size: 18px;*/
/*}*/

/*ol li {*/
/*    position: relative;*/
/*    margin: 0 0 0 0;*/
/*    padding: 0 0 10px 0;*/
/*}*/

/*ol li:before {*/
/*    content: counter(num) '.';*/
/*    counter-increment: num;*/
/*    display: inline-block;*/
/*    position: absolute;*/
/*    top: 2px;*/
/*    left: -26px;*/
/*    width: 20px;*/
/*    color: #ef6780;*/
/*    text-align: right;*/
/*}* / /*todo no styles for list in article*/

.wrapper-article ul {
    list-style-type: disc!important;
    display: block;
    margin-block-start: 1em;
    margin-block-end: 1em;
    margin-inline-start: 0px;
    margin-inline-end: 0px;
    padding-inline-start: 40px;
}

.wrapper-article ul ol {
    margin-block-start: 0px;
    margin-block-end: 0px;
}

.wrapper-article ol {
    display: block;
    list-style-type: decimal;
    margin-block-start: 1em;
    margin-block-end: 1em;
    margin-inline-start: 0px;
    margin-inline-end: 0px;
    padding-inline-start: 40px;
}

.header-link {
    padding: 20px 40px;
}

.active {
    border-bottom: 2px solid #536FFF;
}

select {
    appearance: none;
    background-color: transparent;
    border: none;
    padding: 10px;
    border-radius: 10px;
    margin: 0;
    width: 100%;
    font-family: inherit;
    font-size: inherit;
    cursor: inherit;
    line-height: inherit;
    outline: none;
    background-color: #536FFF;
    color: white;
}

.flex-container {
    min-height: 100%;
}

.container-fluid {
    flex-grow: 1;
}

footer {
    flex-shrink: 0;
}

select::-ms-expand {
    display: none;
}

.about-list > li:before { /*собственно сам маркер*/
    text-align: center;
    border: 3px solid blue;
    border-radius: 20px;
    width: 10px;
    height: 10px;
    float: left;
    margin-right: 12px;
    overflow: hidden;
    content: ""; /*здесь можно в символьном виде задать отображение маркера*/
}
.nav-btn {
    color: white;
    background-color: #536FFF;    
    width: 100%;
    padding: 10px 0;
} 

.left-menu {
    width: 200px;
    position: fixed;
    left: 0;
    top: 0;
}

.navitem {
    cursor: pointer;

}

.cursor-pointer {
    cursor: pointer;
}

.nav-ul {
    display: none;
    position: absolute;
    /* top: 100%; */
    background-color: #536FFF;
}

.nav-item:hover > .nav-ul {
    display: inherit;
}

.nav-li {
    padding: 10px 10px;
    color: white;
    min-width: 170px;
    float: none;
    display: list-item;
    position: relative;
}

.nav-link-white {
    color: white;
}

.nav-li:hover {
    background-color: #5370ff9f;
}

.nav-link {
    font-size: 18px;
    font-weight: 500;
}

.fixed-top {
    right: initial !important;
}

.d-contents {
    display: none;
}

@media screen and (max-width: 1904px) {
    .wrapper {
        max-width: 1244px;
    }

    .close-up {
        width: 580px;
        height: 700px;
    }

}

@media screen and (max-width: 1264px) {

    .close-up {
        width: 390px;
        height: 467px;
    }

    .menu {
        display: none;
    }

}

@media screen and (max-width: 860px) {

    .close-up {
        display: none;
    }

    footer .align-centr {
        align-items: flex-start;
    }

    .menu {
        display: none;
    }

    .sidebar-back {
        box-shadow: 10px 0 30px black;
        padding: 0 20px;
        height: 100%;

    }

    .text-centr-md {
        text-align: center;
        margin-bottom: 18px;
    }

    .row {
        margin-right: 0;
    }

    .d-contents {
        display: contents;
    }

}

@media screen and (max-width: 600px) {

    .close-up {
        display: none;
    }

    .menu {
        display: none;
    }
}

.material-icons-outlined {
    font-family: "Material Icons";
    font-size: 2rem;
}

.nav-link:hover {
    text-decoration: underline !important;
}