/* ------------------------------------
   Liftoff's swagger UX
   ------------------------------------ */

@import "./liftoff_shared_fonts_static.css";
@import "./liftoff_custom_icons_static.css";
@import "./new_ux_constants_static.css";

/* code font */
@font-face {
  font-family: 'firacode-thin';
  src: url('../fonts/vendor/firacode-thin.woff2') format('woff2'),
       url('../fonts/vendor/firacode-thin.woff') format('woff');
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: 'firacode-light';
  src: url('../fonts/vendor/firacode-regular.woff2') format('woff2'),
       url('../fonts/vendor/firacode-regular.woff') format('woff');
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: 'firacode-regular';
  src: url('../fonts/vendor/firacode-medium.woff2') format('woff2'),
       url('../fonts/vendor/firacode-medium.woff') format('woff');
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: 'firacode-bold';
  src: url('../fonts/vendor/firacode-bold.woff2') format('woff2'),
       url('../fonts/vendor/firacode-bold.woff') format('woff');
  font-weight: normal;
  font-style: normal;
}

/* swagger constants */

:root {
  --header-height: 64px;
}

/* unset swagger styles */

.swagger-ui,
.swagger-ui .info p,
.swagger-ui .info .title,
.swagger-ui .info h1,
.swagger-ui .info h2,
.swagger-ui .info h3,
.swagger-ui .info h4,
.swagger-ui .info h5 {
  color: unset;
  font-family: unset;
  font-size: unset;
}

/* base styles */

