.sidebar {
    min-height: 100vh;
}

.sidebar hr {
    background: #9f9f9f !important;
}

.sidebar .logo-tag {
    font-weight:400;
    font-size: 1.4em;
}

.sidebar .logo {
    max-width: 40px;
    margin-right: 10px;
}

.sidebar .nav-link {
    padding: .3rem 1rem;
    font-size: 0.92rem;
}

.sidebar .nav-link:hover{
    background: #ececec;
}

.sample-card .card-header{
    border: none;
    font-size: 0.7em;
    font-weight: 700;
    opacity: 0.8; 
    text-transform: uppercase;
}

.sample-card .card-body{
    font-family: monospace;
    font-size: 0.8em;
    color: #6c6c6c;
}

.content-container h3 {
    margin-bottom: 1.5rem
}

.content-container p {
    font-size: 0.85em;
    margin-bottom: 2rem;
}

.content-container {
    max-height: 100vh;
    overflow-y: auto
}

.sidebar h4 {
    margin-top: 1.5rem;
    padding: .3rem 1rem;
    font-size: 0.8rem;
    text-transform: uppercase;
    opacity: 0.8;
}

.endpoints-list .nav-link {
    padding-left: 1.7rem;
    font-size: 0.9rem
}

.sample-detail {
    font-size: 0.8em;
    font-style: italic;
}

.sample-detail strong{
    opacity: 0.8;
    font-weight: 600; 
}

.param-define {
    font-size: 0.9em;
    padding-top: 0.2em;
    padding-bottom: 0.2em;
    width: 100%;
}

.param-hint{
    display: block;
    font-size: 0.9em;
    padding-top: 20px;
    opacity: 0.8
}

.param-define code{
    border: 1px solid #db2fdb47;
    border-radius: 4px;
    padding: 3px;
    background: #db2fdb0f;
}

code {
    color: #db2fdb;
}

code.type {
    color: #e4a000;
}

.param-define code.type{
    border-color: #ffc741b5;
    background: #fecf5f33;
}

.param-define > *{
    margin-right: 5px;
}


.footer-block a {
    text-decoration: none;
}

.content-container hr {
    background-color: #c6c6c6;
}

.json-pre-wrap {
    white-space: pre;
}

.response-card .card-body {
    overflow-y: auto;
}

.response-card .card-header {
    background: #000;
    opacity: 0.5;
}

.response-card .card-body {
    color: #fff9;
}

.quick_search {
    padding: .3rem 1rem;
    margin-bottom: .7rem;
    position: relative;
}

.quick_search::before{
    content: "";
    position: absolute;
    width: 12px;
    background: #fff;
    z-index:2;
    height: 12px;
    border: 2px solid #bbb;
    border-radius: 24px;
    left: 1.5rem;
    top: 13px;
}

.quick_search::after{
    content: "";
    width: 2px;
    height: 9px;
    background: #bbb;
    position: absolute;
    left: 2.1rem;
    top: 21px;
    z-index: 1;
    transform: rotate(-40deg);
    border-radius: 2px
}

.quick_search input{
    width: 100%;
    background: ##ff;
    border: 1px solid #ddd;
    font-size: 14px;
    line-height: 14pxrem;
    padding: .3rem;
    padding-left: 2rem;
    border-radius: 5px;
    padding-right: 4rem;
}

.quick_search .reset_btn{
    font-size: 0.75rem;
    position: absolute;
    right: 2rem;
    top: 12px;
    color: #939393;
}

.quick_search .reset_btn:hover{
    text-decoration: underline;
    cursor: pointer;
}

.quick_search .results{
    margin-top: 1rem;
}

.quick_search .loader {
    position: relative;
}

.quick_search .loader:before{
    content: "";
    display: block;
    width: 30px;
    height: 30px;
    border-radius: 30px;
    border: 3px solid #bbb;
    border-top-color: transparent;
    border-left-color: transparent;
    margin-left: auto;
    margin-right: auto;

    -webkit-animation: loaderAnim 0.5s forwards;
    -webkit-animation-iteration-count: infinite;
    -webkit-animation-timing-function: linear;
    
    animation: loaderAnim 0.5s forwards;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
}

.search-result-item {
    cursor: pointer;
    transition: padding 0.5s ease;
}

.search-result-item:hover{
    padding-left: 10px;    
}

@-webkit-keyframes loaderAnim {
    0%{
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@keyframes loaderAnim {
    0%{
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}