﻿@import url("font/font.css");

:root {
    --white: #ffffff;
    --white-alpha8: rgba(255, 255, 255, 0.8);
    --color: #f6a50d;
    --gray: #272727;
    --light-gray: #888888;
    --blueOrchid: #4141E6;
    --purple: #5541E6;
    --black: #000000;
    --black-alpha5: rgba(0, 0, 0, 0.5);
    --black-alpha15: rgba(0, 0, 0, 0.15);
    --black-alpha05: rgba(0, 0, 0, 0.05);
}

/* -----------------------------------
   Reset default browser styles
  ------------------------------------- */

* {
    line-height: 1.5;
    margin: 0;
    padding: 0;
    border: none;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

html {
    font-size: 62.5%;
    -webkit-text-size-adjust: 100%;
}

body {
    padding: 0;
    margin: 0;
    font-size: 1.4rem;
    font-family: 'SFProText', Arial, Helvetica, sans-serif;
    font-weight: 400;
    position: relative;
    min-height: 100vh;
    background: var(--white);
    background: #fff;
    /*fall back */
    color: var(--gray);
    /*fall back */
    line-height: 1.5;
}

::-webkit-scrollbar-button {
    display: none
}

::-webkit-scrollbar {
    background-color: transparent;
    width: 4px;
    height: 4px;
}

::-webkit-scrollbar-track {
    background-color: transparent;
    transition: .25s all ease;
}

::-webkit-scrollbar-track:hover {
    background-color: #ffffff
}

::-webkit-scrollbar-thumb {
    background-color: rgba(0, 0, 0, 0.3);
    transition: .25s all ease;
}

::-webkit-scrollbar-thumb:hover {
    background-color: rgba(0, 0, 0, 0.3);
}

a {
    text-decoration: none;
    outline: none !important;
    cursor: pointer;
    color: var(--purple);
    /*fall back */
}

a:hover {
    outline: none !important;
}

b,
strong {
    font-weight: bold !important;
}

header,
section,
article,
footer,
aside {
    display: block;
}

ul,
ol {
    list-style: none;
}

ul {
    padding: 0 0 0 10px;
    margin: 0;

}

q {
    quotes: none;
}

p {
    line-height: 1.43;
}

table,
table td {
    padding: 0;
    border-collapse: collapse;
}

img {
    max-width: 100%;
    background: transparent;
    border: 0 none;
    font-weight: inherit;
    margin: 0;
    padding: 0;
    outline: 0;
}

embed {
    vertical-align: top;
}

input,
button {
    outline: none;
    border-radius: 0;
}

button {
    cursor: pointer;
    outline: none;
}

button:focus {
    outline: none;
}

input::-ms-clear,
input::-ms-reveal {
    display: none;
}

button::-moz-focus-inner {
    border: 0;
}

.noselect {
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

input,
select,
textarea {
    -moz-appearance: none;
    appearance: none;
    background: transparent;
    -webkit-touch-callout: text;
    -webkit-user-select: text;
    -khtml-user-select: text;
    -moz-user-select: text;
    -ms-user-select: text;
    user-select: text;
    border-radius: 0;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
a {
    margin: 0;
    padding: 0;
}

h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 10px;
}

h2 {
    font-size: 2.6rem;
    margin: 30px 0px 10px;
    border-bottom: solid 1px;
    border-color: var(--black-alpha15);
    border-color: rgba(0, 0, 0, 0.15);
    /*fall back */

}

h2,
h3 {
    font-weight: 400;
    margin-bottom: 10px;
}

h3 {
    font-size: 2rem;
}

.grid {
    position: relative;
    display: flex;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    transition: .3s linear;
}

.align-center {
    align-items: center;
    align-self: center;
}

.align-left {
    align-items: left;
    align-self: left;
}

.align-right {
    align-items: right;
    align-self: right;
}

.copyright {
    float: left;
    width: 50%
}

.social {
    float: right;
    width: 50%;
    text-align: right
}

.social a {
    display: inline-block;
    margin: 0 5px;
    filter: grayscale(100%);
    opacity: 0.5;
    transition: 0.5s ease all;
}

.social a:hover {
    filter: grayscale(0);
    opacity: 1;
    transition: 0.5s ease all;
}




.justify-between {
    justify-content: space-between;
}

.justify-center {
    justify-content: center;
}

.vertical {
    flex-direction: column;
    flex-wrap: nowrap;

}

.inlineBlock {
    display: inline-block;
}

.block {
    display: block;
}

/* -----------------------------------
   main styles
  ------------------------------------- */

.wrapper {
    padding-top: 70px;
}

header {
    position: fixed;
    display: flex;
    width: 100%;
    z-index: 10;
    padding: 10px 10px;
    top: 0;
    height: auto;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
    background-color: var(--blueOrchid);
    background-position: center;
    background-size: cover;
    overflow: hidden;
}

header::before {
    content: '';
    position: absolute;
    width: 50%;
    height: 100%;
    left: 50%;
    top: 50%;
    background-color: var(--purple);
    border-radius: 50%;
    filter: blur(50px);
    animation: 25s ease 0s moving infinite;
    z-index: -1;
}

/* header::after {
    content: '';
    position: absolute;
    width: 50%;
    height: 100%;
    left: auto;
    right: 0;
    top: 0;
    background-image: url(../images/headerShape.svg);
    background-repeat: no-repeat;
    background-position: 100% 0%;
    background-size: contain;
    animation: 15s ease 0s movingRight infinite;
    z-index: -1;
} */

@keyframes moving {
    0% {
        transform: translate(-50%, -50%) scale(1, 1);
    }

    50% {
        transform: translate(-50%, -50%) scale(1.8, 1.8);
    }

    100% {
        transform: translate(-50%, -50%) scale(1, 1);
    }
}

/* @keyframes movingRight {
    0% {
        filter: blur(40px);
        transform: translate(0, 0) scale(1, 1);
    }

    50% {
        filter: blur(50px);
        transform: translate(0, 0) scale(1.2, 1.2);
    }

    100% {
        filter: blur(40px);
        transform: translate(0 0) scale(1, 1);
    }
} */

.headerWrap {
    z-index: 10;
}

.logo {
    /* height: 4rem; */
    max-width: 10.1rem;
}

.logo img {
    height: 100%;
    width: auto;
}

.logobg {
    max-width: 300px;
    background: #fff;
    overflow: hidden;
    padding: 10px 44px !important;
    position: relative;
    left: -55px;
    border-top-right-radius: 50px;
    border-bottom-right-radius: 50px;

}

.search {
    position: relative;
}

.search input {
    max-width: 400px;
    width: 400px;
    height: 45px;
    border: solid 1px rgba(0, 0, 0, 0.1);
    padding: 15px 40px 15px 15px;
    font-size: 1.6rem;
    border-radius: 4px;
}

.select label {
    text-transform: uppercase;
    font-size: 1.2rem;
    color: #fff;
}

.select {
    display: inline-block;
    padding: 0 5px;
    color: var(--white);
}

.search button {
    background: transparent;
    color: rgba(124, 55, 55, 0.3);
    position: absolute;
    right: 10px;
    top: 10px;
    transition: .3s ease;
}

.search button:hover {
    color: rgba(0, 0, 0, 1);
    transition: .3s ease;
}

.selectOption select {
    appearance: none;
    outline: 0;
    border: 0;
    box-shadow: none;
    flex: 1;
    padding: 0 2em 0 1em;
    background-image: none;
    cursor: pointer;
    font-size: 1.45rem;
    color: var(--white);
}

.selectOption select option {
    color: #000;
}

/* Remove IE arrow */
.selectOption select::-ms-expand {
    display: none;
}

/* Custom Select wrapper */
.selectOption {
    position: relative;
    display: flex;
    width: auto;
    width: 130px;
    /*fall back */
    height: 35px;
    border-radius: 0px;
    overflow: hidden;
    background-color: transparent;
    border: solid 1px rgba(255, 255, 255, 1);
}

/* Arrow */
.selectOption::after {
    content: '';
    border: solid var(--white);
    border-width: 0 1px 1px 0;
    transform: rotate(45deg);
    position: absolute;
    top: 11px;
    right: 15px;
    padding: 3px;
    transition: .25s all ease;
    pointer-events: none;
}

aside {
    z-index: 1;
    width: 250px;
    left: 0px;
    top: 0;
    position: fixed;
    height: 100%;
    padding: 100px 0 90px;
    /*margin-top: 50px;*/
    max-height: 100%;
    overflow-y: auto;
    border-right: solid 1px rgba(0, 0, 0, 0.1);
    background-color: var(--white);
    background-color: #fff;
    /*fall back */
}

nav {
    padding-top: 20px;
}

nav ul .subNavInner {
    padding-left: 1em;
    overflow: hidden;
    display: none;
    background-color: var(--black-alpha05);
    background-color: rgba(0, 0, 0, 0.05);
}

nav ul li {
    margin: 15px 0;
}

nav ul li a {
    color: var(--gray);
    /*fall back */
    font-size: 1.4rem;
    display: block;
}

nav ul li a.subNav {
    width: 100%;
    display: block;
    position: relative;
}

nav ul li a.subNav:after {
    content: '';
    border: solid var(--gray);
    border: solid #272727;
    /*fall back */
    border-width: 0 2px 2px 0;
    transform: rotate(-45deg);
    position: absolute;
    top: 5px;
    right: 15px;
    padding: 3px;
    transition: .25s all ease;
    pointer-events: none;
}

nav ul li a.subNav.block:after {
    transform: rotate(45deg);
}

nav ul li a.subNav.block {
    font-weight: 700;
}

nav ul .subNavInner.block {
    display: block;
}

nav ul li a.active {
    color: var(--purple);
    /*fall back */
    font-weight: bold;
}

.mainContainer {
    padding-left: 250px;
    height: calc(100% - 136px);
    position: relative;
    overflow-y: auto;

}

.mainContainer.heightFull {
    height: calc(100vh - 131px);
}

.mainContainer .contWrap li {
    position: relative;
    padding: 5px 0px 5px 20px;
    word-break: break-word;
}

.mainContainer .contWrap li:before {
    content: '';
    position: absolute;
    width: 7px;
    height: 7px;
    background-color: var(--light-gray);
    background-color: #888888;
    /*fall back */
    left: 0;
    top: 12px;
    border-radius: 2px;
}

.mainContainer .contWrap li li:before {
    background-color: transparent;
    border: solid 1px;
    border-color: var(--light-gray);
    border-color: #888888;
    /*fall back */
}

.mainContainer code {
    background-color: var(--black-alpha05);
    background-color: rgba(0, 0, 0, 0.05);
    /*fall back */
    padding: 2px 5px;
    border-radius: 2px;
    font-size: 1.2rem;
    word-break: break-all;
}

.mainContainer p {
    margin-bottom: 15px;
}

.warning {
    background-color: rgba(201, 122, 126, 0.05);
    border: solid 1px;
    border-color: rgba(201, 122, 126, 0.3);
    padding: 10px 10px 10px 40px;
    position: relative;
    margin-top: 10px;

}

.ico-warning {
    width: 15px;
    height: 15px;
    color: red;
    position: absolute;
    left: 15px;
    top: 14px;
}

.apiInfo.contWrap,
.contWrap {
    display: inline-block;
    /* width: calc(100% - 480px); */
    width: calc(100% - 50%);
    padding: 20px 30px;
    margin-top: 40px
}

.contWrap.fullWidth {
    width: 100%;
}

.mainContainer .attribute {
    padding-top: 25px;
}

.mainContainer table {
    width: 100%;
    margin-bottom: 10px;
    table-layout: fixed;
}

.mainContainer table th,
.mainContainer table td {
    border-bottom: solid 1px;
    border-color: rgba(0, 0, 0, 0.15);
    /*fall back */
    text-align: left;
    word-wrap: break-word;
}

.mainContainer table td a {
    font-weight: 600;
}

.mainContainer table th {
    padding: 0px 10px 10px 0;
    text-transform: uppercase;
    font-size: 1.5rem;
    font-weight: 700;
}

.mainContainer table td {
    padding: 10px 10px 10px 0;
}

.mainContainer table td:first-child {
    color: var(--light-gray);
    color: #888888;
    /*fall back */
}

.mainContainer table td span {
    display: block;
}

.mainContainer table td span.attName {
    color: var(--gray);
    /*fall back */
    font-size: 1.6rem;
}

.mainContainer table td span.caption,
.caption {
    display: inline-block;
    cursor: help;
    text-transform: uppercase;
    border-bottom: dotted 1px;
    border-color: #f6a50d;
    /*fall back */
    border-color: var(--color);

    position: relative;
}

.attDiscription {
    position: absolute;
    background-color: var(--white);
    background-color: #fff;
    /*fall back */
    text-align: center;
    border-radius: 4px;
    padding: 15px;
    width: max-content;
    max-width: 300px;
    cursor: default;
    visibility: hidden;
    display: none;
    opacity: 0;
    transition: .3s ease;
    text-transform: none;
}

.attDiscription.top {
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
}

.attDiscription:after,
.attDiscription:before {
    content: '';
    left: 50%;
    border: solid transparent;
    height: 0;
    width: 0;
    position: absolute;
    pointer-events: none;
}

.attDiscription.top:after,
.attDiscription.top:before {
    top: 100%;
}

.attDiscription.top:before {
    border-color: #e6ebf3 rgba(245, 56, 56, 0)rgba(245, 56, 56, 0);
    border-width: 11px;
    margin-left: -11px;
}

.attDiscription.top:after {
    border-color: #ffffff hsla(0, 0%, 100%, 0)hsla(0, 0%, 100%, 0);
    border-width: 10px;
    margin-left: -10px;
}

section.attribute table td span.caption:hover .attDiscription,
.caption:hover .attDiscription {
    visibility: visible;
    display: block;
    opacity: 1;
}

section.attribute table td span.caption:hover .attDiscription.top,
.caption:hover .attDiscription.top {
    box-shadow: 0 8px 20px 9px rgba(0, 0, 0, 0.1);
}

.apiDetails {
    position: fixed;
    display: inline-block;
    width: calc(50% - 125px);
    height: calc(100% - 70px);
    top: 115px;
    right: 0;
    background: #272727;
    color: var(--white);
    color: #fff;
    /*fall back */
    color: #fff;
    padding: 25px 15px 15px;
}


.tab ul.tab-menu {
    width: 100%;
    overflow: hidden;
    overflow-x: auto;
    white-space: nowrap;
    padding: 0;
}

.tab ul.tab-menu>li {
    position: relative;
    float: left;
    cursor: pointer;
    width: 50%;
}

.tab ul.tab-menu>li.active {
    z-index: 2;
}

.tab ul.tab-menu>li.active a {
    color: var(--white);
    color: #fff;
    /*fall back */
    background-color: var(--color);
    background-color: #f6a50d;
    /*fall back */
}

.tab ul.tab-menu>li>a {
    display: block;
    min-width: 120px;
    padding: 0 10px;
    max-width: 300px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    font-size: 15px;
    line-height: 40px;
    text-align: center;
    color: var(--white);
    color: #fff;
    /*fall back */
    background-color: var(--white-alpha1);
    background-color: rgba(255, 255, 255, 0.1);
    /*fall back */
    border-radius: 100px;
}

.tab .tab-content>div {
    margin-top: -2px;
    position: relative;
    padding: 5px;
    display: none;
}

.tab .tab-content>div.view {
    display: block;
    width: 100%;
    min-height: 200px;
}

.link {
    padding: 18px 60px 18px 10px;
    position: relative;
    background-color: var(--black-alpha05);
    background-color: rgba(0, 0, 0, 0.05);
    /*fall back */
}

.copy span {
    position: absolute;
    right: 15px;
    top: 10px;
    width: 40px;
    height: 40px;
    padding: 12px;
    border-radius: 50%;
    cursor: pointer;
    background-color: var(--black-alpha15);
    background-color: rgba(0, 0, 0, 0.15);
    /*fall back */
    transition: 0.3s all ease;
    z-index: 9;
}

.copy span:hover {
    transform: scale(1.2);
}

.ico-copy {
    color: var(--gray);
    /*fall back */
    width: 18px;
}

.apiDetails .ico-copy {
    color: var(--white);
    color: #fff;
    /*fall back */
}

.apiDetails .copy span {
    background-color: var(--white-alpha1);
    background-color: rgba(255, 255, 255, 0.1);
    /*fall back */
}

.codeType {
    border-bottom: solid 1px;
    border-top: solid 1px;
    border-color: var(--white-alpha1);
    border-color: rgba(255, 255, 255, 0.1);
    /*fall back */
    margin: 0px -15px;
    padding: 10px 0;
    overflow: hidden;
    height: 60px;
}

.switch {
    position: absolute;
    top: 10px;
    left: 50%;
    width: 160px;
    height: 40px;
    text-align: center;
    margin: 0px 0 0 -80px;
    background: #e86d04;
    transition: all 0.2s ease;
    border-radius: 4px;
}

.switch span {
    position: absolute;
    width: 20px;
    height: 4px;
    top: 50%;
    left: 50%;
    margin: -2px 0px 0px -4px;
    background: #fff;
    display: block;
    transform: rotate(-45deg);
    transition: all 0.2s ease;
}

.switch span:after {
    content: "";
    display: block;
    position: absolute;
    width: 4px;
    height: 12px;
    margin-top: -8px;
    background: #fff;
    transition: all 0.2s ease;
}

input[type=radio] {
    display: none;
}

.switch label {
    cursor: pointer;
    color: rgba(0, 0, 0, 0.3);
    width: 60px;
    line-height: 40px;
    transition: all 0.2s ease;
}

label[for=req],
label[for=proReq] {
    position: absolute;
    left: 15px;
    height: 20px;
}

label[for=res],
label[for=proRes] {
    position: absolute;
    right: 15px;
}

#res:checked~.switch,
#proRes:checked~.switch {
    background: #c55200;
}

#req:checked~.switch label[for=req],
#proReq:checked~.switch label[for=proReq] {
    color: #fff;
}

