﻿.fadeInDown {
    -webkit-animation-name: fadeInDown;
    animation-name: fadeInDown;
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}

@-webkit-keyframes fadeInDown {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0);
    }

    100% {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}

@keyframes fadeInDown {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0);
    }

    100% {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}

* {
    margin: 0;
    padding: 0;
    text-decoration: none;
    box-sizing: border-box;
    list-style: none;
}

.logo {
    background: #000;
    color: #fff;
    border-bottom: 1px solid #0163aa;
    padding: 10px;
    display: flex;
    height: 70px;
    align-items: center;
}
    .logo #anim_logo{
        display: flex;
    }

    .logo img, .logo a {
        height: 100%;
    }

    .logo a {
        margin-right: 30px;
    }

    .logo h1 {
        font-family: PTSansCaption, Open Sans,Arial,Helvetica,sans-serif;
        font-weight: bold;
    }
    .logo.first_entry {
        z-index: 20000;
        position: fixed;
        height: 100vh;
        width: 100vw;
        display: flex;
        justify-content: center;
    }
/*_____FLEX_____*/
.d_flex{
    display: flex;
}
.align_item_center{
    align-items: center;
}
/*____DLEX_END___*/
.body, .nav {
    font-family: Rubik, Open Sans,Arial,Helvetica,sans-serif;
}

.hljs {
    font-size: 16px;
    line-height: normal;
    font-family: monospace !important;
}

.body h1, h2, h3, h4 {
    margin: 25px 0 10px 0;
    font-weight: bold;
    line-height: 1.5;
}

.body h1 {
    margin-top: 0;
}

.body h2 {
    border-bottom: 2px solid #0163aa;
}

.body {
    overflow: hidden;
    max-width: 1400px;
    padding: 20px 45px;
    line-height: 28px;
    font-size: 16px;
}

    .body ul {
        padding-left: 40px;
        margin-bottom: 0;
    }

        .body ul li {
            margin-bottom: 0px;
        }

            .body ul li:before {
                content: "";
                display: inline-block;
                vertical-align: middle;
                width: 7px;
                height: 7px;
                margin-top: -1px;
                margin-left: -19px;
                margin-right: 12px;
                border-radius: 50%;
                background: #0163aa;
            }

    .body a {
        color: #2e87ca;
    }

    .body sup {
        color: red;
    }

    p{
        margin:15px 0 0px 0;
    }

    .body a:hover {
        text-decoration: underline;
    }

    .body blockquote {
        border-left: 3px solid rgba(0 0 0 / 10%);
        padding: 12px;
        margin: 10px 0 10px;
        background: #f8f8f8;
        line-height: 18px;
        font-size: 15px;
    }

        .body blockquote.red {
            border-left: 3px solid rgb(255 0 0 / 10%);
            background: #fff5f5;
        }

        .body blockquote.blue {
            border-left: 3px solid #bee5ff;
            background: #f5fbff;
        }

        .body blockquote.grey {
            border-left: 3px solid rgb(0 0 0 / 10%);
            background: #f8f8f8;
        }
        .body blockquote.orange {
            border-left: 3px solid #ffa500;
            background: #fff3de;
            line-height: 1.3rem;
        }

    .body .note {
        max-width: 100%;
        margin: 20px 0;
        padding: 20px;
        background-color: #fff;
        border: 1px solid #e7e7e7;
        border-radius: 0px;
    }

    .body .note .title{
        font-weight: bold;
    }

    .body .note p{
        margin:0 0 10px 0;
    }

    .body .note p:last-child{
        margin:0;
    }

    .body .note.red{
        background-color: #b63c3c;
        color:#ffffff;
    }

        .body .note header, .body blockquote header {
            font-weight: 600;
            color: #4b4b4b;
            margin-bottom: 6px;
            margin-top: -4px;
            font-size: 1.1em;
        }

        .body .note.info {
            padding: 20px 20px 18px 64px;
        }

            .body .note.info header:before {
                content: url("images/info.svg");
                box-sizing: content-box;
                display: block;
                width: 24px;
                height: 24px;
                margin-top: 2px;
                margin-left: -44px;
                padding-right: 20px;
                float: left;
            }
    /*_____TEXT_____*/
        .body .text_base_url {
            background: #f3f3f3;
            display: inline-block;
            padding: 0px 10px 0 0;
            margin-bottom: 10px;
            font-family: Comfortaa;
            font-size: 13px;
            font-weight: bold;
        }

        .body .text_base_url .post,
        .body .text_base_url .get,
        .body .text_base_url .json {
            color: #fff;
            padding: 3px;
            padding: 2px 0 2px 0;
            display: inline-block;
            width: 55px;
            text-align: center;
            margin-right: 10px;
        }

        .body .text_base_url .post {
            color: #66CC66;
            border-right: 1px solid #66CC66;
            font-weight: bold;
        }

        .body .text_base_url .json {
            background: #0099CC;
            color: #fff;
            font-weight: bold;
        }

        .body .text_base_url .post:hover {
            background: #66CC66;
            color: #fff;
            font-weight: bold;
        }

        .body .text_base_url .get {
            color: #0099CC;
            border-right: 1px solid #0099CC;
            font-weight: bold;
        }

        .body .text_base_url .get:hover {
            background: #0099CC;
            color: #fff;
            font-weight: bold;
        }
    /*__________*/
    .body .overlay {
        overflow-x: auto;
    }

    .body table {
        border-collapse: collapse;
        max-width: 100%;
        /*margin: 1.5rem 0;*/
        color: #241c2c;
        font-size: .9rem;
        border: 1px solid #e4dff2;
    }

        .body table th {
            padding: .5rem .75rem;
            vertical-align: bottom;
            border-top: 1px solid #e4dff2;
            background: #fbfafd;
            text-align: left;
            white-space: nowrap;
        }

        .body table td {
            padding: .5rem .75rem;
            vertical-align: baseline;
            border-top: 1px solid #e4dff2;
        }

        .body table tbody tr:hover {
            background: #fbfbfb;
        }