.swagger-ui html {
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

body {
  color: var(--darker-gray);
  font-family: 'Proxima', 'sans-serif';
  font-size: 16px;
  line-height: 1.3;
  margin: 0;
  padding-bottom: 80px;
}

.swagger-ui {
  padding-top: 96px;
}

option {
  font-family: unset;
  font-size: unset;
  font-weight: unset;
}

.swagger-ui label {
  color: var(--regular-dark-text);
  font-family: 'Proxima', 'sans-serif';
  font-size: var(--base-font-size);
  font-weight: unset;
  margin: unset;
}

.swagger-ui .info .title {
  font-family: 'Poppins-medium';
  font-weight: unset;
  font-size: 40px;
}

.swagger-ui .dialog-ux .modal-ux-header h3,
.swagger-ui .info h2,
.swagger-ui .opblock-tag {
  font-family: 'Proxima-bold';
  font-size: 20px;
}

.swagger-ui code,
.swagger-ui .markdown code,
.swagger-ui .renderedMarkdown code {
  color: var(--darker-gray-75);
  font-family: 'firacode-regular', monospace;
  font-size: 13px;
  font-weight: unset;
  margin: 0 4px;
  padding: 4px 8px;
  background: var(--light-cool-gray);
  border-radius: 2px;
}

.swagger-ui .renderedMarkdown p {
  font-size: var(--base-font-size);
  line-height: 1.6em;
}

.swagger-ui .renderedMarkdown p i {
  font-style: unset;
}

.swagger-ui .description .renderedMarkdown p {
  font-size: 16px;
}

.swagger-ui small {
  font-size: unset;
}

.swagger-ui .parameter__name.required {
  font-weight: unset;
  position: relative;
}

.swagger-ui .parameter__name.required span {
  color: var(--error-red);
  position: relative;
  top: 0;
  right: 0;
}

.swagger-ui .parameter__name.required:after {
  display: none;
}

/* buttons - blue button */

.swagger-ui .btn.execute,
.swagger-ui .btn.cancel,
.swagger-ui .btn {
  color: #FFF;
  font-family: 'Poppins-medium', sans-serif;
  font-size: var(--base-font-size);
  font-weight: normal;
  letter-spacing: 0.01em;
  text-align: center;
  line-height: 1;
  text-decoration: none;
  padding: 4px 24px 0 24px;
  margin: 16px 0 24px 0;
  height: 44px;
  display: inline-block;
  position: relative;
  background: var(--button-color);
  border: 2px solid transparent;
  border-radius: var(--border-radius-button-large);
  outline: none !important;
  box-shadow: none;
  transition: none;
  cursor: pointer;
}

.swagger-ui .btn:hover,
.swagger-ui .btn:focus,
.swagger-ui .btn:active {
  color: var(--button-color);
  text-decoration: none;
  background: #FFF;
  border-color: var(--button-color);
  box-shadow: none;
  outline: none !important;
}

/* green button */

.swagger-ui .btn.authorize {
  color: #FFF;
  line-height: 32px;
  display: inline;
  background-color: unset;
  background: var(--accent-green);
  border-color: var(--accent-green);
}

.swagger-ui .modal-ux .btn.authorize {
  margin-right: 0;
}

.swagger-ui .modal-ux .auth-btn-wrapper {
  padding: 0 0 0 0;
}

.swagger-ui .btn.authorize:hover,
.swagger-ui .btn.authorize:focus,
.swagger-ui .btn.authorize:active {
  color: var(--accent-green);
  background: #FFF;
}

/* cancel button */
.swagger-ui .btn-clear,
.swagger-ui .btn.cancel {
  color: var(--button-color);
  font-family: 'Proxima-bold';
  background: transparent;
  border-color: var(--button-color);
}

.swagger-ui .btn.cancel:hover,
.swagger-ui .btn.caancel:active,
.swagger-ui .btn.cancel:focus {
  background: var(--button-color-15);
}

/* execute button */
.swagger-ui .execute-wrapper .btn {
  padding: 4px 16px;
  width: unset;
}

/* copy to clipboard button */

.swagger-ui .curl-command .copy-to-clipboard,
.swagger-ui .curl-command .copy-to-clipboard button,
.swagger-ui .copy-to-clipboard button {
  color: var(--button-color);
  padding-left: 0;
  height: 40px;
  width: 40px;
  background: none;
  border: none;
  border-radius: var(--border-radius-element);
}

.swagger-ui .curl-command .copy-to-clipboard {
  right: 12px;
  bottom: unset;
  top: 30px;
}

.swagger-ui .copy-to-clipboard {
  position: absolute;
  right: 100px;
  bottom: 10px;
  background: transparent;
  border: none;
  border-radius: unset;
}

.swagger-ui .copy-to-clipboard button:hover,
.swagger-ui .copy-to-clipboard button:active,
.swagger-ui .copy-to-clipboard button:focus {
  background: var(--button-color-50);
}

.swagger-ui .copy-to-clipboard button::before {
  content: "\e943";
  font-size: 28px;
  position: absolute;
  left: 6px;
  top: 6px;
}

/* button group */

.swagger-ui .btn-group {
  padding: 0 24px 24px 24px;
  flex-direction: row-reverse;
  align-items: flex-end;
}

.swagger-ui .btn-group .btn {
  flex: unset;
  margin-left: 16px;
}

.swagger-ui .btn-group .btn:last-child,
.swagger-ui .btn-group .btn:first-child {
  border-radius: var(--border-radius-element);
}

/* form items */

.swagger-ui *:focus-visible {
  outline: unset !important;
}

.swagger-ui select {
  color: unset;
  font-family: 'Proxima';
  font-size: var(--base-font-size);
  font-weight: unset;
  padding: 0 24px;
  position: relative;
  height: 32px;
  background: var(--light-cool-gray-40);
  border: 2px solid var(--light-cool-gray-40);
  border-radius: var(--border-radius-round-select);
  box-shadow: none;
}

.swagger-ui select:focus,
.swagger-ui select:focus-visible,
.swagger-ui select:active,
.swagger-ui input[type=email]:focus,
.swagger-ui input[type=email]:focus-visible,
.swagger-ui input[type=email]:active,
.swagger-ui input[type=file]:focus,
.swagger-ui input[type=file]:focus-visible,
.swagger-ui input[type=file]:active,
.swagger-ui input[type=password]:focus,
.swagger-ui input[type=password]:focus-visible,
.swagger-ui input[type=password]:active,
.swagger-ui input[type=search]:focus,
.swagger-ui input[type=search]:focus-visible,
.swagger-ui input[type=search]:active,
.swagger-ui input[type=text]:not([disabled]):focus,
.swagger-ui input[type=text]:not([disabled]):focus-visible,
.swagger-ui input[type=text]:not([disabled]):active,
.swagger-ui textarea:focus,
.swagger-ui textarea:focus-visible,
.swagger-ui textarea:active {
  border: var(--focus-border);
  box-shadow: var(--focus-blur);
  outline: unset;
}

.swagger-ui input[type=email],
.swagger-ui input[type=file],
.swagger-ui input[type=password],
.swagger-ui input[type=search],
.swagger-ui input[type=text],
.swagger-ui textarea {
  color: var(--regular-dark-text);
  font-family: 'Proxima';
  font-size: var(--base-font-size);
  line-height: 28px;
  padding: 2px 16px 2px 16px;
  margin: 0 0 16px 0;
  min-width: 100px;
  border: 0px solid transparent;
  border-radius: 16px;
}

.swagger-ui textarea {
  line-height: 20px;
}

.swagger-ui input[type=email]:focus,
.swagger-ui input[type=email]:focus-visible,
.swagger-ui input[type=email]:active,
.swagger-ui input[type=file]:focus,
.swagger-ui input[type=file]:focus-visible,
.swagger-ui input[type=file]:active,
.swagger-ui input[type=password]:focus,
.swagger-ui input[type=password]:focus-visible,
.swagger-ui input[type=password]:active,
.swagger-ui input[type=search]:focus,
.swagger-ui input[type=search]:focus-visible,
.swagger-ui input[type=search]:active,
.swagger-ui input[type=text]:not([disabled]):focus,
.swagger-ui input[type=text]:not([disabled]):focus-visible,
.swagger-ui input[type=text]:not([disabled]):active {
  line-height: 24px;
  padding: 3px 15px 3px 15px;
}

.swagger-ui textarea:focus,
.swagger-ui textarea:focus-visible,
.swagger-ui textarea:active {
  padding: 2px 14px 0 14px;
}

.swagger-ui .modal-ux input[type=email],
.swagger-ui .modal-ux input[type=file],
.swagger-ui .modal-ux input[type=password],
.swagger-ui .modal-ux input[type=search],
.swagger-ui .modal-ux input[type=text],
.swagger-ui .modal-ux textarea {
  background: var(--light-cool-gray-40);
}

.swagger-ui input[type=email]::placeholder,
.swagger-ui input[type=file]::placeholder,
.swagger-ui input[type=password]::placeholder,
.swagger-ui input[type=search]::placeholder,
.swagger-ui input[type=text]::placeholder,
.swagger-ui textarea::placeholder {
  color: var(--medium-gray-50);
}

.swagger-ui input[disabled],
.swagger-ui select[disabled],
.swagger-ui textarea[disabled] {
  background-color: #FFF;
  color: var(--medium-gray);
}

.swagger-ui input[type=email].invalid,
.swagger-ui input[type=file].invalid,
.swagger-ui input[type=password].invalid,
.swagger-ui input[type=search].invalid,
.swagger-ui input[type=text].invalid,
.swagger-ui textarea.invalid {
  color: var(--error-red);
  background: var(--error-red-15);
  border-color: var(--error-red-80);
  -webkit-animation: none;
  animation: none;
}

.swagger-ui input[type=email].invalid:focus,
.swagger-ui input[type=email].invalid:focus-visible,
.swagger-ui input[type=email].invalid:active,
.swagger-ui input[type=file].invalid:focus,
.swagger-ui input[type=file].invalid:focus-visible,
.swagger-ui input[type=file].invalid:active,
.swagger-ui input[type=password].invalid:focus,
.swagger-ui input[type=password].invalid:focus-visible,
.swagger-ui input[type=password].invalid:active,
.swagger-ui input[type=search].invalid:focus,
.swagger-ui input[type=search].invalid:focus-visible,
.swagger-ui input[type=search].invalid:active,
.swagger-ui input[type=text].invalid:focus,
.swagger-ui input[type=text].invalid:focus-visible,
.swagger-ui input[type=text].invalid:active,
.swagger-ui textarea.invalid:focus,
.swagger-ui textarea.invalid:focus-visible,
.swagger-ui textarea.invalid:active {
  border-color: var(--error-red-80);
  box-shadow: var(--focus-blur-error);
}

.swagger-ui input[type=email].invalid::placeholder,
.swagger-ui input[type=file].invalid::placeholder,
.swagger-ui input[type=password].invalid::placeholder,
.swagger-ui input[type=search].invalid::placeholder,
.swagger-ui input[type=text].invalid::placeholder,
.swagger-ui textarea.invalid::placeholder {
  color: var(--error-red);
}

/* extremely janky ul tab nav */
.swagger-ui ul.tab {
  margin: 0 0 24px 0;
}

.swagger-ui .tab li.active {
  font-weight: unset;
}
.swagger-ui .tab li:first-of-type {
  padding-right: unset;
}

.swagger-ui ul.tab li {
  color: var(--primary-purple);
  font-family: 'Proxima-bold';
  font-size: var(--base-font-size);
  margin: 0 8px;
  position: relative;
  min-width: unset;
}

.swagger-ui .tab li:first-of-type:after {
  display: none;
}

.swagger-ui .tab li.tabitem.active::before,
.swagger-ui .tab li.tabitem.active:first-of-type::before {
  content: "";
  display: block;
  height: 4px;
  width: 100%;
  position: absolute;
  right: 0;
  bottom: -8px;
  background: var(--primary-purple);
}

/* modal */
.swagger-ui .dialog-ux .modal-ux {
  border: 0px solid transparent;
  border-radius: 8px;
  box-shadow: unset;
}

.swagger-ui .dialog-ux .modal-ux-header {
  border-bottom: 0px solid transparent;
  padding: 24px 0;
}

.swagger-ui .dialog-ux .modal-ux-header h3 {
  color: var(--regular-dark-text);
}

.swagger-ui .dialog-ux .modal-ux-header .close-modal {
  padding: 0 24px;
}

.swagger-ui .dialog-ux .modal-ux-header .close-modal svg {
  display: none;
}

.swagger-ui .dialog-ux .modal-ux-header .close-modal::after {
  content: "\e910";
  color: var(--regular-dark-text);
  opacity: .5;
}

.swagger-ui .dialog-ux .modal-ux-header .close-modal:hover::after,
.swagger-ui .dialog-ux .modal-ux-header .close-modal:focus::after,
.swagger-ui .dialog-ux .modal-ux-header .close-modal:active::after {
  opacity: 1;
}

.swagger-ui .dialog-ux .modal-ux-content {
  padding: 0 24px 24px 24px;
}

.swagger-ui .dialog-ux .modal-ux-content h4 {
  color: var(--regular-dark-text);
  font-family: "Proxima", sans-serif;
  font-size: 16px;
  font-weight: unset;
  margin: 16px 0 0;
}

.swagger-ui .btn.modal-btn.authorize {
  padding-right: 24px;
}

/* big expander */

.swagger-ui section.models h4,
.swagger-ui section.models.is-open h4,
.swagger-ui .opblock-tag {
  color: var(--button-color);
  font-family: 'Proxima-bold';
  font-size: 24px;
  margin: 0 0 8px;
  padding: 8px 24px;
  position: relative;
  display: flex;
  align-items: center;
  background: var(--button-color-20);
  border-bottom: none;
  border-radius: var(--border-radius-element);
  cursor: pointer;
  transition: none;
}

.swagger-ui .opblock-tag:hover {
  background: var(--button-color-30);
}

.swagger-ui .opblock-tag small {
  color: unset;
  flex: 1;
  font-family: 'Proxima';
  font-size: var(--base-font-size);
  font-weight: unset;
  padding: 0 16px;
  position: relative;
  top: 3px;
}

.swagger-ui section.models h4 svg,
.swagger-ui .opblock-tag svg {
  transition: none;
}

.swagger-ui section.models h4 svg,
.swagger-ui .expand-operation svg,
.swagger-ui .opblock-summary svg.arrow {
  display: none;
}

.swagger-ui button.model-box-control::after,
.swagger-ui section.models h4 button::after,
.swagger-ui .expand-operation::after,
.swagger-ui .opblock-summary::after {
  content: "\e913";
  color: var(--button-color);
  font-size: 32px;
  position: relative;
  top: 2px;
  transition: all .1s;
}

.swagger-ui button.model-box-control[aria-expanded="false"]::after,
.swagger-ui section.models h4 button[aria-expanded="false"]::after,
.swagger-ui .expand-operation[aria-expanded="false"]::after,
.swagger-ui .opblock.is-open .opblock-summary::after {
  transform: rotate(180deg);
}

/* small expander */

.swagger-ui .opblock.opblock-post,
.swagger-ui .opblock {
  border: 1px solid var(--light-cool-gray);
  border-radius: var(--border-radius-element);
  box-shadow: none;
  margin: 0 24px 16px 24px;
}

.swagger-ui .opblock.opblock-get .opblock-summary {
  border: 0px solid transparent;
}
.swagger-ui .opblock .opblock-summary {
  align-items: center;
  cursor: pointer;
  display: flex;
  padding: 5px;
}

.swagger-ui .opblock-summary::after {
  right: 24px;
}

.swagger-ui .opblock .opblock-summary button svg {
  fill: var(--button-color);
}

.swagger-ui .opblock .opblock-summary button.unlocked,
.swagger-ui .opblock .opblock-summary button.locked {
  position: relative;
  right: 16px;
}

.swagger-ui button.btn.authorize.unlocked svg,
.swagger-ui .opblock .opblock-summary button.unlocked svg,
.swagger-ui .opblock .opblock-summary button.locked svg {
  display: none;
}

.swagger-ui button.btn.authorize.unlocked::after,
.swagger-ui button.btn.authorize.locked::after,
.swagger-ui .opblock .opblock-summary button.unlocked::after,
.swagger-ui .opblock .opblock-summary button.locked::after {
  color: var(--button-color);
  font-size: 24px;
  position: absolute;
  top: -12px;
  right: 16px;
}

.swagger-ui button.btn.authorize.unlocked::after,
.swagger-ui button.btn.authorize.locked::after {
  color: #FFF;
  font-size: 20px;
  top: 8px;
}

.swagger-ui button.btn.authorize.unlocked:hover::after,
.swagger-ui button.btn.authorize.locked:hover::after,
.swagger-ui button.btn.authorize.unlocked:focus::after,
.swagger-ui button.btn.authorize.locked:focus::after,
.swagger-ui button.btn.authorize.unlocked:active::after,
.swagger-ui button.btn.authorize.locked:active::after {
  color: var(--accent-green);
}

.swagger-ui .opblock .opblock-summary button.unlocked::after,
.swagger-ui button.btn.authorize.unlocked::after {
  content: "\e960";
}

.swagger-ui button.btn.authorize.locked::after,
.swagger-ui .opblock .opblock-summary button.locked::after {
  content: "\e956";
}

.swagger-ui .opblock .opblock-summary-method {
  color: var(--button-color);
  font-family: 'Proxima-bold';
  font-size: var(--base-font-size);
  font-weight: unset;
  margin: 4px 0 4px 8px;
  padding: 6px 16px;
  min-width: 80px;
  text-shadow: unset;
  background: #FFF;
  border-color: var(--button-color);
}

.swagger-ui .opblock.opblock-get .opblock-summary-method {
  color: var(--button-color);
  background: #FFF;
}

.swagger-ui section.models .model-container,
.swagger-ui .opblock.opblock-post,
.swagger-ui .opblock.opblock-get {
  background: var(--light-cool-gray-25);
  border-color: var(--light-cool-gray-25);
}

.swagger-ui section.models .model-container:hover,
.swagger-ui section.models .model-container:focus,
.swagger-ui section.models .model-container:active,
.swagger-ui .opblock.opblock-post:hover,
.swagger-ui .opblock.opblock-post:focus,
.swagger-ui .opblock.opblock-post:active,
.swagger-ui .opblock.opblock-get:hover,
.swagger-ui .opblock.opblock-get:focus,
.swagger-ui .opblock.opblock-get:active {
  background: var(--light-cool-gray-50);
}

.swagger-ui .model-box-control:focus,
.swagger-ui .models-control:focus,
.swagger-ui .opblock-summary-control:focus {
  outline: none;
}

.swagger-ui .opblock .opblock-summary-description {
  color: var(--regular-dark-text);
  font-family: 'Proxima';
  font-size: var(--base-font-size);
  padding-top: 1px;
}

.swagger-ui .opblock .opblock-description-wrapper p {
  color: var(--regular-dark-text);
  font-family: 'Proxima';
  font-size: var(--base-font-size);
  margin: 0;
}

.swagger-ui .opblock .opblock-section-header {
  background: #FFF;
  box-shadow: none;
  min-height: 56px;
  padding: 8px 24px;
}

.swagger-ui .opblock .opblock-section-header h4 {
  color: var(--primary-purple);
  font-family: 'Proxima-bold';
}

.swagger-ui .opblock.opblock-post .tab-header .tab-item.active h4 span:after,
.swagger-ui .opblock.opblock-get .tab-header .tab-item.active h4 span:after,
.swagger-ui .opblock .tab-header .tab-item.active h4 span:after {
  background: var(--primary-purple);
}

.swagger-ui .opblock .tab-header .tab-item.active h4 span:after,
.swagger-ui .opblock.opblock-get .tab-header .tab-item h4 span:after,
.swagger-ui .opblock .tab-header .tab-item h4 span:after {
  content: "";
  height: 4px;
  width: 100%;
  position: absolute;
  bottom: -17px;
  left: 50%;
  background: transparent;
  transform: translateX(-50%);
}

.swagger-ui .opblock .tab-header {
  margin-bottom: -8px;
}

.swagger-ui .response-col_status,
.swagger-ui .response-col_links,
.swagger-ui table thead tr td, .swagger-ui table thead tr th {
  border-bottom: 0px solid transparent;
  color: var(--regular-dark-text);
  font-family: 'Proxima-bold';
  font-size: var(--base-font-size);
  font-weight: unset;
  padding: 8px 0;
  text-align: left;
}

.swagger-ui .response-col_links i {
  font-family: 'Proxima';
}

.swagger-ui .opblock.opblock-post .opblock-summary-method {
  color: var(--accent-green);
  background: #FFF;
}

.swagger-ui .opblock.opblock-post .opblock-summary {
  border: 0px solid transparent;
}

/* header */

header {
  padding: 6px 0 0 16px;
  height: var(--header-height);
  width: 100%;
  display: flex;
  justify-content: space-between;
  position: fixed;
  top: 0;
  left: 0;
  background: #FFF;
  border-bottom: 1px solid var(--light-cool-gray-70);
  z-index: 100;
}

header a {
  text-decoration: none;
}

.logo-img {
  display: inline-block;
  position: relative;
  width: 108px;
  height: 42px;
  top: 4px;
}

.lv-product-name {
  color: var(--darker-gray);
  font-family: 'Poppins', sans-serif;
  font-size: 24px;
  letter-spacing: -.02em;
  position: relative;
  top: -6px;
  left: 6px;
}

.logo-icon {
  margin: 0 0 0 20px;
  display: inline-block;
  position: relative;
  width: 38px;
  height: 38px;
  top: 3px;
  transition: all 0.1s;
}

/* content */

.swagger-ui .info {
  margin: 24px 0;
}

.swagger-ui .info .title small {
  font-family: 'Proxima-semibold', sans-serif;
  font-size: 13px;
  line-height: 28px;
  margin: 0 0 0 4px;
  padding: 0 12px;
  display: inline-block;
  height: 28px;
  position: relative;
  top: -4px;
  background: var(--button-color);
  border-radius: 14px;
  vertical-align: super;
}

.swagger-ui .info .title small pre {
  color: #fff;
  font-family: unset;
  margin: 0;
  padding: 0;
}

.swagger-ui .info .title small.version-stamp {
  background-color: var(--accent-green);
}

.swagger-ui .scheme-container {
  padding: 16px 0 32px 0;
}

.swagger-ui .scheme-container .schemes {
  align-items: flex-start;
}

.swagger-ui .servers-title {
  color: var(--regular-light-text);
  font-family: 'Proxima-light', sans-serif;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-left: 2px;
}

.swagger-ui .servers > label {
    color: unset;
    font-family: unset;
    font-size: unset;
    margin: -20px 24px 0 0;
    padding-right: 56px;
    min-width: 300px;
    max-width: unset;
    position: relative;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.swagger-ui .servers > label select {
  max-width: 100%;
  min-width: 100%;
  width: 100%;
}

.swagger-ui .servers > label::after {
  content: "\e901";
  display: block;
  position: absolute;
  font-size: 22px;
  top: 0;
  right: 72px;;
}

.swagger-ui .scheme-container {
  background: #fff;
  border-bottom: 1px solid var(--light-cool-gray);
  box-shadow: unset;
  margin: 0 0 32px 0;
  padding: 24px 0;
}

.swagger-ui .btn.authorize span {
  padding: unset;
  float: unset;
}

.swagger-ui .auth-wrapper .authorize {
  margin-right: 32px;
  padding-right: unset;
}

.swagger-ui .btn.authorize {
  padding-right: 48px;
}

.swagger-ui .btn.authorize svg {
  fill: #FFF;
  position: absolute;
  top: 6px;
  right: 16px;
}

.swagger-ui .btn.authorize:hover svg,
.swagger-ui .btn.authorize:focus svg,
.swagger-ui .btn.authorize:active svg {
  fill: var(--accent-green);
}

.swagger-ui .opblock .opblock-summary-operation-id,
.swagger-ui .opblock .opblock-summary-path,
.swagger-ui .opblock .opblock-summary-path__deprecated {
  color: var(--primary-purple);
  display: flex;
  font-family: 'firacode-bold';
  font-size: 12px;
  font-weight: unset;
  padding: 0 8px;
  word-break: break-word;
}

.swagger-ui .parameter__name {
  color: var(--regular-dark-text);
  font-family: 'Proxima';
  font-weight: unset;
  line-height: 24px;
  margin-right: unset;
}

.swagger-ui .prop-format,
.swagger-ui .parameter__type {
  color: var(--regular-dark-text);
  font-family: 'firacode-bold';
  font-weight: unset;
  padding: unset;
}

.swagger-ui .parameter__extension,
.swagger-ui .parameter__in {
  color: var(--medium-gray);
  font-family: 'firacode-regular';
  line-height: 20px;
  font-style: italic;
  font-weight: unset;
}

.swagger-ui table tbody tr td {
  padding: 0 0 0 0;
}

.swagger-ui table tbody tr td:first-of-type {
  padding: 0 0 0 0;
  min-width: 140px;
}

.swagger-ui table tbody tr td.response-col_status:first-of-type {
  line-height: 20px;
}

.swagger-ui .parameters-col_description {
  margin-bottom: 16px;
}

.swagger-ui .response-col_description .renderedMarkdown p,
.swagger-ui .parameters-col_description .renderedMarkdown p {
  margin: 0 0 8px 0;
}

.swagger-ui .response-controls {
  padding-top: 8px;
}

.swagger-ui .response-control-examples__title,
.swagger-ui .response-control-media-type__title {
  font-size: var(--base-font-size);
  margin-bottom: 4px;
}

.swagger-ui .opblock-body select {
  margin-bottom: 8px;
  width: 340px;
  background: #FFF;
}
.swagger-ui .response-control-media-type--accept-controller select {
  border-color: transparent;
}

.swagger-ui .response-control-media-type__accept-message {
  color: unset;
  font-size: var(--base-font-size);
}

.swagger-ui .model-example {
  margin-top: 32px;
}

.swagger-ui .highlight-code {
  margin-bottom: 24px;
}

.swagger-ui .opblock-body pre.microlight {
  color: #fff;
  margin: 0;
  padding: 10px;
  background:  var(--light-cool-gray-40) !important;
  border-radius: 8px;
}

.swagger-ui .opblock-body .request-url pre.microlight,
.swagger-ui .opblock-body pre.microlight code {
  color: var(--primary-purple);
  font-family: 'firacode-light';
  font-size: 13px;
  font-weight: unset;
  margin: 0 4px;
  padding: 4px 8px;
  background: unset;
  border-radius: unset;
}

.swagger-ui .opblock-body .request-url pre.microlight {
  font-family: 'firacode-regular';
  padding: 8px 16px;
  border-radius: var(--border-radius-element);
}

.swagger-ui .opblock-body pre.microlight code span[style="color: rgb(211, 99, 99);"],
.swagger-ui .opblock-body pre.microlight code span[style="color: rgb(252, 194, 140);"],
.swagger-ui .opblock-body pre.microlight code span[style="color: rgb(162, 252, 162);"] {
  color: var(--regular-dark-text) !important;
}

.swagger-ui .auth-container:last-of-type {
  padding: 0 0 0 0;
}

.swagger-ui .auth-btn-wrapper {
  flex-direction: row-reverse;
  justify-content: flex-start;
  padding: 0 0 24px 0;
}

.swagger-ui .auth-wrapper .btn-modal.authorize {
  margin-right: 0;
}

.swagger-ui .auth-btn-wrapper .btn-done {
  color: var(--button-color);
  margin-right: 16px;
  background: #FFF;
  border: 2px solid transparent;
}

.swagger-ui .auth-btn-wrapper .btn-done:hover,
.swagger-ui .auth-btn-wrapper .btn-done:focus,
.swagger-ui .auth-btn-wrapper .btn-done:active {
  border: 2px solid var(--button-color);
}

/* schemas area */

.swagger-ui section.models {
  border: 0px solid transparent;
  border-radius: unset;
  margin: 0 0 0 0;
}

.swagger-ui section.models h4,
.swagger-ui section.models.is-open h4 {
  line-height: 50px;
}

.swagger-ui section.models h4:hover,
.swagger-ui section.models.is-open h4:hover {
  background: var(--button-color-20);
}

.swagger-ui button.models-control {
  font-family: 'Proxima-bold';
  line-height: unset;
  margin: 0 6px 0 0;
}

.swagger-ui section.models .model-container,
.swagger-ui section.models .model-container:first-of-type {
  margin: 0 24px 16px 24px;
}

.swagger-ui section.models .model-container:hover,
.swagger-ui section.models .model-container {
  border-radius: var(--border-radius-element);
  transition: none;
}

.swagger-ui .model-box {
  padding: 0 0 0 0;
  width: 100%;
  background: unset;
}

.swagger-ui .model-box .model-box {
  padding: 14px 16px;
}

.swagger-ui .model-title {
  color: var(--button-color);
  font-family: 'Proxima-bold';
  line-height: unset;
}

.swagger-ui .model-toggle,
.swagger-ui .model-toggle.collapsed,
.swagger-ui table.model button.model-box-control::after {
  display: none;
}

.swagger-ui button.model-box-control::after {
  position: absolute !important;
  top: 6px;
  right: 30px;
}

.swagger-ui table.model,
.swagger-ui .model-example .model,
.swagger-ui .model .brace-open,
.swagger-ui .model .brace-close,
.swagger-ui .model .inner-object {
  color: var(--primary-purple);
  font-family: 'firacode-light';
  font-size: 13px;
  font-weight: unset;
  margin-left: 24px;
}

.swagger-ui table.model {
  max-width: 90%;
}

.swagger-ui .model .brace-open {
  margin-top: 16px;
  display: block;
}

.swagger-ui .model-box {
  background: rgba(0,0,0,.1);
  border-radius: 4px;
  display: inline-block;
  padding: 10px;
}

.swagger-ui .model-example .model .brace-open,
.swagger-ui .model-example .model .brace-close,
.swagger-ui .model-example .model .inner-object,
.swagger-ui .model-example .model {
  margin-left: 0;
}

.swagger-ui .model-example .model-box {
  padding: 8px;
  display: inline-block;
  background: var(--light-gray-rgba-80);
  border-radius: var(--border-radius-element);
}

.swagger-ui .model-example .model-title {
  color: var(--regular-dark-text);
  font-family: 'Proxima-bold';
  font-size: var(--base-font-size);
  line-height: unset;
}

.swagger-ui .prop-type {
  color: unset;
}

.swagger-ui .model .prop-format {
  font-family: 'firacode-regular';
}

.swagger-ui .property-row .model {
  color: var(--regular-dark-text);
  font-family: 'firacode-regular';
  font-size: unset;
  font-weight: unset;
}

.swagger-ui table.model tr.property-row td:first-child {
  padding-right: 8px;
}

.swagger-ui .property-row .prop .renderedMarkdown p {
  font-size: 13px;
}

.swagger-ui table.model tbody tr td:first-of-type,
.swagger-ui .models.is-open table.model tbody tr td:first-of-type {
  padding: 0 0 0 24px;
  width: 208px;
  min-width: 208px;
  max-width: 208px;
}

.swagger-ui .models.is-open table.model tbody tr td {
  padding-bottom: 8px;
}

.swagger-ui table.model tr.description {
  color: unset;
  font-weight: unset;
}

.swagger-ui .model .property-row table.model,
.swagger-ui .model .property-row .model-example .model,
.swagger-ui .model .property-row .model .brace-open,
.swagger-ui .model .property-row .model .brace-close,
.swagger-ui .model .property-row .model .inner-object
.swagger-ui .model .property-row .model {
  margin-left: 0;
}

.swagger-ui .model .property-row .model .renderedMarkdown p {
  font-size: unset;
  margin: 0 0;
}

.swagger-ui .model-hint {
  color: var(--medium-gray);
  font-family: "Proxima", sans-serif;
  font-size: 12px;
  text-transform: none;
  line-height: 1.25em;
  padding: 4px 6px;
  background: #FFF;
  border-radius: 2px;
  background: #FFF;
  border: 1px solid rgba(100, 100, 100, 0.1);
  box-shadow: 0 0 16px 0 rgb(0 0 0 / 20%);
}

.swagger-ui tr.description .renderedMarkdown p {
  font-size: 16px;
}
.swagger-ui tr.description .renderedMarkdown p {
  color: var(--regular-dark-text);
  font-size: unset;
  font-family: 'firacode-regular';
  margin: unset;
}

.swagger-ui .response-col_status .response-undocumented {
  color: var(--regular-dark-text);
  font-family: 'Proxima';
  font-size: 13px;
  font-weight: unset;
}

.swagger-ui .response-col_status .response-undocumented i {
  font-style: unset;
}

.swagger-ui .renderedMarkdown ul li {
  font-family: 'Proxima';
  font-size: var(--base-font-size);
}

.swagger-ui table.model tr.property-row,
.swagger-ui table.model tr.description {
  color: var(--primary-purple);
  font-family: 'firacode-light';
}

.swagger-ui textarea.body-param__text {
  font-size: var(--base-font-size);
  font-weight: unset;
}

.swagger-ui .model .property.primitive,
.swagger-ui .model .property {
  color: var(--medium-gray);
}

.swagger-ui .model-box-control {
  color: var(--lv-link-color);
}