#res:checked~.switch label[for=res],
#proRes:checked~.switch label[for=proRes] {
    color: #fff;
}


.tabCode ul.tab-menu>li {
    width: auto;
    margin-top: 10px;
}

.tabCode ul.tab-menu>li a {
    background-color: transparent;
    color: var(--white-alpha5);
    color: rgba(255, 255, 255, 0.5);
    /*fall back */
    border-radius: 0;
    width: auto;
    min-width: auto;
    text-transform: uppercase;
}

.tabCode ul.tab-menu>li.active a {
    background-color: transparent;
    color: var(--color);
    color: #f6a50d;
    /*fall back */
    border-bottom: solid 2px;
    border-color: var(--color);
    border-color: #f6a50d;
    /*fall back */
}

.tabCode .tab-content {

    border-top: solid 1px;
    border-color: var(--white-alpha1);
    border-color: rgba(255, 255, 255, 0.1);
    /*fall back */
}

.tabCode .tab-content>div {
    background-color: var(--black-alpha5);
    background-color: rgba(0, 0, 0, 0.5);
    /*fall back */
    padding: 0 15px 15px;
    margin-top: 10px;
    border-radius: 10px 10px 0 0;
    height: calc(100vh - 313px);
}

.codeSection {
    min-height: 200px;
    display: block;
    background-color: var(--black-alpha5);
    background-color: rgba(0, 0, 0, 0.5);
    /*fall back */
    padding: 0 15px 15px;
    margin-top: 10px;
    border-radius: 10px 10px 0 0;
    height: calc(100vh - 313px);
    position: relative;
}

