.sg-sidebar_mask {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: #212121;
  opacity: 0.5;
  z-index: 100;
  display: none;
}

.sg-sidebar {
  background: rgba(0, 0, 0, 0.03);
  float: left;
  margin-right: 40px;
  overflow-x: hidden;
  overflow-y: auto;
  width: 256px;
  font-size: 13px;
  position: fixed;
  max-height: calc(100vh - 52px - 80px);
}
.sg-sidebar a {
  color: inherit;
  display: block;
}
.sg-sidebar h5 {
  color: #939da3;
  font-size: 12px;
  font-weight: 500;
  line-height: 18px;
  text-transform: uppercase;
}

.sg-sidebar-subsection {
  list-style-type: none;
  padding: 0;
  margin: 0;
}

.sg-sidebar-subelement {
  transition: all 280ms cubic-bezier(0.4, 0, 0.2, 1);
  line-height: 16px;
  margin: 1px 0;
  padding: 4px 0 5px 16px;
  position: relative;
  border-right: 2px solid transparent;
  color: #757575;
  font-weight: 400;
}
.sg-sidebar-subelement:hover {
  border-color: #cfd8dc;
  font-weight: 500;
}
.sg-sidebar-subelement.active {
  color: #f65444;
  font-weight: 500;
  border-color: #f65444;
}

.sg-sidebar_ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
}

.sg-sidebar_li-sub {
  transition: all 280ms cubic-bezier(0.4, 0, 0.2, 1);
  line-height: 16px;
  margin: 1px 0;
  padding: 4px 0 5px 16px;
  position: relative;
  border-right: 2px solid transparent;
  color: #757575;
  font-weight: 400;
}
.sg-sidebar_li-sub:hover {
  border-color: #cfd8dc;
  font-weight: 500;
}
.sg-sidebar_li-sub.active {
  color: #f65444;
  font-weight: 500;
  border-color: #f65444;
}

.sg-sidebar_li-exp {
  color: #757575;
  border-bottom: 1px solid #cfd8dc;
  padding: 15px 0 16px 16px;
  margin: 0;
  position: relative;
}
.sg-sidebar_li-exp.active {
  color: #f65444;
  font-weight: 500;
}
.sg-sidebar_li-exp.active[onclick]:before {
  content: "expand_less";
}
.sg-sidebar_li-exp.active .sg-sidebar_ul-exp {
  display: block;
}
.sg-sidebar_li-exp:last-of-type {
  border: none;
}

.sg-sidebar_title {
  padding-right: 24px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  display: block;
}
.sg-sidebar_title[onclick]:before {
  color: #bdbdbd;
  cursor: pointer;
  font-size: 18px;
  position: absolute;
  font: normal normal normal 24px/1 "Material Icons";
  font-feature-settings: "liga";
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  word-wrap: normal;
  content: "expand_more";
  top: 10px;
  right: 16px;
}

.sg-sidebar_ul-exp {
  list-style-type: none;
  padding: 0;
  display: none;
}

@media all and (min-width: 721px) {
  .sg-sidebar_mask {
    display: none !important;
  }
}
@media all and (max-width: 720px) {
  .sg-sidebar {
    transition: all 280ms cubic-bezier(0.4, 0, 0.2, 1);
    margin-left: 0;
    transform: translate(-100%);
    background: #fff;
    box-shadow: 0 0 4px rgba(0, 0, 0, 0.14), 0 4px 8px rgba(0, 0, 0, 0.28);
    height: 100%;
    max-width: 256px;
    outline: 0;
    overflow-x: hidden;
    overflow-y: auto;
    position: fixed;
    top: 0;
    white-space: nowrap;
    z-index: 10012;
    max-height: initial;
    left: -1px;
    bottom: 0;
  }
  .sg-sidebar.sg-sidebar-visible {
    transform: translate(0px);
  }
}
.alert {
  display: block;
  font-size: 14px;
  margin: 16px 0;
  padding: 12px 24px 12px 60px;
  position: relative;
}
.alert a {
  color: inherit;
  text-decoration: underline;
}
.alert:before {
  font: normal normal normal 24px/1 "Material Icons";
  font-feature-settings: "liga";
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  word-wrap: normal;
  margin-left: -36px;
  position: absolute;
  top: 0;
  bottom: 0;
  vertical-align: middle;
  display: flex;
  align-items: center;
}
.alert.alert-info {
  background: #e1f5fe;
  color: #0288d1;
}
.alert.alert-info:before {
  content: "info";
}
.alert.alert-danger {
  background: rgba(255, 0, 0, 0.13);
  color: red;
}
.alert.alert-danger:before {
  content: "error";
}
.alert.alert-success {
  background: rgba(0, 168, 20, 0.13);
  color: #00a814;
}
.alert.alert-success:before {
  content: "check_circle";
}
.alert.alert-warning {
  background: rgba(255, 128, 0, 0.13);
  color: #FF8000;
}
.alert.alert-warning:before {
  content: "warning";
}

