body {
    margin: 0;
    padding: 0;
}

header.main-header {
    position: fixed;
    background: #374146;
    height: 56px;
    min-height: 56px;
    width: 100%;
    overflow: hidden;
    display: block;
    padding: 0 16px;
    z-index: 999999;
    box-sizing: border-box;
}

header.main-header .logo {
    height: 56px;
    padding: 16px 0 8px;
    box-sizing: border-box;
    display: inline-block;
    vertical-align: top;
}

header.main-header .logo img {
    height: 100%;
    width: auto;
}

/*
header.main-header .api-selector {
    height: 56px;
    box-sizing: border-box;
    line-height: 56px;
    display: inline-block;
    padding: 0 20px;
    vertical-align: top;
}
*/

header.main-header .api-selector {
    height: 56px;
    box-sizing: border-box;
    display: inline-block;
    padding: 12px 20px;
    vertical-align: middle;
    font-size: 0;
}

header.main-header .api-selector > div {
    height: 32px;
    display: inline-block;
    text-transform: uppercase;
    font-family: Montserrat, sans-serif;
    line-height: 34px;
    background: white;
    color: #b7b9bb;
    font-size: 12px;
    border-radius: 3px 0 0 3px;
    padding: 0 16px;
    cursor: pointer;
    position: relative;
}

header.main-header .api-selector > div.coming-soon {
    cursor: default;
}

header.main-header .api-selector > div.coming-soon::after {
    content: 'Comming soon';
    position: absolute;
    right: -50px;
    top: -7px;
    background: rgb(38, 50, 56);
    z-index: 999;
    border-radius: 3px;
    line-height: 12px;
    padding: 4px 8px;
    font-size: 11px;
    text-align: center;
    height: 12px;
    color: white;
    opacity: 0;
    transition: all .2s;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.43);
    cursor: default;
}

header.main-header .api-selector > div.coming-soon:hover::after {
    opacity: 1;
}

header.main-header .api-selector > div.active {
    color: #105ecb;
    background: #e9f0fa;
}

header.main-header .api-selector > div:last-child {
    border-radius: 0 3px 3px 0;
}

header.main-header .api-selector select {
    height: 30px;
    border: none;
    border-radius: 2px;
    -webkit-appearance: none;
    padding: 0 30px 0 12px;
    box-shadow: 0 1px 10px rgba(0, 0, 0, 0.4);
    outline: none;
    cursor: pointer;
    position: relative;
}

header.main-header .api-selector .select {
    position: relative;
}

header.main-header .api-selector .select:before {
    content: '';
    position: absolute;
    top: 8px;
    right: 10px;
    z-index: 99;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 6px 5px 0 5px;
    border-color: #374146 transparent transparent transparent;

}

.api-content {
    margin-top: 56px;
}

redoc.loading:after {
    top: 110px !important;
}

redoc.loading:before {
    padding-top: 80px !important;
}