﻿.swagger-section #header {
    background-color: #262a2b;
    padding: 13px 14px 14px 14px;
    height: 25px;
    min-width: 775px;
}

.swagger-section #header #logo .logo__img {
    display: block;
    float: left;
    margin-top: -2px;
}

.swagger-section #explore, .swagger-section #auth_container .authorize__btn {
    display: block;
    text-decoration: none;
    font-weight: bold;
    padding: 6px 8px;
    font-size: 0.9em;
    color: white;
    background-color: #71be3c;
    -moz-border-radius: 0px;
    -webkit-border-radius: 0px;
    -o-border-radius: 0px;
    -ms-border-radius: 0px;
    -khtml-border-radius: 0px;
    border-radius: 0px;
}

.myDiv{
    background-color: #71BE3C;
    height:10px;
}

.swagger-section .swagger-ui-wrap ul#resources li.resource div.heading h2 a {
    color: #7b8587;
}

.swagger-section .swagger-ui-wrap p {
    line-height: 1.4em;
    padding: 0 0 10px;
    color: #7a7a7a;
}

.swagger-section .swagger-ui-wrap ul#resources li.resource div.heading ul.options li a {
    color: #71be3c;
    text-decoration: none;
}

.swagger-section .swagger-ui-wrap pre {
    font-family: "Anonymous Pro", "Menlo", "Consolas", "Bitstream Vera Sans Mono", "Courier New", monospace;
    background-color: #fefaeb;
    border: 1px solid #e5e0c6;
    padding: 10px;
}

.swagger-section .swagger-ui-wrap ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation div.heading h3 span.path a {
    color: black;
    text-decoration: none;
}

.swagger-section .swagger-ui-wrap ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation div.heading h3 span.path a {
    color: #262a2b;
    text-decoration: none;
}

.swagger-section .swagger-ui-wrap ul#resources li.resource:hover div.heading h2 a, .swagger-section .swagger-ui-wrap ul#resources li.resource.active div.heading h2 a {
    color: #262a2b;
}

.swagger-section .swagger-ui-wrap .info_title {
    padding-bottom: 10px;
    font-weight: bold;
    font-size: 25px;
    color: #262a2b;
}

.swagger-section .swagger-ui-wrap ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation.post div.content {
    background-color: #eef8e9;
    border: 0px solid #71be3c;
}

.swagger-section .swagger-ui-wrap ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation.post div.heading {
    background-color: #eef8e9;
    border: 0px solid #71be3c;
}

.swagger-section .swagger-ui-wrap ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation.get div.content {
    background-color: #e7f0f7;
    border: 0px solid #c3d9ec;
}

.swagger-section .swagger-ui-wrap ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation.get div.heading {
    background-color: #e7f0f7;
    border: 0px solid #c3d9ec;
}

.swagger-section .swagger-ui-wrap ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation div.heading h3 span.http_method a {
    text-transform: uppercase;
    text-decoration: none;
    color: white;
    display: inline-block;
    width: 50px;
    font-size: 0.7em;
    font-weight: bold;
    text-align: center;
    padding: 7px 0 4px;
    -moz-border-radius: 2px;
    -webkit-border-radius: 2px;
    -o-border-radius: 2px;
    -ms-border-radius: 2px;
    -khtml-border-radius: 2px;
    border-radius: 0px;
}

.swagger-section .swagger-ui-wrap .markdown pre {
    font-family: "Anonymous Pro", "Menlo", "Consolas", "Bitstream Vera Sans Mono", "Courier New", monospace;
    background-color: #fefaeb;
    border: 1px solid #e5e0c6;
    padding: 10px;
    margin: 0 0 10px 0;
}

.swagger-section .swagger-ui-wrap ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation div.heading ul.options li a .markdown p {
    color: inherit;
    padding: 0;
    line-height: 1.4em;
}

.swagger-section .swagger-ui-wrap ul#resources li.resource {
    border-bottom: 2px solid #dddddd;
}

.watermark {
   background-image: url(../../content/images/swagger-watermark.png);
   background-position: right bottom; /*Positioning*/
   background-repeat: no-repeat; /*Prevent showing multiple background images*/
   background-attachment: fixed;
}

#scroll-up-button {
  display: inline-block;
  background-color: #71BE3C;
  width: 50px;
  height: 50px;
  text-align: center;
  border-radius: 4px;
  position: fixed;
  bottom: 30px;
  right: 30px;
  transition: background-color .3s, 
    opacity .5s, visibility .5s;
  opacity: 0;
  visibility: hidden;
  z-index: 1000;
}

#scroll-up-button::after {
  content: "\f077";
  font-family: FontAwesome;
  font-weight: normal;
  font-style: normal;
  font-size: 2em;
  line-height: 50px;
  color: #fff;
}

#scroll-up-button:hover {
  cursor: pointer;
  background-color: #262a2b;
}

#scroll-up-button:active {
  background-color: #555;
}

#scroll-up-button.show {
  opacity: 1;
  visibility: visible;
}