.body .lang{
    float:right;
    margin: 0 0 10px 5px;
}
.body .lang select{
    font-family: Comfortaa;
    font-size: 13px;
    font-weight: 700;
    padding: 7px 10px;
}
@media screen and (min-width: 800px) and (max-width: 870px) {
    .body .lang{
        float: none;
        margin: 0 0 10px 0;
    }
}
/*__________*/
.content_box {
    max-width: 100%;
    display: flex;
    position: relative;
}

.docs_sidebar {
    overflow: auto;
    min-width: 300px;
    position: -webkit-sticky !important;
    position: sticky !important;
    top: 0;
    bottom: 0;
    float: left;
    height: 100vh;
    z-index: 800;
    background: #fcfcfc;
    border-right: 1px solid #e5e5e5;
}

.docs_sidebar_mobile {
    display: none;
    position: -webkit-sticky;
    position: sticky;
    top: 12px;
    margin-right: -48px;
    box-shadow: 0 6px 10px 0 rgba(0,0,0,.08), 0 1px 18px 0 rgba(0,0,0,.06), 0 3px 5px -1px rgba(0,0,0,.08);
    border-radius: 50%;
    background: #fff;
    min-width: 48px;
    height: 48px;
    z-index: 1000;
    align-items: center;
    justify-content: center;
    left: 12px;
    cursor: pointer;
    margin-top: 10px;
}

    .docs_sidebar_mobile img {
        max-width: 20px;
    }
/*_________*/
.click_copy {
    cursor: pointer;
}
/*_________--*/
.nav header {
    padding: 20px;
    font-size: 18px;
    text-transform: uppercase;
    color: #333;
    font-weight: bold;
}

    .nav header .arrow {
        display: none;
        border-radius: 50%;
        background: #fff;
        min-width: 48px;
        height: 48px;
        position: absolute;
        z-index: 1000;
        align-items: center;
        justify-content: center;
        top: 12px;
        left: 12px;
        cursor: pointer;
    }

    .nav header img {
        width: 24px;
    }