.code {
    overflow-y: auto;
    position: relative;
    width: 100%;
    height: 100%;
    color: #bed6ff;
    line-height: 1.7;
    word-break: break-word;
}

.code pre {
    white-space: pre-line;
    left: 0;
    margin: 0;
    padding: 0;
}

footer {
    z-index: 2;
    background-color: #f8f8f8;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
    position: absolute;
    bottom: 0;
    padding: 20px;
}

/*.mobileNav {
    position: relative;
    top: 7px;
    width: 20px;
    height: 20px;
    border-radius: 5px;
    display: none;
    margin-right: 10px;
}*/

.mobileFilter {
    position: absolute;
    background-image: url(../images/filter.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    /* top: 26px; */
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    right: 50px;
    display: none;
    z-index: 999
}

.mobileNav {
    position: absolute;
    /* top: 25px; */
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    border-radius: 5px;
    display: none;
    margin-right: 0;
    color: #fff;
    right: 10px;
    z-index: 999
}


.mobileNav span {
    position: absolute;
    right: 0px;
    top: 10px;
    width: 20px;
    height: 2px;
    background-color: #fff;
}


.mobileNav:after,
.mobileNav:before {
    content: '';
    position: absolute;
    right: 0px;
    width: 20px;
    height: 2px;
    border-radius: 5px;
    background-color: #fff;
}

.mobileNav:after {
    top: 16px;
}

.mobileNav:before {
    top: 4px;
}

.mobileNavClose {
    width: 20px;
    height: 20px;
    position: absolute;
    right: 10px;
    top: 7px;
    display: none;
}

.mobileNavClose:before,
.mobileNavClose:after {
    content: '';
    width: 20px;
    height: 1px;
    background-color: var(--gray);
    background-color: var(--gray);
    /*fall back */
    position: absolute;
    right: 0px;
    top: 10px;
}

.mobileNavClose:before {
    transform: rotate(45deg);
}

.mobileNavClose:after {
    transform: rotate(-45deg);
}

.note {
    font-size: 1.1rem;
}

.string {
    color: #2aa198
}

.keywords {
    color: #859900
}

.comments {
    color: #5f6f6f;
}

.built {
    color: #dc322f;
}

.section {
    padding-top: 70px;
}


/*
.tabs {
    position: relative;
    min-height: 200px;
    clear: both;
    margin: 10px 0;
    text-align: center;
}

.tab {
    display: inline-block;
}

.tab label {
    color: var(--white);
    background-color: var(--white-alpha1);
    padding: 10px 50px;
    margin-left: -1px;
    position: relative;
    left: 1px;
    border-radius: 25px;
    cursor: pointer;
}

.tab [type="radio"] {
    opacity: 0;
}

.content {
    position: absolute;
    text-align: left;
    top: 28px;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 20px 0;
    overflow: hidden;
}

.content>* {
    opacity: 0;
    transform: translateX(0);
    transition: all 0.6s ease;
}

[type="radio"]:focus~label {
    ouline: 2px solid blue;
}

[type="radio"]:checked~label {
    color: var(--white);
    background-color: var(--color);
    z-index: 2;
}

[type="radio"]:checked~label~.content {
    z-index: 1;
}

[type="radio"]:checked~label~.content>* {
    opacity: 1;
    transform: translateX(0);
} */


.tabs {
    position: relative;
    min-height: 100%;
    text-align: center;
}

.tab,
.tab2,
.tab3 {
    display: inline-block;
}

.tab,
.tab2,
.tab3 {
    text-decoration: none;
}

.tab2 {
    text-decoration: none;
}

.tab label,
.tab2 label,
.tab3 label {
    padding: 10px 35px;
    margin-left: -1px;
    position: relative;
    left: 1px;
    height: 100%;
    line-height: 24px;
    overflow: hidden;
    text-align: center;
    z-index: 1;
    border-radius: 25px;
    color: var(--white);
    color: #fff;
    /*fall back */
    /*background-color: var(--white-alpha1); */
    background-color: rgba(255, 255, 255, 0.1);
    cursor: pointer;
}

.tab [type=radio],
.tab2 [type=radio],
.tab3 [type=radio] {
    display: none;
}

.content,
.content2 {
    position: absolute;
    top: 28px;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gray);
    background: #272727;
    /*fall back */
    padding: 15px 0px 25px;
    margin-top: 25px;
    z-index: 1
}

