body {
    margin: 0;
    padding: 0;
}

.copjkU {
    color: #0033a0 !important;
}

.tryBtn {
    font-size: 0.929em;
    line-height: 18px !important;
    border: 1px solid white;
    color: white;
    background-color: transparent;
    padding: 3px 10px;
    text-transform: uppercase;
    font-family: Montserrat, sans-serif;
    margin: 0;
    box-sizing: border-box;
    -webkit-tap-highlight-color: rgba(255, 255, 255, 0);
    text-align: center;
    cursor: pointer;
}

.setAuth,
.swaggerBox .swagger-ui .authorization__btn {
    display: none !important;
}

#redoc-container {
    padding-top: 64px;
}

.top-navigation-bar {
    position: fixed;
    top: 0;
    width: 100%;
    height: 64px;
    z-index: 100;
    font-family: "Roboto Condensed", sans-serif;
}

.top-navigation-bar .root {
    padding: 0 15px;
    background-color: #fff;
    border-bottom: 1px solid rgb(229, 229, 229);
    display: flex;
    align-items: center;
    height: 100%;
}

.top-navigation-bar .logo {
    display: flex;
    align-items: center;
}

.top-navigation-bar .logo img {
    display: block;
    width: 180px;
    margin-top: -6px;
}

.top-navigation-bar .logo span {
    padding-left: 8px;
    font-size: 26px;
    color: #2f2f2f;
    font-weight: 300;
}

.top-navigation-bar .navigation-links {
    display: flex;
    align-items: center;
    height: 100%;
}

.top-navigation-bar .navigation-links a {
    display: flex;
    align-items: center;
    position: relative;
    height: 100%;
    color: #414141;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s;
    cursor: pointer;
    font-weight: 500;
    margin-left: 55px;
    height: 100%;
}

.top-navigation-bar .navigation-links a:hover {
    color: #3c95d1;
}

.top-navigation-bar .navigation-links a::before {
    position: absolute;
    content: "";
    width: 0;
    height: 2px;
    bottom: -1px;
    left: 50%;
    background: #3c95d1;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    opacity: 0;
}

.top-navigation-bar .navigation-links a:hover::before {
    width: 100%;
    opacity: 1;
}

.swagger-ui .opblock.is-open{
    overflow-x: auto;
}

@media (max-width: 860px) {
    .top-navigation-bar .navigation-links{
        display: none;
    }
}

@media (max-width: 420px) {
    .top-navigation-bar .logo span{
        display: none;
    }

    .top-navigation-bar .logo img{
        max-width: 100%;
    }
}