.nav li b.group {
    color: #555;
    display: block;
    padding: 10px 20px;
}

.nav li a {
    color: #555;
    display: block;
    padding: 10px 20px 10px 30px;
}

    .nav li a:hover {
        text-decoration: underline;
    }
/*раскрытие списка при наведении*/
/*.nav li a:hover + ul{
	display:block;
}
.nav li > ul:hover{
	display:block;
}*/
.nav ul {
    display: none;
}

    .nav ul li a {
        display: block;
        padding: 5px 0 5px 40px;
        font-size: 14px;
    }

    .nav ul.open {
        display: block !important;
    }

.nav a.active {
    color: #0163aa !important;
    background: rgb(101 101 101 / 5%);
    border-right: 1px solid #0163aa;
}

/*________*/
.anchor {
    display: inline-block;
    width: 24px;
    margin-left: -24px;
    padding-right: 4px;
    text-align: center;
    font-size: 1em;
    color: transparent !important;
    float: left;
    font-weight: normal;
}

    .anchor:hover {
        color: red !important;
        text-decoration: none !important;
    }

.anchorActive {
    color: #0163aa !important;
}
/*_________*/
.header {
    font-weight: 700;
    font-size: 36px;
    margin: 10px 0 22px;
}
/*_________*/
code {
    color: #8d1a38;
}
/*__________*/
.test_method {
    background: #f8f8f8;
    padding: 10px;
}
.test_method button {
    cursor: pointer;
    background: #424141;
    height: 40px;
    padding: 0 10px;
    color: #fff;
    font-weight: bold;
    border-radius: 3px;
}

    .test_method button:hover {
        background: #333;
    }

    .test_method button:active {
        background: #fff;
        color: #333;
        border: 1px solid #333;
    }
.test_method input {
    padding: 10px;
    height: 40px;
}
/*______TABS_______*/
.wr-tabs .tabs {
    background-color: #fff;
    font-weight: bold;
    font-size: 14px;
    color: #bbb;
    margin-bottom: -1px;
}

    .wr-tabs .tabs:after {
        content: "";
        display: block;
        clear: both;
        height: 0;
    }

    .wr-tabs .tabs .tab {
        float: left;
        cursor: pointer;
        padding: 10px 20px;
    }

        .wr-tabs .tabs .tab:hover,
        .wr-tabs .tabs .tab.active {
            color: #000;
        }

        .wr-tabs .tabs .tab.active {
            border: 1px solid #ddd;
            border-top: 1px solid #0163aa;
            border-bottom: 1px solid #fff;
        }

.wr-tabs .content {
    border-top: 1px solid #ddd;
}

    .wr-tabs .content .tab-cont {
        display: none;
        padding-top: 15px;
    }

        .wr-tabs .content .tab-cont.active {
            display: block;
        }

/*___MEDIA____*/
@media screen and (max-width: 920px) {
    .wr-tabs .tabs .tab {
        padding: 5px;
    }
}

@media screen and (max-width: 800px) {
    .docs_sidebar {
        display: none;
    }

    .docs_sidebar_mobile {
        display: flex;
    }

    .arrow {
        display: flex !important;
    }

    .nav header {
        padding-left: 78px;
        padding-top: 27px;
    }

    .body {
        padding: 70px 10px 10px 10px;
    }

        .body h1 {
            padding-left: 60px;
        }

    .anсhor {
        float: initial;
        margin-left: 0;
    }

    .wr-tabs .tabs .tab.active {
        border: none;
    }

    .body blockquote {
        margin-left: -10px;
        margin-right: -10px;
    }

    .body table th {
        white-space: normal;
    }
}

@media screen and (max-width: 700px) {
    .logo h1 {
        font-size: 27px;
    }
}

@media screen and (max-width: 500px) {
    .logo h1 {
        font-size: 20px;
    }
}