.sg-header {
  background: #f65444;
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.14), 0 4px 8px rgba(0, 0, 0, 0.28);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
}

.sg-header_wrapper {
  display: flex;
  align-items: center;
  color: rgb(253.0255102041, 217.4846938776, 213.9744897959);
  height: 52px;
  max-width: 1400px;
  margin: auto;
  padding: 12px;
}

.sg-header_btn-sidebar {
  font-size: 20px;
  margin-right: 12px;
  display: none;
}

.sg-header_menu {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  margin: 0;
}

.sg-header_menu_item {
  transition: all 280ms cubic-bezier(0.4, 0, 0.2, 1);
  color: rgb(253.0255102041, 217.4846938776, 213.9744897959);
  font-weight: 500;
  font-size: 16px;
  text-transform: uppercase;
  border-radius: 2px;
  padding: 8px;
}
.sg-header_menu_item:hover {
  background: rgb(247.1709183673, 106.2474489796, 92.3290816327);
  color: white;
}
.sg-header_menu_item:active, .sg-header_menu_item:focus {
  text-decoration: none;
  color: white;
  background: rgb(248.1076530612, 124.0454081633, 111.7923469388);
}

.sg-header_logo {
  height: 40px;
  width: 40px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sg-header_logo_img {
  height: 22px;
  width: 22px;
}

.sg-header_particeep {
  font-family: "Bariol Regular", "Roboto", "Arial", sans-serif;
  font-size: 22px;
  margin-left: 10px;
  font-weight: normal;
  color: white;
}
.sg-header_particeep a {
  color: #333;
}
.sg-header_particeep a:hover {
  color: #eee;
}

@media all and (max-width: 720px) {
  .sg-header_btn-sidebar {
    display: block;
  }
  .sg-header_logo {
    display: none;
  }
}
td {
  padding: 0;
}

.table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}
.table thead {
  background: rgba(246, 84, 68, 0.1);
  color: #f65444;
}
.table tbody {
  background: white;
}
.table tr {
  border-top: 1px solid #e0e0e0;
}
.table th {
  border-top: 1px solid rgb(252.5571428571, 208.5857142857, 204.2428571429);
  border-bottom: 1px solid rgb(252.5571428571, 208.5857142857, 204.2428571429);
  padding: 7px;
  text-align: left;
  font-weight: 500;
}
.table td {
  background: rgba(255, 255, 255, 0.95);
  padding: 7px;
  border-bottom: 1px solid #ebebeb;
  text-align: left;
}
.table code {
  color: #828282;
  padding: 0 !important;
  background: none;
}

.default_value {
  color: #919090;
  font-size: 13px;
  line-height: 1;
  display: block;
}

.table-hover > tbody > tr:hover {
  background-color: rgba(0, 0, 0, 0.3);
  color: #fff;
}

body {
  color: #212121;
  font: 400 16px/26px Roboto, sans-serif;
  background: #fafafa;
}

*, *:before, *:after {
  box-sizing: border-box;
}

.list-margin > li {
  margin-bottom: 12px;
}

b, strong {
  font-weight: 500;
}

.sg-main {
  margin: 40px auto;
  max-width: 1400px;
  padding: 52px 12px 0 12px;
  position: relative;
}

.sg-article_inner {
  float: left;
  max-width: 100%;
}

.sg-article {
  margin-left: 296px;
  position: relative;
}

