.verb
{
    color: white;  
    padding-top: 5px; 
    padding-bottom: 5px; 
    font-size: 8px; 
    margin-right: 10px; 
    border-radius: 3px;
    text-decoration: none !important;
}

.verb:hover
{
    text-decoration: none !important;
}

.httpGET
{
    background-color: #6bbd5b;
    padding-left: 14px;
    padding-right: 14px;
}

.httpPOST
{
    background-color: #248fb2;
    padding-left: 12px; 
    padding-right: 12px;
}

.httpPUT
{
    background-color: #9b708b;
    padding-left: 14px;
    padding-right: 14px;
}

.httpDELETE
{
    background-color: #e27a7a;
    padding-left: 8px; 
    padding-right: 8px;
}

.httpHOOK {
    background-color: #fe940d;
    padding-left: 11px;
    padding-right: 11px;
}

.sidebar ul li a {
    display: inline;
}

.sidebar-nav .active{
    border-right: 3px solid !important;
    color: var(--theme-color,#42b983);
}

.sidebar ul li.active>a
{
    border-width: 0px;
}

.sidebar-nav ul {
    margin: -10px 0 0 15px;
}
.body.sticky .sidebar, body.sticky .sidebar-toggle {
    cursor: pointer;
}

body .docsify-pagination-container {
    border-width: 5px;
    border-color: #111;
}

.loader {
    animation: pulse 0.7s infinite;
    display: table;
    transition-timing-function: 5000s;
    animation-direction: alternate;
    -webkit-animation-name: pulse;
    animation-name: pulse;
    height: 10em;
    width: 10em;
}

@-webkit-keyframes pulse  {
    0% {
      -webkit-transform: scale(1);
      -webkit-filter: brightness(100%);
    }
    100% {
      -webkit-transform: scale(1.1);
      -webkit-filter: brightness(200%);
    }
  }
  
  @keyframes pulse  {
    0% {
      transform: scale(1);
      filter: brightness(100%);
    }
    100% {
      transform: scale(1.1);
      filter: brightness(200%);
    }
}

.loader img {
    max-width: 100%;
    max-height: 100%;  
}

.app-name img {
    width: 200px;
    max-width: 200px;
}

.title-menu {
    padding-left: 15px;
}
.sidebar ul li a {
    padding-left: 15px;
}

:root {
    --docsifytabs-border-color: #ededed;
    --docsifytabs-tab-highlight-color: #0088C3;
  }

.docsify-pagination-container {
    border-color: transparent !important;
}

.sidebar a {
    text-decoration: none !important;
  }

  @media (max-width: 768px) {
    .loader {
        height: 7em;
        width: 7em;
    
    }
}