html {
    font-size: 14px;
    scroll-behavior: smooth;
}

.sdk {
    padding: 10px 30px 10px 30px;
    margin-top: 20px;
}

.sdk p {
    font-size: 15px;
}


.modalwindow {
    position: fixed;
    top: 0px;
    left: 0px;
    right: 0px;
    bottom: 0px;
    z-index: 10;
    display: flex;
    justify-content: center;
    align-items: center;
}


.modalwindow.error .data {
    border: 2px solid red;

}

.modalwindow.error .data li {
    list-style-type: none;

}


.modalwindow .back {
    position: absolute;
    top: 0px;
    left: 0px;
    right: 0px;
    bottom: 0px;
    background: rgba(103, 103, 103, 0.52);
}


.modalwindow .data {
    z-index: 11;
    padding: 20px 20px 20px 20px;
    background: White;
    width: 600px;
    max-height: 600px;
    overflow: auto;
}

.modalwindow .data li {
    list-style-type: none;
    word-wrap: break-word;
}

.userInfo {
    position: fixed;
    background: white;
    width: 300px;
    top: 0px;
    right: 20px;
    transition: all 1s ease;
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
    border: 2px solid #FFB3AE;
    padding: 10px 10px 5px 10px;
    font-size: 15px;
}

.userInfo li {
    list-style-type: none;
    word-wrap: break-word;
}

.sdk-switch-container {
    cursor: pointer;
    background: #28a745;
    display: inline-block;
    border-radius: 2em;
    padding: 2px 6px;
    height: 1.7em;
    overflow: hidden;
    color: #fff;
    font-weight: bold;
    font-family: monospace;
    position: relative;
    transition: background .5s;
}

.sdk-switch-container.off {
    background: #da4453;
    color: #fff;
}

.sdk-switch-container > span {
    margin: 0 1em 0 0;
    display: block;
    background: inherit;
    position: relative;
    transition: opacity .2s;
    transition-delay: .3s;
    top: unset;
}

.sdk-switch-container > span + span {
    margin: 0 0 0 1em;
    transform: translateY(-100%);
    top: -100%;
    opacity: 0;
}

.sdk-switch-container.off > span {
    opacity: 0;
    top: -100%;
}

.sdk-switch-container.off > span + span {
    opacity: 1;
    top: unset;
}

.sdk-switch-container .sdk-switch-slider {
    width: 1px;
    height: 1px;
    position: absolute;
    top: 50%;
    border: .6em solid #fff;
    border-radius: 100%;
    background: #fff;
    transform: translateY(-50%);
    right: .25em;
    transition: right .5s;
    z-index: 10;
}

.sdk-switch-container.off .sdk-switch-slider {
    right: calc(100% - 1.2em - 2px);
}

.sdk_messages {
    position: fixed;
    top: 0;
    left: 2em;
    z-index: 1000000;
}

.sdk_messages_item {
    border: 1px solid #c79292;
    padding: .1em .5em;
    margin-bottom: .2em;
    background: #eeeeee6b;
    transform: scale(1);
}

small.errortext {
    display: block;
    color: #E81F2F;
    font-family: 'Manrope';
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 24px;

    margin-left: 14px;
}

p {
    display: flex;
    align-items: center;
    /* margin-top: 0.25rem; */
    margin-bottom: 0;
}

div#toc {
    position: relative;
}

div.toc__icon-container {
    position: fixed;
    left: 5px;
    top: 5px;
    background: #FFDAD7;
    z-index: 99;
    border-radius: 15px;
    width: 50px;
    height: 50px;
    cursor: pointer;
}

div.toc__icon {
    position: relative;
    margin-top: 1.75rem;
    margin-left: 1rem;
}

.toc__icon, .toc__icon::before, .toc__icon::after {
    width: 1.5rem;
    height: 2px;
    background-color: #E81F2F;
    display: inline-block;
}

.toc__icon::before, .toc__icon::after {
    content: "";
    position: absolute;
    left: 0;
}

.toc__icon::before {
    top: -.5rem;
}

.toc__icon::after {
    top: .5rem;
}

div#innertoc {
    position: fixed;
    top: 0;
    left: 0;
    width: 380px;
    max-width: 90vw;
    height: 100vh;
    background: #ffffff;
    box-shadow: 0px 15px 55px rgb(0 0 0 / 25%);
    z-index: 100;
    transition: all .2s;
    transform: translateX(-150%);
    overflow-y: auto;
}

@media screen and (max-width: 520px) {
    div#innertoc {
        max-width: 100vw;
        width: 100vw;
    }
}

div#innertoc.expanded {
    transform: translate(0, 0);
}

.innertoc__header {
    display: flex;
    justify-content: end;
    align-items: center;
    height: 60px;
    position: sticky;
    background-color: white;
    top: 0px;
}

.innertoc__close-btn {
    cursor: pointer;
}

div#innertoc div.innertoc__close-btn::before, div#innertoc div.innertoc__close-btn::after {
    width: 1.5rem;
    height: 2px;
    background-color: #E81F2F;
    display: inline-block;
}

div#innertoc div.innertoc__close-btn::after {
    content: '';
    transform: rotate(-135deg);
    position: relative;
    right: 1.5rem;
}

div#innertoc div.innertoc__close-btn::before {
    content: '';
    transform: rotate(135deg);
}

div#toc > h3 {
    color: #6e4747;
    font-size: 17px;
    text-align: center;
    border-bottom: 2px solid #000;
}

div#toc.expanded {
    height: 9999px;
    width: 400px;
    overflow-y: auto;
}

div#innertoc ul {
    padding: 0 24px 0 24px;
    list-style: none;
}

div#innertoc li {
    font-family: 'Manrope';
    font-style: normal;
    font-weight: 600;
    font-size: 14px;
    line-height: 20px;

    margin-bottom: 8px;
}
div#innertoc li:first-child {
    margin-bottom: 12px;
}

@media screen and (max-width: 520px)  {
    div#innertoc li {
        margin-bottom: 8px;
        padding-left: 0px;
        font-size: 17px;
        letter-spacing: 0.01em;
        font-weight: 600;
    }
}

div#innertoc li a {
    color: #828282;
}
.link{
    color:blue;
    text-decoration: underline;
    cursor: pointer;
}

#bodyModalWindow .pre-wrapper>pre {
    background-color: #ffe;
    padding: 10px;
    font-size: .8em;
    line-height: 1em;
}

.mainwarn {
    position: fixed;
    top: 0;
    text-align: center;
    font-size: 1.2em;
    background: #ff0000;
    width: 100%;
    color: #fff;
    font-weight: bold;
    left: 0;
    right: 0;
}