h1 {
  color: #757575;
  font: 300 34px/40px Roboto, sans-serif;
  letter-spacing: -0.01em;
  margin: 40px 0 20px;
}
h1:first-of-type {
  position: relative;
  margin-top: 0;
  top: -4px;
}

h2 {
  border-bottom: 1px solid #ebebeb;
  font: 300 32px/38px Roboto, sans-serif;
  letter-spacing: -0.01em;
  margin: 40px 0 20px;
  padding-bottom: 3px;
}

h3,
.info_title {
  font: 400 20px/32px Roboto, sans-serif;
  margin: 32px 0 16px;
}

a {
  color: #f65444;
}

:link {
  text-decoration: none;
}

.sg-header_btn-sidebar {
  cursor: pointer;
}

.offset:before {
  display: block;
  content: " ";
  height: 90px;
  margin-top: -90px;
  visibility: hidden;
}

code {
  background: rgba(0, 0, 0, 0.04);
  border-radius: 2px;
  padding: 1px 6px !important;
}

pre {
  font: 14px/20px Roboto Mono, monospace;
  font-style: normal;
  font-variant-ligatures: normal;
  font-variant-caps: normal;
  font-variant-numeric: normal;
  font-weight: normal;
  font-stretch: normal;
  font-size: 14px;
  line-height: 20px;
  margin: 16px 0;
  overflow-x: auto;
  padding: 8px 12px !important;
  position: relative;
  border: none !important;
  background: rgba(0, 0, 0, 0.04);
  border-radius: 2px;
}
pre > code {
  background: none;
}

@media all and (max-width: 720px) {
  .sg-article {
    margin: 0;
  }
  .sg-article_inner {
    float: none;
  }
}
input[type=text],
select,
textarea {
  transition: all 280ms cubic-bezier(0.4, 0, 0.2, 1);
  border: none;
  border-bottom: 1px solid #ebebeb;
  padding: 4px 0;
  max-width: 100%;
  outline: none;
  font-size: inherit;
  display: inline-block;
  margin-right: 12px;
  background: none;
  left: 0 !important;
}
input[type=text]:focus, input[type=text]:active,
select:focus,
select:active,
textarea:focus,
textarea:active {
  margin-bottom: -1px !important;
  border-bottom: 2px solid #f65444;
}
input[type=text].error,
select.error,
textarea.error {
  border-color: red;
}

.btn-primary,
input[type=submit],
.response_hider {
  transition: all 280ms cubic-bezier(0.4, 0, 0.2, 1);
  background: #f65444;
  border: none;
  border-radius: 2px;
  color: #fff;
  position: relative;
  height: 36px;
  margin: 0;
  min-width: 64px;
  padding: 0 16px;
  font-family: "Roboto", "Helvetica", "Arial", sans-serif;
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0;
  overflow: hidden;
  will-change: box-shadow;
  transition: box-shadow 0.2s cubic-bezier(0.4, 0, 1, 1), background-color 0.2s cubic-bezier(0.4, 0, 0.2, 1), color 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  outline: none;
  cursor: pointer;
  text-decoration: none;
  text-align: center;
  line-height: 36px;
  vertical-align: middle;
  display: inline-block;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 3px 1px -2px rgba(0, 0, 0, 0.2), 0 1px 5px 0 rgba(0, 0, 0, 0.12);
}
.btn-primary:hover,
input[type=submit]:hover,
.response_hider:hover {
  background: rgb(248.3418367347, 128.4948979592, 116.6581632653);
}
.btn-primary:active,
input[type=submit]:active,
.response_hider:active {
  background: rgb(251.6204081633, 190.787755102, 184.7795918367);
}

.response_hider {
  background: none;
  color: #f65444;
  box-shadow: none;
}
.response_hider:hover, .response_hider:focus {
  background: rgba(246, 84, 68, 0.1);
}
.response_hider:active {
  background: rgba(246, 84, 68, 0.2);
}

.form-link {
  display: inline;
}

.search-form {
  margin-bottom: 40px;
}

#resources {
  list-style: none;
  padding: 0;
}
#resources p {
  margin: 0;
}