[type=radio]:checked~label {
    color: var(--white);
    color: #fff;
    /*fall back */
    background-color: var(--purple);
    /*fall back */
    z-index: 2;
}

[type=radio]:checked~label~.content {
    z-index: 2;
}

[type=radio]:checked~label~.content2 {
    z-index: 3;
}

.background_tab {
    float: left;
    padding: 10px 10px 26px;
    margin-left: -1px;
    position: relative;
    left: 2px;
    height: 100%;
    line-height: 24px;
    overflow: hidden;
    text-align: center;
    font-size: 12px;
    font-family: verdana;
    margin-top: 14px;
    width: 729px;
}

.requestResTab label,
.requestResTab [type=radio]:checked~label {
    background-color: transparent;
    color: rgba(0, 0, 0, 1);
    position: relative;
    padding: 10px;
    border-radius: 2px;
}

.requestResTab [type=radio]:checked~label {
    color: var(--white);
    color: #fff;
    /*fall back */
}

.reqtab,
.reqtab1 {
    position: relative;
}

.reqtab:before,
.reqtab1:after {
    content: '';
    position: absolute;
    background: var(--blueOrchid);
    left: 0;
    margin-left: -10px;
    border-radius: 4px 0 0 4px;
    width: 120%;
    height: 100%;
    top: 0;
    z-index: -1;
}