.resource {
  transition: all 280ms cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 -1px 0 #e0e0e0, 0 0 2px rgba(0, 0, 0, 0.12), 0 2px 4px rgba(0, 0, 0, 0.24);
  background: white;
  position: relative;
}
.resource:before {
  font: normal normal normal 24px/1 "Material Icons";
  font-feature-settings: "liga";
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  word-wrap: normal;
  content: "expand_more";
  font-size: 28px;
  color: rgba(0, 0, 0, 0.34);
  position: absolute;
  right: 24px;
  top: 0;
  height: 48px;
  display: flex;
  align-items: center;
}
.resource.active {
  margin: 24px 0;
}
.resource.active:before {
  content: "expand_less";
}
.resource > .heading {
  display: flex;
  align-items: center;
  height: 48px;
  padding: 0 24px;
  position: relative;
}
.resource > .heading .dom-virtual {
  position: absolute;
  top: 0;
  left: 0;
  height: 60px;
  width: 100%;
  transform: translateY(-60px);
  visibility: hidden;
}
.resource > .heading h2 {
  border: none;
  flex: 1;
  font-size: 16px;
  margin: 0;
  cursor: pointer;
}
.resource > .heading .toggleEndpointList {
  text-transform: capitalize;
  font-weight: 500;
  color: inherit;
  display: block;
}
.resource > .heading .options {
  display: none;
}
.resource > .endpoints {
  padding: 16px;
  border-top: 1px solid #ebebeb;
  list-style: none;
}

.endpoints-description {
  margin-bottom: 24px;
}

.http_method {
  border-radius: 2px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 12px;
  display: inline-block;
  text-transform: uppercase;
  height: 23px;
  line-height: 24px;
  width: 60px;
  text-align: center;
}
.http_method.get {
  background: rgba(2, 136, 209, 0.8);
}
.http_method.post {
  background: rgba(0, 168, 20, 0.8);
}
.http_method.put {
  background: rgba(255, 128, 0, 0.8);
}
.http_method.delete {
  background: rgba(255, 0, 0, 0.8);
}

.operations {
  list-style: none;
  padding: 0;
}