.reqtab1:after {
    left: auto;
    right: 0;
    margin-right: -10px;
    border-radius: 0px 4px 4px 0px;

}

.tabInnerContent {
    text-align: left;
}

.reqtab2 {
    border-top: solid 1px;
    border-color: var(--white-alpha1);
    border-color: rgba(255, 255, 255, 0.1);
    /*fall back */
}

.reqtab2:before {
    content: '';
    position: absolute;
    left: 0;
    top: 47px;
    width: 100%;
    height: 1px;
    background-color: var(--white-alpha1);
    background-color: rgba(255, 255, 255, 0.1);
    /*fall back */
}

.reqtab2 label {
    color: var(--white-alpha5);
    color: rgba(255, 255, 255, 0.5);
    /*fall back */
}


.response::before {
    display: none;
}

.reqtab2 [type=radio]:checked~label {
    color: var(--white);
    /*fall back */
    border-bottom: solid 2px;
    border-color: var(--white);
    /*fall back */
}

.codeSect {
    background-color: var(--black-alpha5);
    background-color: rgba(0, 0, 0, 0.5);
    /*fall back */
    padding: 0 15px 15px;
    border-radius: 10px 10px 0 0;
    height: calc(100vh - 198px);
    margin-top: -10px;
}

.filter {
    padding: 0;
    z-index: 10;
}


.copyToast {
    position: fixed;
    bottom: 0;
    right: 0;
    width: 250px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    background-color: var(--white-alpha8);
    padding: 15px;
    border-radius: 5px 0 0 0;
    display: none;
    z-index: 999;
}