.operation {
  margin-bottom: 8px;
  font-size: 14px;
}
.operation :last-child {
  margin-bottom: 0;
}
.operation.get {
  background: rgba(2, 136, 209, 0.05);
  color: #0288d1;
  border-top: 1px solid rgb(160.9004739336, 221.2322274882, 254.0995260664);
  border-bottom: 1px solid rgb(160.9004739336, 221.2322274882, 254.0995260664);
}
.operation.get .content {
  border-top: 1px solid rgb(160.9004739336, 221.2322274882, 254.0995260664);
}
.operation.get .http_method {
  background: rgba(2, 136, 209, 0.8);
}
.operation.post {
  background: rgba(0, 168, 20, 0.05);
  color: #00a814;
  border-top: 1px solid rgb(117, 255, 133.4285714286);
  border-bottom: 1px solid rgb(117, 255, 133.4285714286);
}
.operation.post .content {
  border-top: 1px solid rgb(117, 255, 133.4285714286);
}
.operation.post .http_method {
  background: rgba(0, 168, 20, 0.8);
}
.operation.put {
  background: rgba(255, 128, 0, 0.05);
  color: #FF8000;
  border-top: 1px solid rgb(255, 229.6, 204);
  border-bottom: 1px solid rgb(255, 229.6, 204);
}
.operation.put .content {
  border-top: 1px solid rgb(255, 229.6, 204);
}
.operation.put .http_method {
  background: rgba(255, 128, 0, 0.8);
}
.operation.delete {
  background: rgba(255, 0, 0, 0.05);
  color: red;
  border-top: 1px solid #ffcccc;
  border-bottom: 1px solid #ffcccc;
}
.operation.delete .content {
  border-top: 1px solid #ffcccc;
}
.operation.delete .http_method {
  background: rgba(255, 0, 0, 0.8);
}
.operation > .heading {
  display: flex;
  align-items: center;
  height: 40px;
  padding: 0 10px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.operation h3 {
  margin: 0;
  font-size: 15px;
  font-weight: 500;
}
.operation .http_method {
  border-radius: 2px;
  margin-right: 10px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 12px;
  display: inline-block;
  text-transform: uppercase;
  height: 23px;
  line-height: 24px;
  width: 60px;
  text-align: center;
}
.operation .options {
  list-style: none;
  padding: 0;
  font-size: 13px;
  margin-left: 10px;
}
.operation > .content {
  color: rgba(0, 0, 0, 0.87);
  padding: 12px;
}
.operation .toggleOperation {
  color: inherit;
}
.operation h4 {
  margin: 12px 0 2px 0;
}
.operation pre {
  font-size: 13px;
  margin: 0;
  background: rgba(255, 255, 255, 0.8);
  color: rgba(0, 0, 0, 0.87);
}
.operation table {
  border-collapse: collapse;
  margin-bottom: 12px;
  font-size: 12px;
  width: 100%;
}
.operation table thead {
  border-top: 1px solid #dfdfdf;
  border-bottom: 1px solid #dfdfdf;
  background: rgba(0, 0, 0, 0.03);
}
.operation table th {
  font-weight: 500;
  white-space: nowrap;
  padding: 7px;
}
.operation table tbody {
  background: rgba(255, 255, 255, 0.8);
}
.operation table td {
  vertical-align: top;
  padding: 6px 7px;
}
.operation .signature-nav {
  list-style: none;
  padding: 0;
  display: flex;
  align-items: center;
}
.operation .signature-nav a {
  transition: all 280ms cubic-bezier(0.4, 0, 0.2, 1);
  padding: 8px 16px 6px 16px;
  border-bottom: 2px solid transparent;
  display: block;
  color: inherit;
}
.operation .signature-nav a.selected {
  color: #f65444;
  border-bottom: 2px solid #f65444;
  font-weight: 500;
}

.sandbox {
  overflow-y: auto;
  margin: -4px;
  padding: 4px;
}

.swagger-section .swagger-ui-wrap .model-signature .propType {
  color: #55a;
}

.swagger-section .swagger-ui-wrap .model-signature .propOpt {
  color: #555;
}

.swagger-section .swagger-ui-wrap .model-signature .snippet small {
  font-size: 0.75em;
}

.swagger-section .swagger-ui-wrap .model-signature .propOptKey {
  font-style: italic;
}

.swagger-section .swagger-ui-wrap .model-signature .description {
  padding: 8px 12px;
  background: rgba(255, 255, 255, 0.8);
}

.swagger-section .swagger-ui-wrap .model-signature .description .strong {
  font-weight: 700;
  color: #000;
  font-size: 0.9em;
}

.swagger-section .swagger-ui-wrap .model-signature .description div {
  font-size: 0.9em;
  line-height: 1.5em;
  margin-left: 1em;
}

.swagger-section .swagger-ui-wrap .model-signature .description .stronger {
  font-weight: 700;
  color: #000;
}

.swagger-section .swagger-ui-wrap .model-signature .description .propWrap .optionsWrapper {
  border-spacing: 0;
  position: absolute;
  background-color: #fff;
  border: 1px solid #bbb;
  display: none;
  font-size: 11px;
  max-width: 400px;
  line-height: 30px;
  color: #000;
  padding: 5px;
  margin-left: 10px;
}

.swagger-section .swagger-ui-wrap .model-signature .description .propWrap .optionsWrapper th {
  text-align: center;
  background-color: #eee;
  border: 1px solid #bbb;
  font-size: 11px;
  color: #666;
  font-weight: 700;
  padding: 5px;
  line-height: 15px;
}

.swagger-section .swagger-ui-wrap .model-signature .description .propWrap .optionsWrapper .optionName {
  font-weight: 700;
}

.swagger-section .swagger-ui-wrap .model-signature .description .propDesc.markdown > p:first-child, .swagger-section .swagger-ui-wrap .model-signature .description .propDesc.markdown > p:last-child {
  display: inline;
}

.swagger-section .swagger-ui-wrap .model-signature .description .propDesc.markdown > p:not(:first-child):before {
  display: block;
  content: "";
}

.swagger-section .swagger-ui-wrap .model-signature .description span:last-of-type.propDesc.markdown > p:only-child {
  margin-right: -3px;
}

.swagger-section .swagger-ui-wrap .model-signature .propName {
  font-weight: 700;
}

@media all and (max-width: 720px) {
  #resources {
    margin-right: -20px;
    margin-left: -20px;
  }
}
